diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md deleted file mode 100644 index d31045f..0000000 --- a/.github/CONTRIBUTING.md +++ /dev/null @@ -1,29 +0,0 @@ -# Contributing to ASSESS - -We conduct the ASSESS project by following an agile approach. -If you want to contribute to this project, we kindly ask to refer to the following guidelines. - -## Getting Started - -We constantly work to design and develop high-quality software for the ASSESS technology. - -[User Stories](https://martinfowler.com/bliki/UserStory.html) are chunks of desired behavior of a software system. They are widely used in agile software approaches to divide up a large amount of functionality into smaller pieces for planning purposes. - -Stories are the smallest unit of work to be done for a project. The [INVEST mnemonic](https://xp123.com/articles/invest-in-good-stories-and-smart-tasks/) describes the characteristics of good stories. The goal of a story is to deliver a unit of value to the customer. - -On [GitHub](https://zube.io/blog/agile-project-management-workflow-for-github-issues/), you can make an issue the same way as you would make a story: -1. Create a new GitHub issue (you will see the suggested template for writing an issue as a user story). -2. Define a user story title and use the same as issue title. -3. Assign the priority (values 1-4 where 1 is high priory and 4 is low) to the user story and select a label accordingly (P1, P2, P3, or P4). -4. Estimate the size of the story in terms of number of iterations (i.e., weeks) needed to be accomplished. -5. Formulate the user story in the description using the "As a ... I want ... So that ..." form. The "As a" clause refers to who wants the story, "I want" describes what the functionality is, "so that" describes why they want this functionality. The "so that" part provides important context to understand to help get from what the customer think they want to providing what they actually need. -6. Provide the acceptance criteria by using the [Given-When-Then](https://www.agilealliance.org/glossary/gwt/) formula. Acceptance tests confirm that the story was delivered correctly. -7. Write notes about the user story. - -Some issues can represent open questions (i.e., a matter not yet decided). In this case, you should not follow the aforementioned issue template, but you should just use the _question_ label to identify a GitHub issue as an open question. - -You can see [the open issues of the ASSESS project](https://github.com/nasa-jpl/ASSESS/issues). - -Any issue related to a specific feature can be marked with labels named as the components of the system as depicted in the following diagram. - -![Overview Diagram](https://github.com/nasa-jpl/ASSESS/blob/master/doc/assess_overview.png) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 2d91556..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,28 +0,0 @@ -# User Story - -\ - -**Priority**: \ -**Estimate**: \ - -## Description - -**_As a_** \ - -**_I want to_** \ - -**_so that_** \ - -## Acceptance Criteria - -### Acceptance Criterion 1 - -**_Given_** \ - -**_When_** \ - -**_Then_** \ - -## Notes - -\ diff --git a/CHANGELOG.md b/CHANGELOG.md index 6404ddd..1251186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [v1.2.0](https://github.com/nasa-jpl/ASSESS/tree/v1.2.0) (2022-01-31) +- Refactor codebase entirely, removing old code from dashboard, outdated ML, outdated extractors, and consolidate the code that's being used. +- Add increased API capabilities, allow for ML training, and new FAIS vector library. +- Increase search capabilites. +- Dockerize everything. +- Allow app to use only Elasticsearch. +- Use different data sources and allow for bulk ingestion. + ## [v1.1.0](https://github.com/nasa-jpl/ASSESS/tree/v1.1.0) (2019-09-26) - Improve underlying ASSESS algorithm (run-time, complexity, extraction, interoperability). See issues [56](https://github.com/nasa-jpl/ASSESS/issues/56) and [48](https://github.com/nasa-jpl/ASSESS/issues/48). - Upgrade to Python 3. See issue [44](https://github.com/nasa-jpl/ASSESS/issues/44). diff --git a/README.md b/README.md index 43ed918..093dd64 100755 --- a/README.md +++ b/README.md @@ -1,20 +1,22 @@ # Automatic Semantic Search Engine for Suitable Standards +ASSESS allows you to run an API server that performs document similarity for large troves of text documents as well as manage an application pipeline that allows for ingestion, search, inspection, deletion, training, logging, and editing documents. + +**The problem**: Given an SoW, the goal is to produce standards that may be related to that SoW. + +To understand the backend code, view the API in [main.py](https://github.com/nasa-jpl/ASSESS/blob/master/api/main.py) + +To understand the ML code, view [ml-core.py](https://github.com/nasa-jpl/ASSESS/blob/master/api/ml-core.py) + ## Getting Started There are a few main components to ASSESS: - -- A React front-end - A FastAPI server - An Elastcisearch server with 3 data indices (main index, system logs, and user statistics) - Kibana for viewing data +- A redis service for in-memory data storage and rate limiting -`docker-compose.yml` shows the software stack. You can run the stack using `docker-compose up -d`. Please note, you need the Elasticsearch index data in order to actually have these components working. - -Make sure you edit `api/conf.yaml` with the correct server/port locations for elasticsearch. - -To understand the backend code, look at the API in [main.py](https://github.com/nasa-jpl/ASSESS/blob/master/api/main.py) +Make sure you edit `api/conf.yaml` with the correct server/port locations for elasticsearch. `docker-compose.yml` shows the software stack. You can run the stack using `docker-compose up -d`. Please note, you need the corresponding feather data in order to actually have everything working and ingested into Elasticsearch ## Testing the stack - -You can test the Rest API with [assess_api_calls.py](https://github.com/nasa-jpl/ASSESS/blob/master/api/assess_api_calls.py) +You can test the Rest API with [assess_api_calls.py](https://github.com/nasa-jpl/ASSESS/blob/master/api/scripts/assess_api_calls.py) diff --git a/api/Dockerfile b/api/Dockerfile index 40316dd..6a88722 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -40,8 +40,8 @@ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py RUN apt install -y python3.8 RUN mv /usr/bin/python3.8 /usr/local/bin/python RUN python get-pip.py -RUN python -m pip install --no-cache-dir -r requirements.txt -RUN python -m pip install --no-cache-dir -r ml_requirements.txt +RUN python -m pip install --no-cache-dir -r requirements/requirements.txt +RUN python -m pip install --no-cache-dir -r requirements/ml_requirements.txt RUN pip3 install jpl.pipedreams==1.0.3 RUN python -m spacy download en_core_web_sm RUN python -m pip install --no-cache-dir "uvicorn[standard]" gunicorn fastapi diff --git a/api/conf.yaml b/api/conf.yaml index b551fec..d8dc71b 100644 --- a/api/conf.yaml +++ b/api/conf.yaml @@ -4,7 +4,7 @@ password: url: http://localhost:8080 df_paths: - "data/source_1" - # - "data/source_2" + - "data/source_2" es_server: #- localhost - elasticsearch diff --git a/api/data/README.md b/api/data/README.md index 134f322..d698eb6 100644 --- a/api/data/README.md +++ b/api/data/README.md @@ -1,4 +1,4 @@ # Instructions -Place the dataframe of the feather file here. This gets bound to the Docker container and used by the machine learning algorithm. +Place the dataframe of the feather file here. Make sure your api/config.yaml is pointing to these files. This gets ingested into the elasticsearch Docker container and used by the machine learning algorithm. diff --git a/api/gunicorn_conf.py b/api/gunicorn_conf.py index a437060..8f9f1e4 100644 --- a/api/gunicorn_conf.py +++ b/api/gunicorn_conf.py @@ -32,9 +32,9 @@ use_accesslog = accesslog_var or None errorlog_var = os.getenv("ERROR_LOG", "-") use_errorlog = errorlog_var or None -graceful_timeout_str = os.getenv("GRACEFUL_TIMEOUT", "1400") -timeout_str = os.getenv("TIMEOUT", "1400") -keepalive_str = os.getenv("KEEP_ALIVE", "10") +graceful_timeout_str = os.getenv("GRACEFUL_TIMEOUT", "3600") +timeout_str = os.getenv("TIMEOUT", "3600") +keepalive_str = os.getenv("KEEP_ALIVE", "3600") # Gunicorn config variables loglevel = use_loglevel diff --git a/api/main.py b/api/main.py index 832b274..91194ba 100644 --- a/api/main.py +++ b/api/main.py @@ -3,23 +3,16 @@ import os import os.path import shutil -import subprocess import time from logging.handlers import RotatingFileHandler from typing import Optional import yaml -import dill -import pandas as pd -import requests import uvicorn -from elasticsearch import Elasticsearch from fastapi import ( - Body, + BackgroundTasks, Depends, FastAPI, File, - Form, - HTTPException, Request, UploadFile, ) @@ -36,10 +29,10 @@ from starlette.requests import Request from starlette.responses import Response -from standard_extractor import find_standard_ref -from text_analysis import extract_prep -import extraction -from web_utils import connect_to_es, read_logs +from standards_extraction import parse +import ml_core +from utils import connect_to_es +import ast # Define api settings. app = FastAPI() @@ -77,6 +70,26 @@ startMsg = {} startMsg["message"] = "*** Starting Server ***" fastapi_logger.info(json.dumps(startMsg)) +data_schema = { + "type": "object", + "properties": { + "doc_number": {"type": ["string", "null"]}, + "id": {"type": ["string", "null"]}, + "raw_id": {"type": ["string", "null"]}, + "description": {"type": ["string", "null"]}, + "ingestion_date": {"type": ["string", "null"]}, + "hash": {"type": ["string", "null"]}, + "published_date": {"type": ["string", "null"]}, + "isbn": {"type": ["string", "null"]}, + "text": {"type": ["array", "null"]}, + "status": {"type": ["string", "null"]}, + "technical_committee": {"type": ["string", "null"]}, + "title": {"type": ["string", "null"]}, + "url": {"type": ["string", "null"]}, + "category": {"type": ["object", "null"]}, + "sdo": {"type": ["object", "null"]}, + }, +} @app.on_event("startup") @@ -111,128 +124,133 @@ def log_stats(request, data=None, user=None): return -def run_predict(request, start, in_text, size, vectorizer_types, index_types): +def str_to_ls(s): + if type(s) is str: + s = ast.literal_eval(s) + return s + +def run_predict(request, start, in_text, size, start_from, vectorizer_types, index_types): # Globally used # vectorizer_types = ["tf_idf"] # index_types = ["flat"] - list_of_texts = extraction.get_list_of_text(es) - vectorizers, vector_storage, vector_indexes = extraction.load_into_memory( + vectorizers, vector_storage, vector_indexes = ml_core.load_into_memory( index_types, vectorizer_types ) - list_of_predictions, scores = extraction.predict( + list_of_predictions, scores = ml_core.predict( in_text, size, + start_from, vectorizers, vector_storage, vector_indexes, - list_of_texts, vectorizer_types, index_types, ) output = {} + # Add mget request here + """ + res = es.mget(index = idx_main, body = {'ids': list_of_predictions}) + results = [hit["_source"] for hit in res["hits"]["hits"]] + """ + # TODO: Refactor for i, prediction_id in enumerate(list_of_predictions): res = es.search( index=idx_main, - body={"size": 1, "query": {"match": {"doc_number": prediction_id}}}, + body={"size": 1, "query": {"match": {"_id": prediction_id}}}, ) for hit in res["hits"]["hits"]: results = hit["_source"] - output[i] = results - output[i]["similarity"] = scores[i] + j = start_from + i + output[j] = results + output[j]["similarity"] = scores[j] + # End Refactor json_compatible_item_data = jsonable_encoder(output) log_stats(request, data=in_text) print(f"{time.time() - start}") return JSONResponse(content=json_compatible_item_data) -# @app.post( -# "/recommend_text", -# dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], -# ) -# async def recommend_text(request: Request, sow: Sow, size: int = 10): -# """Given an input of Statement of Work as text, -# return a JSON of recommended standards. -# """ -# start = time.time() -# in_text = sow.text_field -# predictions = old_extract_prep.predict(in_text=in_text, size=size) -# output = {} -# results = {} -# i = 0 -# for prediction in predictions["recommendations"]: -# i += 1 -# raw_id = prediction["raw_id"] -# res = es.search( -# index=idx_main, body={"size": 1, "query": {"match": {"raw_id": raw_id}}} -# ) -# for hit in res["hits"]["hits"]: -# results = hit["_source"] -# output[i] = results -# output[i]["similarity"] = prediction["sim"] -# # output["embedded_references"] = predictions["embedded_references"] -# json_compatible_item_data = jsonable_encoder(output) -# log_stats(request, data=in_text) -# print(f"{time.time() - start}") -# return JSONResponse(content=json_compatible_item_data) - +# def background_train(es, index_types, vectorizer_types): +# ml_core.train(es, index_types, vectorizer_types) @app.post( "/train", - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) -async def train(index_types=["flat", "flat_sklearn"], vectorizer_types=["tf_idf"]): - print("Starting training...") - extraction.train(es, index_types, vectorizer_types) - return True +async def train(request: Request, background_tasks: BackgroundTasks, index_types=["flat", "flat_sklearn"], vectorizer_types=["tf_idf"]): + vectorizer_types = str_to_ls(vectorizer_types) + index_types = str_to_ls(index_types) + background_tasks.add_task(ml_core.train, es, + index_types, vectorizer_types) + log_stats(request, data=None) + #message = {} + # if in_progress: + print("Training task created and sent to the background...") + # message = {'status': 'training'} + # else: + message = {'status': 'in_progress'} + return JSONResponse(message) @app.post( "/recommend_text", - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def recommend_text( request: Request, sow: Sow, size: int = 10, + start_from: int = 0, vectorizer_types=["tf_idf"], index_types=["flat"], ): + vectorizer_types = str_to_ls(vectorizer_types) + index_types = str_to_ls(index_types) """Given an input of Statement of Work as text, return a JSON of recommended standards. """ in_text = sow.text_field # df_file = "data/feather_text" return run_predict( - request, time.time(), in_text, size, vectorizer_types, index_types + request, time.time(), in_text, size, start_from, vectorizer_types, index_types, ) @app.post( "/recommend_file", - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def recommend_file( request: Request, pdf: UploadFile = File(...), size: int = 10, + start_from: int = 0, vectorizer_types=["tf_idf"], index_types=["flat"], ): + vectorizer_types = str_to_ls(vectorizer_types) + index_types = str_to_ls(index_types) """Given an input of a Statement of Work as a PDF, return a JSON of recommended standards. """ print("File received.") - in_text = extract_prep.parse_text(pdf) - # df_file = "data/feather_text" + print(pdf.content_type) + print(pdf.filename) + in_text = parse.tika_parse(pdf) + print(in_text) return run_predict( - request, time.time(), in_text, size, vectorizer_types, index_types + request, time.time(), in_text, size, start_from, vectorizer_types, index_types ) @app.post( "/extract", - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def extract(request: Request, pdf: UploadFile = File(...)): """Given an input of a Statement of Work (SoW) as a PDF, @@ -242,8 +260,8 @@ async def extract(request: Request, pdf: UploadFile = File(...)): # with open(file_location, "wb+") as file_object: # shutil.copyfileobj(pdf.file, file_object) print({"info": f"file '{pdf.filename}' saved at '{file_location}'"}) - text = extract_prep.parse_text(file_location) - refs = find_standard_ref(text) + text = parse.tika_parse(file_location) + refs = parse.find_standard_ref(text) out = {} out["embedded_references"] = refs out["filename"] = pdf.filename @@ -255,7 +273,8 @@ async def extract(request: Request, pdf: UploadFile = File(...)): @app.get( "/standard_info/", response_class=ORJSONResponse, - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def standard_info( request: Request, @@ -274,34 +293,41 @@ async def standard_info( url: Optional[str] = None, hash: Optional[str] = None, size: int = 1, + start_from: int = 0, ): """Given a standard ID, get standard information from Elasticsearch.""" if id: res = es.search( - index=idx_main, body={"size": size, "query": {"match": {"id": id}}} + index=idx_main, body={"from": start_from, + "size": size, "query": {"match": {"id": id}}} ) elif raw_id: res = es.search( - index=idx_main, body={"size": size, "query": {"match": {"raw_id": raw_id}}} + index=idx_main, body={"from": start_from, "size": size, "query": { + "match": {"raw_id": raw_id}}} ) elif isbn: res = es.search( - index=idx_main, body={"size": size, "query": {"match": {"isbn": isbn}}} + index=idx_main, body={"from": start_from, + "size": size, "query": {"match": {"isbn": isbn}}} ) elif doc_number: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"doc_number": doc_number}}}, + body={"from": start_from, "size": size, "query": { + "match": {"doc_number": doc_number}}}, ) elif status: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"status": status}}}, + body={"from": start_from, "size": size, + "query": {"match": {"status": status}}}, ) elif technical_committee: res = es.search( index=idx_main, body={ + "from": start_from, "size": size, "query": {"match": {"technical_committee": technical_committee}}, }, @@ -309,43 +335,51 @@ async def standard_info( elif published_date: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"published_date": published_date}}}, + body={"from": start_from, "size": size, "query": { + "match": {"published_date": published_date}}}, ) elif ingestion_date: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"ingestion_date": ingestion_date}}}, + body={"from": start_from, "size": size, "query": { + "match": {"ingestion_date": ingestion_date}}}, ) elif title: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"title": title}}}, + body={"from": start_from, "size": size, + "query": {"match": {"title": title}}}, ) elif sdo: # res = es.search(index=idx_main, body={"query": {"exists": {"field": sdo_key}}}) res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"sdo.abbreviation": sdo}}}, + body={"from": start_from, "size": size, "query": { + "match": {"sdo.abbreviation": sdo}}}, ) elif category: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"category": category}}}, + body={"from": start_from, "size": size, + "query": {"match": {"category": category}}}, ) elif text: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"text": text}}}, + body={"from": start_from, "size": size, + "query": {"match": {"text": text}}}, ) elif url: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"url": url}}}, + body={"from": start_from, "size": size, + "query": {"match": {"url": url}}}, ) elif hash: res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"hash": hash}}}, + body={"from": start_from, "size": size, + "query": {"match": {"hash": hash}}}, ) # print("Got %d Hits:" % res['hits']['total']['value']) results = {} @@ -359,15 +393,17 @@ async def standard_info( @app.get( "/search/{searchq}", - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def search( - request: Request, searchq: str = Field(example="Airplanes"), size: int = 10 + request: Request, searchq: str = Field(example="Airplanes"), size: int = 10, start_from: int = 0, ): """Search elasticsearch using text.""" res = es.search( index=idx_main, - body={"size": size, "query": {"match": {"description": searchq}}}, + body={"from": start_from, "size": size, "query": { + "match": {"description": searchq}}}, ) # print("Got %d Hits:" % res['hits']['total']['value']) results = {} @@ -380,10 +416,12 @@ async def search( @app.post( "/add_standards", response_class=HTMLResponse, - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def add_standards(request: Request, doc: dict): """Add standards to the main Elasticsearch index by PUTTING a JSON request here.""" + validate(instance=doc, schema=data_schema) res = es.index(index=idx_main, body=json.dumps(doc)) print(res) json_compatible_item_data = jsonable_encoder(doc) @@ -394,10 +432,12 @@ async def add_standards(request: Request, doc: dict): @app.put( "/edit_standards", response_class=HTMLResponse, - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def edit_standards(request: Request, doc: dict): """Add standards to the main Elasticsearch index by PUTTING a JSON request here.""" + validate(instance=doc, schema=data_schema) res = es.search( index="assess_remap", query={"match": {"id": doc["id"]}}, @@ -413,7 +453,8 @@ async def edit_standards(request: Request, doc: dict): @app.delete( "/delete_standards", response_class=HTMLResponse, - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def delete_standards(request: Request, id: str): """Delete standards to the main Elasticsearch index by PUTTING a JSON request here.""" @@ -430,7 +471,8 @@ async def delete_standards(request: Request, id: str): @app.post( "/select_standards", - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def select_standards(request: Request, selected: dict): """After a use likes a standard, this endpoint captures the selected standards into the database.""" @@ -452,7 +494,8 @@ async def select_standards(request: Request, selected: dict): @app.put( "/set_standards", - dependencies=[Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], + dependencies=[ + Depends(RateLimiter(times=rate_times, seconds=rate_seconds))], ) async def set_standards(request: Request, set_standards: dict): """Validate and set preference of standards (done by Admin).""" diff --git a/api/extraction.py b/api/ml_core.py similarity index 90% rename from api/extraction.py rename to api/ml_core.py index 71f01e3..070340b 100644 --- a/api/extraction.py +++ b/api/ml_core.py @@ -91,7 +91,7 @@ def load_into_memory(index_types, vectorizer_types): def train(es, index_types, vectorizer_types): # ==== train vectorizers (needs to train on all standards in the corpus) - list_of_texts = get_list_of_text(es) + ES_ids, list_of_texts = get_list_of_text(es) vectorizers = PluginCollection() print("\nTraining Vectorizers...") for vectorizer_type in vectorizer_types: @@ -107,7 +107,7 @@ def train(es, index_types, vectorizer_types): list_of_texts, type=vectorizer_type, vectorizers=vectorizers ) # TODO: remove line - ES_ids = list(range(len(vectors))) # using dummy values + # ES_ids = list(range(len(vectors))) # using dummy values vector_storage.apply( "plugins.Vector_Storage", "basic", @@ -142,10 +142,10 @@ def train(es, index_types, vectorizer_types): def predict( sow, n, + start_from, vectorizers, vector_storage, vector_indexes, - list_of_texts, vectorizer_types, index_types, ): @@ -176,7 +176,7 @@ def predict( # iso_data = pd.read_feather("data/feather_text") # for ES_id in top_n_ES_ids[:n]: # print(ES_id, list_of_texts[ES_id]) - return top_n_ES_ids[:n], scores.tolist() + return top_n_ES_ids[start_from:n], scores.tolist() def get_list_of_text(es=None): @@ -186,27 +186,32 @@ def get_list_of_text(es=None): # print(df.columns) # TODO: get this information from the text column. # return the text and the elasticsearch ids - return list(df["title"] + ". " + df["description"]) + return list(df["_id"]), list(df["title"] + ". " + df["description"]) def es_to_df(es=None, index="assess_remap", path="data/feather_text"): if not es: - df = pd.read_feather("data/feather_text") + # ADD FILES YOU WANT TO READ HERE: + df1 = pd.read_feather("data/source_1") + df2 = pd.read_feather("data/source_1") + df = pd.concat([df1, df2]) else: res = list(scan(es, query={}, index=index)) output_all = deque() - output_all.extend([x["_source"] for x in res]) + output_all.extend([((x["_source"]['description']), (x["_source"]['title']), (x["_id"])) for x in res]) + output_all = [{'description': t[0], 'title': t[1], '_id': t[2]} for t in output_all] df = json_normalize(output_all) + df = df[["_id", "title", "description"]] return df if __name__ == "__main__": - # es = Elasticsearch(http_compress=True) - es = None + es = Elasticsearch(http_compress=True) + #es = None do_training = True index_types = ["flat", "flat_sklearn"] vectorizer_types = ["tf_idf"] - list_of_texts = get_list_of_text(es) + ES_ids, list_of_texts = get_list_of_text(es) # list_of_texts=['computer science', 'space science', 'global summit for dummies', 'deep neural nets', 'technology consultants', # 'space science', 'global summit for dummies', 'deep neural nets', 'technology consultants', # '', '', '', ''] @@ -222,10 +227,10 @@ def es_to_df(es=None, index="assess_remap", path="data/feather_text"): r = predict( "Computer software and stuff!!!", 10, + 0, vectorizers, vector_storage, vector_indexes, - list_of_texts, vectorizer_types, index_types, ) diff --git a/api/models/graph.zip b/api/models/graph.zip deleted file mode 100644 index b966da2..0000000 Binary files a/api/models/graph.zip and /dev/null differ diff --git a/api/models/ics_dict_general b/api/models/ics_dict_general deleted file mode 100644 index e1de43f..0000000 Binary files a/api/models/ics_dict_general and /dev/null differ diff --git a/api/models/pos_ b/api/models/pos_ deleted file mode 100644 index 7e2231b..0000000 Binary files a/api/models/pos_ and /dev/null differ diff --git a/api/plugins/Index/flat_sklearn.py b/api/plugins/Index/flat_sklearn.py index 5261703..0561cbc 100644 --- a/api/plugins/Index/flat_sklearn.py +++ b/api/plugins/Index/flat_sklearn.py @@ -17,7 +17,7 @@ def create_index(self, vectors): # assuming numpy array vectors_ = vectors self.index = NearestNeighbors( - n_neighbors=vectors_.shape[1], algorithm="brute", metric="cosine" + n_neighbors=vectors_.shape[0], algorithm="brute", metric="cosine" ) self.index.fit(vectors_) diff --git a/api/plugins/Vector_Storage/basic.py b/api/plugins/Vector_Storage/basic.py index 6d29567..402bf22 100644 --- a/api/plugins/Vector_Storage/basic.py +++ b/api/plugins/Vector_Storage/basic.py @@ -2,7 +2,8 @@ import pickle import os import numpy as np - +from tqdm import tqdm +import gc class Basic(Template): def __init__(self): @@ -30,6 +31,7 @@ def _remove_vector(self, id, vec_type): def _save_to_disk(self): with open("data/basic_vector_storage.pk", "wb") as storage: pickle.dump(self.vector_storage, storage) + gc.collect() with open("data/basic_sorted_ids.pk", "wb") as ids: pickle.dump(self.sorted_ids, ids) @@ -51,9 +53,12 @@ def clean_storage(self): os.remove("data/basic_sorted_ids.pk") def add_update_vectors(self, ids, vectors, vec_type): - for id, vector in zip(ids, vectors.tolist()): - self._add_update_vector(id, np.array(vector), vec_type) + vectors = np.asarray(vectors) + for id, vector in tqdm(zip(ids, vectors), total=len(ids)): + self._add_update_vector(id, vector, vec_type) + print('writing to disk..') self._save_to_disk() + print('writing complete!') def remove_vectors(self, ids, vec_type): for id, vector in zip(ids): diff --git a/api/plugins/Vectorizer/tf_idf.py b/api/plugins/Vectorizer/tf_idf.py index 9cb66b5..ca02694 100644 --- a/api/plugins/Vectorizer/tf_idf.py +++ b/api/plugins/Vectorizer/tf_idf.py @@ -13,17 +13,18 @@ class TF_IDF(Template): def __init__(self): super().__init__() self.description = 'Implements the TF-IDF vectorizer' - self.vectorizer=TfidfVectorizer(tokenizer=identity_func, lowercase=False) + self.vectorizer=TfidfVectorizer(tokenizer=identity_func, lowercase=False, max_features=5000) self.nlp = en_core_web_sm.load() def train(self, list_of_texts): - print('Preprocessing text (tokenize, lemmatize and punctuation removal)..') + print('Preprocessing text for training (tokenize, lemmatize and punctuation removal)..') # we add a dummy token 'lemma_lemma' Faiss flat index is giving a higher matching values to vectors for empty strings than some more relevant ones! list_of_texts= [spacy_tokenize_lemmatize_punc_remove(item, self.nlp)+['lemma_lemma'] for item in tqdm(list_of_texts)] self.vectorizer.fit(list_of_texts) def vectorize(self, list_of_texts): # we add a dummy token 'lemma_lemma' Faiss flat index is giving a higher matching values to vectors for empty strings than some more relevant ones! + print('Preprocessing for vectorization (tokenize, lemmatize and punctuation removal)..') list_of_texts= [spacy_tokenize_lemmatize_punc_remove(item, self.nlp)+['lemma_lemma'] for item in tqdm(list_of_texts)] return self.vectorizer.transform(list_of_texts).todense() diff --git a/api/plugins/Vectorizer/utilities.py b/api/plugins/Vectorizer/utilities.py index 422c739..bf375bc 100644 --- a/api/plugins/Vectorizer/utilities.py +++ b/api/plugins/Vectorizer/utilities.py @@ -24,7 +24,8 @@ def get_BERT_vectors(list_of_texts, model, tokenizer, layers=None, batch_size=10 # when we say paragraph we mean any length of text. paragraph_idx_to_sentence_idxs = [] all_sentences = [] - for text in list_of_texts: + print('creating sentences...') + for text in tqdm(list_of_texts): sentences = list(get_sentences(text, 20)) all_sentences_next_id = len(all_sentences) paragraph_idx_to_sentence_idxs.append( @@ -55,6 +56,7 @@ def get_activations(list_of_sentences): # chunk list of sentences into smaller batches to improve memory and can be parallelized in future. # WARNING: currently, the Hugginface Model class does not lend itself to parallelization, due to some picklization error! all_sent_vectors = [] + print('creating vectors for num sentences (will process in a batch size of ' + str(batch_size) + '):', len(all_sentences)) for chunked_sentences in tqdm(list(divide_chunks(all_sentences, batch_size))): chunk_of_vector = get_activations(chunked_sentences) all_sent_vectors.extend(chunk_of_vector) @@ -76,13 +78,15 @@ def preprocessor(text): return text def spacy_tokenize_lemmatize_punc_remove(text, nlp): - + is_there_digit = re.compile("\d") + #print("******* THIS IS TEXT DEBUG *******") + #print(text, type(text)) processed = nlp(text) lemma_list = [] for token in processed: if token.is_stop is False: token_preprocessed = preprocessor(token.lemma_.lower()) - if token_preprocessed != '': + if token_preprocessed != '' and is_there_digit.search(token_preprocessed) is None: lemma_list.append(token_preprocessed) return lemma_list diff --git a/api/ml_requirements.txt b/api/requirements/ml_requirements.txt similarity index 85% rename from api/ml_requirements.txt rename to api/requirements/ml_requirements.txt index b78a6df..236c04b 100644 --- a/api/ml_requirements.txt +++ b/api/requirements/ml_requirements.txt @@ -1,12 +1,12 @@ # python 3.9.5 -tensorflow==2.6.0 +tensorflow==2.7.0 faiss-cpu==1.7.1post2 scikit-learn==0.24.2 # gives memory segmentation with faiss error when version 1.0 -transformers==4.10.0 +transformers==4.15.0 elasticsearch==7.15.1 pandas==1.3.4 pyarrow==5.0.0 -datasets==1.14.0 +datasets==1.17.0 spacy==3.2.0 # install the below manually (jpl.pipedreams has some dependency conflicts with others.) diff --git a/api/requirements.txt b/api/requirements/requirements.txt similarity index 100% rename from api/requirements.txt rename to api/requirements/requirements.txt diff --git a/api/assess_api_calls.py b/api/scripts/assess_api_calls.py similarity index 94% rename from api/assess_api_calls.py rename to api/scripts/assess_api_calls.py index 9d158a0..3cf0505 100644 --- a/api/assess_api_calls.py +++ b/api/scripts/assess_api_calls.py @@ -15,7 +15,7 @@ def format_json(jsonText): def train(): - print("Sending GET request to `/train`.") + print("Sending POST request to `/train`.") r = requests.post( f"{root}/train", ) @@ -27,7 +27,7 @@ def recommend_text(): print("Sending GET request to `/recommend_text`.") jsonLoad = {"text_field": "Example text about airplanes"} r = requests.post( - f"{root}/recommend_text?size=10", + f"{root}/recommend_text?size=10&start_from=5", json=jsonLoad, # auth=HTTPBasicAuth(username, password), ) @@ -37,9 +37,9 @@ def recommend_text(): def recommend_file(): # Recommend an SoW given a PDF. # Specify file location of an SOW. - location = "data/example.pdf" + location = "../data/sow.pdf" file = {"pdf": open(location, "rb")} - print("Sending GET request to `/recommend_file` with a PDF.") + print("Sending POST request to `/recommend_file` with a PDF.") r = requests.post( f"{root}/recommend_file", files=file, auth=HTTPBasicAuth(username, password) ) @@ -135,7 +135,7 @@ def select(): print(format_json(r.text)) -def set(): +def set_standard(): set_standards = { "username": "test_user", "standard_id": "x0288b9ed144439f8ad8fa017d604eac", @@ -191,7 +191,7 @@ def set(): }, } # Insert username, password, and ASSESS root url into `conf.yaml` - with open("conf.yaml", "r") as stream: + with open("../conf.yaml", "r") as stream: conf = yaml.safe_load(stream) username = conf.get("username") password = conf.get("password") @@ -202,7 +202,10 @@ def set(): % (username, password, root) ) recommend_text() + # recommend_file() add() standard_info() edit() - delete() \ No newline at end of file + delete() + set_standard() + # train() diff --git a/api/bulk_export.py b/api/scripts/bulk_export.py similarity index 99% rename from api/bulk_export.py rename to api/scripts/bulk_export.py index 62cdf7b..b9616ec 100644 --- a/api/bulk_export.py +++ b/api/scripts/bulk_export.py @@ -169,6 +169,7 @@ def df_to_es(df_path, index, client, overwrite=False, normalize=False): client.indices.delete(index, ignore=[400, 404]) client.indices.create(index, ignore=400) df = feather.read_feather(df_path) + df.fillna("", inplace=True) bulk(client, doc_generator(df, index, normalize)) return diff --git a/api/standard_extractor.py b/api/standard_extractor.py deleted file mode 100755 index 81a603a..0000000 --- a/api/standard_extractor.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- coding: utf-8 -*- - -import re -import io - -standard_orgs={} -for line in io.open("standards/data/standard_orgs.txt",mode="r", encoding="utf-8").readlines(): - line=line.strip() - abbr=line.split(' — ')[0] - name=line.split(' — ')[1] - standard_orgs[abbr]=name - - -def find_standard_ref(text): - refs=[] - # match abbreviations in upper case - words=text.split() - for i, word in enumerate(words): - for k in standard_orgs.keys(): - if k in word: - # check one word before and after for alphanumeric - if i=0: - word_before=words[i+1] - if bool(re.search(r'\d', word_before)): - refs.append(word_before+' '+word) - - return list(set(refs)) - -# print(find_standard_ref('(IEC) sdd67')) \ No newline at end of file diff --git a/api/standards/es_search.py b/api/standards/es_search.py deleted file mode 100644 index 73f638a..0000000 --- a/api/standards/es_search.py +++ /dev/null @@ -1,54 +0,0 @@ -from elasticsearch import Elasticsearch -import json -from elasticsearch_dsl import Search -import requests - - -# es = Elasticsearch(["172.19.0.2"]) -# es_index = "iso_final_clean" -es = Elasticsearch() -es_index = "test-csv" - -search = Search(using=es) - -def search_test(uri, term): - """Simple Elasticsearch Query""" - query = json.dumps({ - "query": { - "match": { - "content": term - } - } - }) - response = requests.get(uri, data=query) - results = json.loads(response.text) - return results - - -def client_search(searchq, n): - return es.search(index=es_index, body={"query": {"match": {"description":searchq}}}, size=n) - - -def search_by_text(searchq, n=10): - res = es.search(index=es_index, body={"size": n, "query": {"match": {"description":searchq}}}) - print("Got %d Hits:" % res['hits']['total']['value']) - results = {} - for num, hit in enumerate(res['hits']['hits']): - results[num+1] = hit["_source"] - json_object = json.dumps(results, indent=4) - return json_object - -def search_by_id(searchq, n=10): - res = es.search(index=es_index, body={"size": n, "query": {"match": {"num_id":searchq}}}) - print("Got %d Hits:" % res['hits']['total']['value']) - results = {} - for num, hit in enumerate(res['hits']['hits']): - results[num+1] = hit["_source"] - json_object = json.dumps(results, indent=4) - return json_object - - -#client_search('localhost:9200/test-csv', 'airplanes') -print(search_by_text("machine", 2)) -print(search_by_id("22", 1)) -print(client_search("test", 3)) diff --git a/api/standards/scripts/iso_data_prep.py b/api/standards/scripts/iso_data_prep.py deleted file mode 100644 index 336de05..0000000 --- a/api/standards/scripts/iso_data_prep.py +++ /dev/null @@ -1,185 +0,0 @@ -import pandas as pd -import dill - -def savemodel(model,outfile): - with open(outfile, 'wb') as output: - dill.dump(model, output) - return '' - -def loadmodel(infile): - model='' - with open(infile, 'rb') as inp: - model = dill.load(inp) - return model - - -def getID(key): - global counter - global ics_map_old_new - if key not in ics_map_old_new.keys(): - counter += 1 - ics_map_old_new[key] = counter - - return ics_map_old_new[key] - -def process(a, col, lst=[]): - a=str(a) - if (len(lst)==0 or col in lst) and a!='': - # because when saving to csv 43.060 becomes 43.06!! - return '~'+str(a) - return a - -""" -# =================== -ics categories have an ID, which can be separated into field, group, sub_group and standard. -""" - - -ics_path='ics.csv' # contains data about how the - -df_ics=pd.read_csv(ics_path) - -# create the class tree. Have a mapping to actual names of the categories (can get from querying the ics.csv directly). -df_ics_seperated=pd.DataFrame() - -ics_dict={-1:[]} # create a taxonomy to input into the Hclassif algo only top two levels -ics_dict_general={-1:[]} # create a general tree (to clearly show the heirachial structure of ics) -for i, row in df_ics.iterrows(): - - new_row={} - type='' - code=row['code'] - field,group,sub_group,standard,new_field, new_group, new_sub_group, new_standard='','','','','','','','' - - code = code.split('.ISO') - code_ = code[0].split('.') - - if len(code_) >= 2: - field = code_[1] - type = 'field' - new_field = getID(field) - ics_dict[-1].append(new_field) - new_row['id'] = field - new_row['id_'] = new_field - ics_dict_general[-1].append(new_field) - - - if len(code_) >= 3: - group = code_[1] + '.' + code_[2] - type = 'group' - new_group = getID(group) - - if new_field not in ics_dict.keys(): - ics_dict[new_field] = [] - ics_dict[new_field].append(new_group) - - if new_field not in ics_dict_general.keys(): - ics_dict_general[new_field] = [] - ics_dict_general[new_field].append(new_group) - - new_row['id'] = group - new_row['id_'] = new_group - - - if len(code_) >= 4: - sub_group = code_[1] + '.' + code_[2] + '.' + code_[3] - type = 'subgroup' - new_sub_group = getID(sub_group) - - if new_group not in ics_dict_general.keys(): - ics_dict_general[new_group] = [] - ics_dict_general[new_group].append(new_sub_group) - - new_row['id'] = sub_group - new_row['id_'] = new_sub_group - - if len(code) > 1: - standard = 'ISO' + code[1] - new_standard = getID(standard) - if type=='field': - if new_field not in ics_dict_general.keys(): - ics_dict_general[new_field] = [] - ics_dict_general[new_field].append(new_standard) - if type=='group': - if new_group not in ics_dict_general.keys(): - ics_dict_general[new_group] = [] - ics_dict_general[new_group].append(new_standard) - if type=='subgroup': - if new_sub_group not in ics_dict_general.keys(): - ics_dict_general[new_sub_group] = [] - ics_dict_general[new_sub_group].append(new_standard) - type = 'standard' - - - new_row['id'] = standard - new_row['id_'] = new_standard - - - - new_row['field'] = field - new_row['new_field'] = new_field - new_row['group'] = group - new_row['new_group'] = new_group - new_row['subgroup'] = sub_group - new_row['new_subgroup'] = new_sub_group - new_row['standard'] = standard - new_row['new_standard'] = new_standard - new_row['code'] = row['code'] - new_row['link'] = row['link'] - new_row['title'] = row['title'] - new_row['type']=type - - to_process_list=['field','new_field','group','new_group','subgroup','new_subgroup','standard','new_standard','code','id','id_'] - new_row={k:process(v, k, to_process_list) for k, v in new_row.items()} - - - - df_ics_seperated=df_ics_seperated.append(new_row, ignore_index=True) - print(i) - -ics_dict_general_={} -for k,v in ics_dict_general.items(): - k=process(k,'') - v=list(set(v)) - v=[process(item,'') for item in v] - ics_dict_general_[k]=v -ics_dict_general=ics_dict_general_ - -df_ics_seperated.to_csv('ics_separated.csv') # save all things into a csv so that later on lables, ics labels and names could be correlated -savemodel(ics_dict,'ics_dict') -savemodel(ics_dict_general,'ics_dict_general') -savemodel(ics_map_old_new,'ics_map_old_new') - - - - -""" -# =================== -merge the ics data with the iso standards -""" -df_ics_seperated=pd.read_csv('ics_separated.csv', index_col=0) -json_to_csv=pd.read_csv('json_to_csv.csv', index_col=0) # this is the csv version of 'iso_flat.json', contains the iso standards metadata - -df_final_all=pd.DataFrame() -counter=0 -for _, row in df_ics_seperated.iterrows(): - counter+=1 - print(counter) - entry=json_to_csv[json_to_csv['url'] == row['link']].values - new_row={} - - # merge - if len(entry)!=0: - for k, v in zip(json_to_csv.columns, entry[0]): - new_row[k]=v - - for k, v in dict(row).items(): - new_row[k]=v - - - - df_final_all=df_final_all.append(new_row, ignore_index=True) - -df_final_all.to_csv('iso_final_all.csv') - -# todo: fix the paths for files diff --git a/api/standards_extraction/LICENSE b/api/standards_extraction/LICENSE deleted file mode 100755 index 8dada3e..0000000 --- a/api/standards_extraction/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/api/standards_extraction/README.md b/api/standards_extraction/README.md deleted file mode 100755 index c4c66ff..0000000 --- a/api/standards_extraction/README.md +++ /dev/null @@ -1,143 +0,0 @@ -# StandardsExtractingContentHandler - -Apache Tika currently provides many _ContentHandler_ which help to de-obfuscate specific types of information from text. For instance, the `PhoneExtractingContentHandler` is used to extract phone numbers while parsing. - -This improvement adds the **`StandardsExtractingContentHandler`** to Tika, a new ContentHandler that relies on regular expressions in order to identify and extract standard references from text. -Basically, a standard reference is just a reference to a norm/convention/requirement (i.e., a standard) released by a standard organization. This work is maily focused on identifying and extracting the references to the standards already cited within a given document (e.g., SOW/PWS) so the references can be stored and provided to the user as additional metadata in case the `StandardExtractingContentHandler` is used. - -In addition to the patch, the first version of the `StandardsExtractingContentHandler` along with an example class to easily execute the handler is available on [GitHub](https://github.com/giuseppetotaro/StandardsExtractingContentHandler). The following sections provide more in detail how the `StandardsExtractingHandler` has been developed. - -All the details are reported on Jira ([TIKA-2449](https://issues.apache.org/jira/browse/TIKA-2449)). - -## Getting Started - -To build StandardsExtractingContentHandler, you can run the following bash script: - -``` -./build.sh -``` - -To extract standard references by using the StandardsExtractingContentHandler, you can run the following bash script: - -``` -./run.sh /path/to/input threshold -``` - -For instance, by running `./run.sh ./example/SOW-TacCOM.pdf 0.75` you can get the standard references from the [SOW-TacCOM.pdf](https://foiarr.cbp.gov/streamingWord.asp?i=607) file using a threshold of 0.75 along with the scope and other metadata: - -``` -{ - "Author": "BAF107S", - "Content-Type": "application/pdf", - "Creation-Date": "2011-04-21T21:36:36Z", - "Last-Modified": "2011-06-14T22:04:53Z", - "Last-Save-Date": "2011-06-14T22:04:53Z", - "X-Parsed-By": [ - "org.apache.tika.parser.DefaultParser", - "org.apache.tika.parser.pdf.PDFParser" - ], - "access_permission:assemble_document": "false", - "access_permission:can_modify": "false", - "access_permission:can_print": "true", - "access_permission:can_print_degraded": "false", - "access_permission:extract_content": "false", - "access_permission:extract_for_accessibility": "true", - "access_permission:fill_in_form": "false", - "access_permission:modify_annotations": "false", - "created": "Thu Apr 21 14:36:36 PDT 2011", - "creator": "BAF107S", - "date": "2011-06-14T22:04:53Z", - "dc:creator": "BAF107S", - "dc:format": "application/pdf; version\u003d1.7", - "dc:title": "Microsoft Word - SOW HSBP1010C00056.doc", - "dcterms:created": "2011-04-21T21:36:36Z", - "dcterms:modified": "2011-06-14T22:04:53Z", - "meta:author": "BAF107S", - "meta:creation-date": "2011-04-21T21:36:36Z", - "meta:save-date": "2011-06-14T22:04:53Z", - "modified": "2011-06-14T22:04:53Z", - "pdf:PDFVersion": "1.7", - "pdf:docinfo:created": "2011-04-21T21:36:36Z", - "pdf:docinfo:creator": "BAF107S", - "pdf:docinfo:creator_tool": "PScript5.dll Version 5.2.2", - "pdf:docinfo:modified": "2011-06-14T22:04:53Z", - "pdf:docinfo:producer": "Acrobat Distiller 9.3.3 (Windows)", - "pdf:docinfo:title": "Microsoft Word - SOW HSBP1010C00056.doc", - "pdf:encrypted": "true", - "producer": "Acrobat Distiller 9.3.3 (Windows)", - "scope": "\n \nThe purpose of this SOW is to describe the products and services that the Contractor \nwill provide to the CBP, Office of Information and Technology’s (OIT), Enterprise \n\n\n\nCBP TACCOM LMR Deployment Equipment and Services - Houlton Ref. No.____________ \nSource Selection Sensitive Information – See FAR 2.101 and 3.104 \n\n \n\n \nUpdated 02/25/10 2 \n\nSource Selection Sensitive Information – See FAR 2.101 and 3.104 \n \n\nNetworks and Technology Support (ENTS), Wireless Technology Programs (WTP) \nTACCOM Project in support of the TACCOM system modernization in the Houlton, \nMaine Focus Area 1. \n \nThe Contractor shall provide LMR Equipment, Development, Deployment and Support \nas needed in support of CBP’s LMR network and systems. LMR Equipment, \nDevelopment, Deployment and Support includes, but is not limited to: assistance in \nengineering design and analysis, site development, equipment configuration, system \ninstallation, system testing, training, warehousing, transportation, field operations \nsupport, and equipment and material supply as called for within this SOW. \n \nThe equipment and services requested under this SOW will be applied in coordination \nwith the Government Contracting Officer’s Technical Representative (COTR), and/or the \nCOTR-designated Task Monitor(s). \n \n \n", - "standard_references": [ - "ANSI/TIA 222-G", - "TIA/ANSI 222-G-1", - "FIPS 140-2", - "FIPS 197" - ], - "title": "Microsoft Word - SOW HSBP1010C00056.doc", - "xmp:CreatorTool": "PScript5.dll Version 5.2.2", - "xmpMM:DocumentID": "uuid:13a50f6e-93d9-42f0-b939-eb9aa2c15426", - "xmpTPg:NPages": "46" -} -``` - -## Background - -From a technical perspective, a standard reference is a string that is usually composed of two parts: -1. the name of the standard organization; -2. the alphanumeric identifier of the standard within the organization. -Specifically, the first part can include the acronym or the full name of the standard organization or even both, and the second part can include an alphanumeric string, possibly containing one or more separation symbols (e.g., "-", "_", ".") depending on the format adopted by the organization, representing the identifier of the standard within the organization. - -Furthermore, the standard references are usually reported within the "Applicable Documents" or "References" section of a SOW, and they can be cited also within sections that include in the header the word "standard", "requirement", "guideline", or "compliance". - -Consequently, the citation of standard references within a SOW/PWS document can be summarized by the following rules: -* **RULE 1**: standard references are usually reported within the section named "Applicable Documents" or "References". -* **RULE 2**: standard references can be cited also within sections including the word "compliance" or another semantically-equivalent word in their name. -* **RULE 3**: standard references is composed of two parts: - * Name of the standard organization (acronym, full name, or both). - * Alphanumeric identifier of the standard within the organization. -* **RULE 4**: The name of the standard organization includes the acronym or the full name or both. The name must belong to the set of standard organizations `S = O U V`, where `O` represents the set of open standard organizations (e.g., ANSI) and `V` represents the set of vendor-specific standard organizations (e.g., Motorola). -* **RULE 5**: A separation symbol (e.g., "-", "_", "." or whitespace) can be used between the name of the standard organization and the alphanumeric identifier. -* **RULE 6**: The alphanumeric identifier of the standard is composed of alphabetic and numeric characters, possibly split in two or more parts by a separation symbol (e.g., "-", "_", "."). - -On the basis of the above rules, here are some examples of formats used for reporting standard references within a SOW/PWS: -* `` -* `()` -* `()` - -Moreover, some standards are sometimes released by two standard organizations. In this case, the standard reference can be reported as follows: -* `/` - -## Regular Expressions - -The `StandardsExtractingContentHandler` uses a helper class named `StandardsText` that relies on Java regular expressions and provides some methods to identify headers and standard references, and determine the score of the references found within the given text. - -Here are the main regular expressions used within the `StandardsText` class: -* **REGEX_HEADER**: regular expression to match only uppercase headers. - ``` - (\d+\.(\d+\.?)*)\p{Blank}+([A-Z]+(\s[A-Z]+)*){5,} - ``` -* **REGEX_APPLICABLE_DOCUMENTS**: regular expression to match the the header of "APPLICABLE DOCUMENTS" and equivalent sections. - ``` - (?i:.*APPLICABLE\sDOCUMENTS|REFERENCE|STANDARD|REQUIREMENT|GUIDELINE|COMPLIANCE.*) - ``` -* **REGEX_FALLBACK**: regular expression to match a string that is supposed to be a standard reference. - ``` - \(?(?[A-Z]\w+)\)?((\s?(?\/)\s?)(\w+\s)*\(?(?[A-Z]\w+)\)?)?(\s(Publication|Standard))?(-|\s)?(?([0-9]{3,}|([A-Z]+(-|_|\.)?[0-9]{2,}))((-|_|\.)?[A-Z0-9]+)*) - ``` -* **REGEX_STANDARD**: regular expression to match the standard organization within a string potentially representing a standard reference. - This regular expression is obtained by using a helper class named `StandardOrganizations` that provides a list of the most important standard organizations reported on [Wikipedia](https://en.wikipedia.org/wiki/List_of_technical_standard_organisations). Basically, the list is composed of International standard organizations, Regional standard organizations, and American and British among Nationally-based standard organizations. Other lists of standard organizations are reported on [OpenStandards](http://www.openstandards.net/viewOSnet2C.jsp?showModuleName=Organizations) and [IBR Standards Portal](https://ibr.ansi.org/Standards/). - -## How To Use The Standards Extraction Capability - -The standard references identification performed by using the `StandardsExtractingContentHandler` is based on the following steps (see also the [flow chart](https://issues.apache.org/jira/secure/attachment/12885939/flowchart_standards_extraction_v02.png)): -1. searches for headers; -2. searches for patterns that are supposed to be standard references (basically, every string mostly composed of uppercase letters followed by an alphanumeric characters); -3. each potential standard reference starts with score equal to 0.25; -4. increases by 0.25 the score of references which include the name of a known standard organization; -5. increases by 0.25 the score of references which include the word "Publication" or "Standard"; -6. increases by 0.25 the score of references which have been found within "Applicable Documents" and equivalent sections; -7. returns the standard references along with scores; -8. adds the standard references as additional metadata. - -The unit test is implemented within the **`StandardsExtractingContentHandlerTest`** class and extracts the standard references from a SOW downloaded from the [FOIA Library](https://foiarr.cbp.gov/streamingWord.asp?i=607). This SOW is also provide on [Jira](https://issues.apache.org/jira/secure/attachment/12884323/SOW-TacCOM.pdf). - -The **`StandardsExtractionExample`** is a class to demonstrate how to use the `StandardsExtractingContentHandler` to get a list of the standard references from every file in a directory. diff --git a/api/text_analysis/__init__.py b/api/standards_extraction/__init__.py similarity index 100% rename from api/text_analysis/__init__.py rename to api/standards_extraction/__init__.py diff --git a/api/standards_extraction/build.sh b/api/standards_extraction/build.sh deleted file mode 100755 index e4b66e0..0000000 --- a/api/standards_extraction/build.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash -# -# Script : build.sh -# Usage : ./build.sh /path/to/input -# Author : Giuseppe Totaro -# Date : 09/26/2017 [MM-DD-YYYY] -# Last Edited: -# Description: This scripts compiles all .java files. -# Notes : -# - -export JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8 - -if [ ! -e lib/tika-app-1.16.jar ] -then - echo "Error: this program requires Apache Tika 1.16!" - echo "Please provide \"tika-app-1.16.jar\" file in the \"lib\" folder and try again." - exit 1 -fi - -mkdir -p bin - -for file in $(find . -name "*.java" -print) -do - javac -cp ./:./lib/tika-app-1.16.jar:./lib/junit-4.12.jar:./src -d ./bin ${file} -done diff --git a/api/standards_extraction/lib/junit-4.12.jar b/api/standards_extraction/lib/junit-4.12.jar deleted file mode 100755 index 3a7fc26..0000000 Binary files a/api/standards_extraction/lib/junit-4.12.jar and /dev/null differ diff --git a/api/standards_extraction/parse.py b/api/standards_extraction/parse.py new file mode 100755 index 0000000..4b586be --- /dev/null +++ b/api/standards_extraction/parse.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- + +import re +import io +import os +import subprocess + + +def tika_parse(pdf): + filepath = "./data/" + pdf.filename + if os.path.exists(filepath + "_parsed.txt"): + # todo: remove this. Caches the parsed text. + return str(open(filepath + "_parsed.txt", "r").read()) + pdf.write(filepath) + bashCommand = "java -jar standards_extraction/tika-app-1.16.jar -t " + filepath + output = "" + try: + output = subprocess.check_output(["bash", "-c", bashCommand]) + # file = open(filepath + "_parsed.txt", "wb") + # file.write(output) + # file.close() + # Returns bytestring with lots of tabs and spaces. + if type(output) == bytes: + output = output.decode("utf-8").replace("\t", + " ").replace("\n", " ") + except subprocess.CalledProcessError as e: + print(e.output) + return str(output) + + +def find_standard_ref(text): + standard_orgs = {} + for line in io.open("standards_extraction/standard_orgs.txt", mode="r", encoding="utf-8").readlines(): + line = line.strip() + abbr = line.split(' — ')[0] + name = line.split(' — ')[1] + standard_orgs[abbr] = name + refs = [] + # match abbreviations in upper case + words = text.split() + for i, word in enumerate(words): + for k in standard_orgs.keys(): + if k in word: + # check one word before and after for alphanumeric + if i < len(words): + word_after = words[i+1] + if bool(re.search(r'\d', word_after)): + standard_ref = word + ' ' + word_after + # clean a bit + if standard_ref[-1] == '.' or standard_ref[-1] == ',': + standard_ref = standard_ref[:-1] + standard_ref = standard_ref.replace('\\n', '') + refs.append(standard_ref) + elif i >= 0: + word_before = words[i+1] + if bool(re.search(r'\d', word_before)): + refs.append(word_before+' '+word) + + return list(set(refs)) + +# print(find_standard_ref('(IEC) sdd67')) diff --git a/api/standards_extraction/run.sh b/api/standards_extraction/run.sh deleted file mode 100755 index d50961c..0000000 --- a/api/standards_extraction/run.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash -# -# Script : run.sh -# Usage : ./run.sh /path/to/to/input -# Author : Giuseppe Totaro -# Date : 08/28/2017 [MM-DD-YYYY] -# Last Edited: -# Description: This scripts runs the StandardsExtractingContentHandler to -# extract the standard references from every file in a directory. -# Notes : -# - -function usage() { - echo "Usage: run.sh /path/to/input threshold" - exit 1 -} - -INPUT="" -OUTPUT="" -UMLS_USER="" -UMLS_PASS="" -CTAKES_HOME="" - -if [ ! -e lib/tika-app-1.16.jar ] -then - echo "Error: this program requires Apache Tika 1.16!" - echo "Please provide \"tika-app-1.16.jar\" file in the \"lib\" folder and try again." - exit 1 -fi - -if [ $# -lt 2 ] -then - usage -fi - -INPUT="$1" -THRESHOLD="$2" - -java -cp ./lib/tika-app-1.16.jar:./bin StandardsExtractor "$INPUT" $THRESHOLD 2> /dev/null diff --git a/api/standards_extraction/src/StandardsExtractor.java b/api/standards_extraction/src/StandardsExtractor.java deleted file mode 100755 index 69b5294..0000000 --- a/api/standards_extraction/src/StandardsExtractor.java +++ /dev/null @@ -1,178 +0,0 @@ -import java.io.BufferedInputStream; -import java.io.InputStream; -import java.io.StringWriter; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.util.Arrays; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -import org.apache.tika.exception.TikaException; -import org.apache.tika.metadata.Metadata; -import org.apache.tika.metadata.serialization.JsonMetadata; -import org.apache.tika.parser.AutoDetectParser; -import org.apache.tika.parser.ParseContext; -import org.apache.tika.parser.Parser; -import org.apache.tika.parser.ocr.TesseractOCRConfig; -import org.apache.tika.parser.pdf.PDFParserConfig; -import org.apache.tika.sax.BodyContentHandler; -import org.apache.tika.sax.RomanNumeral; -import org.apache.tika.sax.StandardsExtractingContentHandler; -import org.apache.tika.sax.StandardsExtractionExample; - -/** - * StandardsExtractor performs the extraction of the scope within the given - * document, add the scope to the Metadata object, and finally serializes the - * metadata to JSON. - * - */ -public class StandardsExtractor { - public static final String SCOPE = "scope"; - public static final String TEXT = "text"; - private static final String REGEX_ROMAN_NUMERALS = "(CM|CD|D?C{1,3})|(XC|XL|L?X{1,3})|(IX|IV|V?I{1,3})"; - private static final String REGEX_SCOPE = "(?((\\d+|(" + REGEX_ROMAN_NUMERALS + ")+)\\.?)+)\\p{Blank}+(SCOPE|Scope)"; - - public static void main(String[] args) { - if (args.length < 2) { - System.err.println("Usage: " + StandardsExtractionExample.class.getName() + " /path/to/input threshold"); - System.exit(1); - } - String pathname = args[0]; - double threshold = Double.parseDouble(args[1]); - - Path input = Paths.get(pathname); - - if (!Files.exists(input)) { - System.err.println("Error: " + input + " does not exist!"); - System.exit(1); - } - - Metadata metadata = null; - - try { - metadata = process(input, threshold); - } catch (Exception e) { - metadata = new Metadata(); - } - - StringWriter writer = new StringWriter(); - JsonMetadata.setPrettyPrinting(true); - - try { - JsonMetadata.toJson(metadata, writer); - } catch (TikaException e) { - writer.write("{}"); - } - - System.out.println(writer.toString()); - } - - private static Metadata process(Path input, double threshold) throws Exception { - Parser parser = new AutoDetectParser(); -// ForkParser forkParser = new ForkParser(StandardsExtractor.class.getClassLoader(), parser); - Metadata metadata = new Metadata(); - StandardsExtractingContentHandler handler = new StandardsExtractingContentHandler(new BodyContentHandler(-1), metadata); - handler.setThreshold(threshold); - - TesseractOCRConfig ocrConfig = new TesseractOCRConfig(); - PDFParserConfig pdfConfig = new PDFParserConfig(); - pdfConfig.setExtractInlineImages(true); - - ParseContext parseContext = new ParseContext(); - parseContext.set(TesseractOCRConfig.class, ocrConfig); - parseContext.set(PDFParserConfig.class, pdfConfig); - parseContext.set(Parser.class, parser); - - try (InputStream stream = new BufferedInputStream(Files.newInputStream(input))) { - parser.parse(stream, handler, metadata, parseContext); - } -// try { -// //TODO ForkParser gives back text in a different format wrt AutoDetectParser! -// forkParser.parse(stream, handler, metadata, parseContext); -// } finally { -// forkParser.close(); -// } - - String text = handler.toString(); - - Pattern patternScope = Pattern.compile(REGEX_SCOPE); - Matcher matcherScope = patternScope.matcher(text); - - Matcher matchResult = null; - boolean match = false; - String scope = ""; - -// // Gets the second occurrence of SCOPE -// for (int i = 0; i < 2; i++) { -// match = matcherScope.find(); - -// } - // Gets the last occurrence of scope - for (int i = 0; i < 2 && (match = matcherScope.find()); i++) { - matchResult = (Matcher)matcherScope.toMatchResult(); - } - - if (matchResult != null && !matchResult.group().isEmpty()) { - int start = matchResult.end(); - String index = matchResult.group("index"); - - int end = text.length() - 1; - match = false; - String endsWithDot = (index.substring(index.length()-1).equals(".")) ? "." : ""; - String[] parts = index.split("\\."); - - do { -// if (parts.length > 0) { -// int partsLength = parts.length; -// int subindex = Integer.parseInt(parts[--partsLength]); -// while (subindex++ == 0 && partsLength > 0) { -// subindex = Integer.parseInt(parts[--partsLength]); -// } -// parts[partsLength] = Integer.toString(subindex); -// index = String.join(".", parts) + endsWithDot; -// } - - if (parts.length > 0) { - int partsLength = parts.length; - int subIndex = 0; - RomanNumeral romanNumeral = null; - boolean roman = false; - - do { - String subindexString = parts[--partsLength]; - try { - romanNumeral = new RomanNumeral(subindexString); - subIndex = romanNumeral.toInt(); - roman = true; - } catch (NumberFormatException e) { - subIndex = Integer.parseInt(subindexString); - } - } while (subIndex++ == 0 && partsLength > 0); - - parts[partsLength] = (roman) ? new RomanNumeral(subIndex).toString() : Integer.toString(subIndex); - index = String.join(".", parts) + endsWithDot; - } - - Pattern patternNextHeader = Pattern.compile(index + "\\p{Blank}+([A-Z]([A-Za-z]+\\s?)*)"); - Matcher matcherNextHeader = patternNextHeader.matcher(text); - - if (match = matcherNextHeader.find(start)) { - end = matcherNextHeader.start(); - } - - if (parts.length > 0) { - parts = Arrays.copyOfRange(parts, 0, parts.length-1); - } - } while (!match && parts.length > 0); - - //TODO Clean text by removing header, footer, and page number (try to find the patterns associated with header and footer) - scope = text.substring(start + 1, end); - } - - metadata.add(SCOPE, scope); - metadata.add(TEXT, text); - - return metadata; - } -} \ No newline at end of file diff --git a/api/standards_extraction/src/org/apache/tika/sax/RomanNumeral.java b/api/standards_extraction/src/org/apache/tika/sax/RomanNumeral.java deleted file mode 100755 index 49f9493..0000000 --- a/api/standards_extraction/src/org/apache/tika/sax/RomanNumeral.java +++ /dev/null @@ -1,153 +0,0 @@ -package org.apache.tika.sax; - -/** - * An object of type RomanNumeral is an integer between 1 and 3999. It can - * be constructed either from an integer or from a string that represents - * a Roman numeral in this range. The function toString() will return a - * standardized Roman numeral representation of the number. The function - * toInt() will return the number as a value of type int. - * - * Reference: http://math.hws.edu/eck/cs124/javanotes3/c9/ex-9-3-answer.html - * - */ -public class RomanNumeral { - - private final int num; // The number represented by this Roman numeral. - - private static int[] numbers = { 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1}; - - private static String[] letters = {"M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I"}; - - /** - * Creates the Roman number with the int value specified - * by the parameter. Throws a {@link NumberFormatException} if arabic is - * not in the range 1 to 3999 inclusive. - * - * @param arabic int value to create the Roman number - */ - public RomanNumeral(int arabic) { - if (arabic < 1) { - throw new NumberFormatException("Value of RomanNumeral must be positive."); - } - if (arabic > 3999) { - throw new NumberFormatException("Value of RomanNumeral must be 3999 or less."); - } - num = arabic; - } - - /** - * Creates the Roman number with the given representation. - * For example, RomanNumeral("xvii") is 17. If the parameter is not a - * legal Roman numeral, a {@link NumberFormatException} is thrown. Both upper and - * lower case letters are allowed. - * - * @param roman representation of the Roman number - */ - public RomanNumeral(String roman) { - if (roman.length() == 0) { - throw new NumberFormatException("An empty string does not define a Roman numeral."); - } - - roman = roman.toUpperCase(); // Convert to upper case letters. - - int i = 0; // A position in the string, roman; - int arabic = 0; // Arabic numeral equivalent of the part of the string that has - // been converted so far. - - while (i < roman.length()) { - - char letter = roman.charAt(i); // Letter at current position in string. - int number = letterToNumber(letter); // Numerical equivalent of letter. - - if (number < 0) { - throw new NumberFormatException("Illegal character \"" + letter + "\" in roman numeral."); - } - - i++; // Move on to next position in the string - - if (i == roman.length()) { - // There is no letter in the string following the one we have just processed. - // So just add the number corresponding to the single letter to arabic. - arabic += number; - } - else { - // Look at the next letter in the string. If it has a larger Roman numeral - // equivalent than number, then the two letters are counted together as - // a Roman numeral with value (nextNumber - number). - int nextNumber = letterToNumber(roman.charAt(i)); - if (nextNumber > number) { - // Combine the two letters to get one value, and move on to next position in string. - arabic += (nextNumber - number); - i++; - } - else { - // Don't combine the letters. Just add the value of the one letter onto the number. - arabic += number; - } - } - - } // end while - - if (arabic > 3999) - throw new NumberFormatException("Roman numeral must have value 3999 or less."); - - num = arabic; - - } // end constructor - - /** - * Finds the integer value of letter considered as a Roman numeral. - * Returns -1 if letter is not a legal Roman numeral. The letter must be - * upper case. - * - * @param letter considered as a Roman numeral - * @return the integer value of letter considered as a Roman numeral - */ - private int letterToNumber(char letter) { - switch (letter) { - case 'I': - return 1; - case 'V': - return 5; - case 'X': - return 10; - case 'L': - return 50; - case 'C': - return 100; - case 'D': - return 500; - case 'M': - return 1000; - default: - return -1; - } - } - - /** - * Returns the standard representation of this Roman numeral. - * - * @return the standard representation of this Roman numeral - */ - public String toString() { - String roman = ""; // The roman numeral. - int N = num; // N represents the part of num that still has - // to be converted to Roman numeral representation. - for (int i = 0; i < numbers.length; i++) { - while (N >= numbers[i]) { - roman += letters[i]; - N -= numbers[i]; - } - } - return roman; - } - - /** - * Returns the value of this Roman numeral as an int. - * - * @return the value of this Roman numeral as an int - */ - public int toInt() { - return num; - } -} \ No newline at end of file diff --git a/api/standards_extraction/src/org/apache/tika/sax/StandardOrganizations.java b/api/standards_extraction/src/org/apache/tika/sax/StandardOrganizations.java deleted file mode 100755 index 24e7f4b..0000000 --- a/api/standards_extraction/src/org/apache/tika/sax/StandardOrganizations.java +++ /dev/null @@ -1,300 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.tika.sax; - -import java.util.Map; -import java.util.TreeMap; - -/** - * This class provides a collection of the most important technical standard organizations. - * The collection of standard organizations has been obtained from Wikipedia. - * Currently, the list is composed of the most important international standard organizations, the regional standard organizations (i.e., Africa, Americas, Asia Pacific, Europe, and Middle East), and British and American standard organizations among the national-based ones. - * - */ -public class StandardOrganizations { - - private static Map organizations; - static { - organizations = new TreeMap(); - //manually added organizations - organizations.put("CFR", "Code of Federal Regulations"); - organizations.put("BIPM", "International Bureau of Weights and Measures"); - organizations.put("CGPM", "General Conference on Weights and Measures"); - organizations.put("CIPM", "International Committee for Weights and Measures"); - - //International standard organizations - organizations.put("3GPP", "3rd Generation Partnership Project"); - organizations.put("3GPP2", "3rd Generation Partnership Project 2"); - organizations.put("ABYC", "The American Boat & Yacht Council"); - organizations.put("Accellera", "Accellera Organization"); - organizations.put("A4L", "Access for Learning Community"); - organizations.put("AES", "Audio Engineering Society"); - organizations.put("AIIM", "Association for Information and Image Management"); - organizations.put("ASAM", "Association for Automation and Measuring Systems"); - organizations.put("ASHRAE", "American Society of Heating, Refrigerating and Air-Conditioning Engineers"); - organizations.put("ASME", "American Society of Mechanical Engineers"); - organizations.put("ASTM", "American Society for Testing and Materials"); - organizations.put("ATIS", "Alliance for Telecommunications Industry Solutions"); - organizations.put("AUTOSAR", "Automotive technology"); - //organizations.put("BIPM, CGPM, and CIPM", "Bureau International des Poids et Mesures and the related organizations established under the Metre Convention of 1875."); - organizations.put("CableLabs", "Cable Television Laboratories"); - organizations.put("CCSDS", "Consultative Committee for Space Data Sciences"); - organizations.put("CIE", "International Commission on Illumination"); - organizations.put("CISPR", "International Special Committee on Radio Interference"); - organizations.put("CFA", "Compact flash association"); - organizations.put("DCMI", "Dublin Core Metadata Initiative"); - organizations.put("DDEX", "Digital Data Exchange"); - organizations.put("DMTF", "Distributed Management Task Force"); - organizations.put("ECMA", "Ecma International"); - organizations.put("EKOenergy", "EKOenergy"); - organizations.put("FAI", "Fédération Aéronautique Internationale"); - organizations.put("GS1", "Global supply chain standards"); - organizations.put("HGI", "Home Gateway Initiative"); - organizations.put("HFSB", "Hedge Fund Standards Board"); - organizations.put("IATA", "International Air Transport Association"); - organizations.put("IAU", "International Arabic Union"); - organizations.put("ICAO", "International Civil Aviation Organization"); - organizations.put("IEC", "International Electrotechnical Commission"); - organizations.put("IEEE", "Institute of Electrical and Electronics Engineers"); - organizations.put("IEEE-SA", "IEEE Standards Association"); - organizations.put("IETF", "Internet Engineering Task Force"); - organizations.put("IFOAM", "International Federation of Organic Agriculture Movements"); - organizations.put("IFSWF", "International Forum of Sovereign Wealth Funds"); - organizations.put("IMO", "International Maritime Organization"); - organizations.put("IMS", "IMS Global Learning Consortium"); - organizations.put("ISO", "International Organization for Standardization"); - organizations.put("IPTC", "International Press Telecommunications Council"); - organizations.put("ITU", "The International Telecommunication Union"); - organizations.put("ITU-R", "ITU Radiocommunications Sector"); - organizations.put("CCIR", "Comité Consultatif International pour la Radio"); - organizations.put("ITU-T", "ITU Telecommunications Sector"); - organizations.put("CCITT", "Comité Consultatif International Téléphonique et Télégraphique"); - organizations.put("ITU-D", "ITU Telecom Development"); - organizations.put("BDT", "Bureau de développement des télécommunications, renamed ITU-D"); - organizations.put("IUPAC", "International Union of Pure and Applied Chemistry"); - organizations.put("Liberty Alliance", "Liberty Alliance"); - organizations.put("Media Grid", "Media Grid Standards Organization"); - organizations.put("NACE International", "National Association of Corrosion Engineers"); - organizations.put("OASIS", "Organization for the Advancement of Structured Information Standards"); - organizations.put("OGC", "Open Geospatial Consortium"); - organizations.put("OHICC", "Organization of Hotel Industry Classification & Certification"); - organizations.put("OIF", "Optical Internetworking Forum"); - organizations.put("OMA", "Open Mobile Alliance"); - organizations.put("OMG", "Object Management Group"); - organizations.put("OGF", "Open Grid Forum"); - organizations.put("GGF", "Global Grid Forum"); - organizations.put("EGA", "Enterprise Grid Alliance"); - organizations.put("OTA", "OpenTravel Alliance"); - organizations.put("OSGi", "OSGi Alliance"); - organizations.put("PESC", "P20 Education Standards Council"); - organizations.put("SAI", "Social Accountability International"); - organizations.put("SDA", "Secure Digital Association"); - organizations.put("SNIA", "Storage Networking Industry Association"); - organizations.put("SMPTE", "Society of Motion Picture and Television Engineers"); - organizations.put("SSDA", "Solid State Drive Alliance"); - organizations.put("The Open Group", "The Open Group"); - organizations.put("TIA", "Telecommunications Industry Association"); - organizations.put("TM Forum", "Telemanagement Forum"); - organizations.put("UIC", "International Union of Railways"); - organizations.put("UL", "Underwriters Laboratories"); - organizations.put("UPU", "Universal Postal Union"); - organizations.put("WMO", "World Meteorological Organization"); - organizations.put("W3C", "World Wide Web Consortium"); - organizations.put("WSA", "Website Standards Association"); - organizations.put("WHO", "World Health Organization"); - organizations.put("XSF", "The XMPP Standards Foundation"); - organizations.put("FAO", "Food and Agriculture Organization"); - //Regional standards organizations - //Africa - organizations.put("ARSO", "African Regional Organization for Standarization"); - organizations.put("SADCSTAN", "Southern African Development Community Cooperation in Standarization"); - //Americas - organizations.put("COPANT", "Pan American Standards Commission"); - organizations.put("AMN", "MERCOSUR Standardization Association"); - organizations.put("CROSQ", "CARICOM Regional Organization for Standards and Quality"); - organizations.put("AAQG", "America's Aerospace Quality Group"); - //Asia Pacific - organizations.put("PASC", "Pacific Area Standards Congress"); - organizations.put("ACCSQ", "ASEAN Consultative Committee for Standards and Quality"); - //Europe - organizations.put("RoyalCert", "RoyalCert International Registrars"); - organizations.put("CEN", "European Committee for Standardization"); - organizations.put("CENELEC", "European Committee for Electrotechnical Standardization"); - organizations.put("URS", "United Registrar of Systems, UK"); - organizations.put("ETSI", "European Telecommunications Standards Institute"); - organizations.put("EASC", "Euro-Asian Council for Standardization, Metrology and Certification"); - organizations.put("IRMM", "Institute for Reference Materials and Measurements"); - organizations.put("WELMEC", "European Cooperation in Legal Metrology"); - organizations.put("EURAMET", "the European Association of National Metrology Institutes"); - //Middle East - organizations.put("AIDMO", "Arab Industrial Development and Mining Organization"); - organizations.put("IAU", "International Arabic Union"); - //Nationally-based standards organizations - //United Kingdom - organizations.put("BSI", "British Standards Institution aka BSI Group"); - organizations.put("DStan", "UK Defence Standardization"); - //United States of America - organizations.put("ANSI", "American National Standards Institute"); - organizations.put("ACI", "American Concrete Institute"); - organizations.put("NIST", "National Institute of Standards and Technology"); - - //for and of the in on - - //manually added organizations - organizations.put("Code\\sof\\sFederal\\sRegulations", "CFR"); - organizations.put("International\\sBureau\\sof\\sWeights\\sand\\sMeasures", "BIPM"); - organizations.put("General\\sConference\\son\\sWeights\\sand\\sMeasures", "CGPM"); - organizations.put("International\\sCommittee\\sfor\\sWeights\\sand\\sMeasures", "CIPM"); - - //International standard organizations - organizations.put("3rd\\sGeneration\\sPartnership\\sProject", "3GPP"); - organizations.put("3rd\\sGeneration\\sPartnership\\sProject\\s2", "3GPP2"); - organizations.put("The\\sAmerican\\sBoat\\s&\\sYacht\\sCouncil", "ABYC"); - organizations.put("Accellera\\sOrganization", "Accellera"); - organizations.put("Access\\sfor\\sLearning\\sCommunity", "A4L"); - organizations.put("Audio\\sEngineering\\sSociety", "AES"); - organizations.put("Association\\sfor\\sInformation\\sand\\sImage\\sManagement", "AIIM"); - organizations.put("Association\\sfor\\sAutomation\\sand\\sMeasuring\\sSystems", "ASAM"); - organizations.put("American\\sSociety\\sof\\sHeating,\\sRefrigerating\\sand\\sAir-Conditioning\\sEngineers", "ASHRAE"); - organizations.put("American\\sSociety\\sof\\sMechanical\\sEngineers", "ASME"); - organizations.put("American\\sSociety\\sfor\\sTesting\\sand\\sMaterials", "ASTM"); - organizations.put("Alliance\\sfor\\sTelecommunications\\sIndustry\\sSolutions", "ATIS"); - organizations.put("Automotive\\stechnology", "AUTOSAR"); - //organizations.put("BIPM, CGPM, and CIPM", "Bureau International des Poids et Mesures and the related organizations established under the Metre Convention of 1875."); - organizations.put("Cable\\sTelevision\\sLaboratories", "CableLabs"); - organizations.put("Consultative\\sCommittee\\sfor\\sSpace\\sData\\sSciences", "CCSDS"); - organizations.put("International\\sCommission\\son\\sIllumination", "CIE"); - organizations.put("International\\sSpecial\\sCommittee\\son\\sRadio\\sInterference", "CISPR"); - organizations.put("Compact\\sflash\\sassociation", "CFA"); - organizations.put("Dublin\\sCore\\sMetadata\\sInitiative", "DCMI"); - organizations.put("Digital\\sData\\sExchange", "DDEX"); - organizations.put("Distributed\\sManagement\\sTask\\sForce", "DMTF"); - organizations.put("Ecma\\sInternational", "ECMA"); - organizations.put("EKOenergy", "EKOenergy"); - organizations.put("Fédération\\sAéronautique\\sInternationale", "FAI"); - organizations.put("Global\\ssupply\\schain\\sstandards", "GS1"); - organizations.put("Home\\sGateway\\sInitiative", "HGI"); - organizations.put("Hedge\\sFund\\sStandards\\sBoard", "HFSB"); - organizations.put("International\\sAir\\sTransport\\sAssociation", "IATA"); - organizations.put("International\\sArabic\\sUnion", "IAU"); - organizations.put("International\\sCivil\\sAviation\\sOrganization", "ICAO"); - organizations.put("International\\sElectrotechnical\\sCommission", "IEC"); - organizations.put("Institute\\sof\\sElectrical\\sand\\sElectronics\\sEngineers", "IEEE"); - organizations.put("IEEE\\sStandards\\sAssociation", "IEEE-SA"); - organizations.put("Internet\\sEngineering\\sTask\\sForce", "IETF"); - organizations.put("International\\sFederation\\sof\\sOrganic\\sAgriculture\\sMovements", "IFOAM"); - organizations.put("International\\sForum\\sof\\sSovereign\\sWealth\\sFunds", "IFSWF"); - organizations.put("International\\sMaritime\\sOrganization", "IMO"); - organizations.put("IMS\\sGlobal\\sLearning\\sConsortium", "IMS"); - organizations.put("International\\sOrganization\\sfor\\sStandardization", "ISO"); - organizations.put("International\\sPress\\sTelecommunications\\sCouncil", "IPTC"); - organizations.put("The\\sInternational\\sTelecommunication\\sUnion", "ITU"); - organizations.put("ITU\\sRadiocommunications\\sSector", "ITU-R"); - organizations.put("Comité\\sConsultatif\\sInternational\\spour\\sla\\sRadio", "CCIR"); - organizations.put("ITU\\sTelecommunications\\sSector", "ITU-T"); - organizations.put("Comité\\sConsultatif\\sInternational\\sTéléphonique\\set\\sTélégraphique", "CCITT"); - organizations.put("ITU\\sTelecom\\sDevelopment", "ITU-D"); - organizations.put("Bureau\\sde\\sdéveloppement\\sdes\\stélécommunications", "BDT"); - organizations.put("International\\sUnion\\sof\\sPure\\sand\\sApplied\\sChemistry", "IUPAC"); - organizations.put("Liberty Alliance", "Liberty Alliance"); - organizations.put("Media\\sGrid\\sStandards\\sOrganization", "Media Grid"); - organizations.put("National\\sAssociation\\sof\\sCorrosion\\sEngineers", "NACE International"); - organizations.put("Organization\\sfor\\sthe\\sAdvancement\\sof\\sStructured\\sInformation\\sStandards", "OASIS"); - organizations.put("Open\\sGeospatial\\sConsortium", "OGC"); - organizations.put("Organization\\sof\\sHotel\\sIndustry\\sClassification\\s&\\sCertification", "OHICC"); - organizations.put("Optical\\sInternetworking\\sForum", "OIF"); - organizations.put("Open\\sMobile\\sAlliance", "OMA"); - organizations.put("Object\\sManagement\\sGroup", "OMG"); - organizations.put("Open\\sGrid\\sForum", "OGF"); - organizations.put("Global\\sGrid\\sForum", "GGF"); - organizations.put("Enterprise\\sGrid\\sAlliance", "EGA"); - organizations.put("OpenTravel\\sAlliance", "OTA"); - organizations.put("OSGi\\sAlliance", "OSGi"); - organizations.put("P20\\sEducation\\sStandards\\sCouncil", "PESC"); - organizations.put("Social\\sAccountability\\sInternational", "SAI"); - organizations.put("Secure\\sDigital\\sAssociation", "SDA"); - organizations.put("Storage\\sNetworking\\sIndustry\\sAssociation", "SNIA"); - organizations.put("Society\\sof\\sMotion\\sPicture\\sand\\sTelevision\\sEngineers", "SMPTE"); - organizations.put("Solid\\sState\\sDrive\\sAlliance", "SSDA"); - organizations.put("The\\sOpen\\sGroup", "The Open Group"); - organizations.put("Telecommunications\\sIndustry\\sAssociation", "TIA"); - organizations.put("Telemanagement\\sForum", "TM Forum"); - organizations.put("International\\sUnion\\sof\\sRailways", "UIC"); - organizations.put("Underwriters\\sLaboratories", "UL"); - organizations.put("Universal\\sPostal\\sUnion", "UPU"); - organizations.put("World\\sMeteorological\\sOrganization", "WMO"); - organizations.put("World\\sWide\\sWeb\\sConsortium", "W3C"); - organizations.put("Website\\sStandards\\sAssociation", "WSA"); - organizations.put("World\\sHealth\\sOrganization", "WHO"); - organizations.put("The\\sXMPP\\sStandards\\sFoundation", "XSF"); - organizations.put("Food\\sand\\sAgriculture\\sOrganization", "FAO"); - //Regional standards organizations - //Africa - organizations.put("African\\sRegional\\sOrganization\\sfor\\sStandarization", "ARSO"); - organizations.put("Southern\\sAfrican\\sDevelopment\\sCommunity\\sCooperation\\sin\\sStandarization", "SADCSTAN"); - //Americas - organizations.put("Pan\\sAmerican\\sStandards\\sCommission", "COPANT"); - organizations.put("MERCOSUR\\sStandardization\\sAssociation", "AMN"); - organizations.put("CROSQ", "CARICOM\\sRegional\\sOrganization\\sfor\\sStandards\\sand\\sQuality"); - organizations.put("America's\\sAerospace\\sQuality\\sGroup", "AAQG"); - //Asia Pacific - organizations.put("Pacific\\sArea\\sStandards\\sCongress", "PASC"); - organizations.put("ASEAN\\sConsultative\\sCommittee\\sfor\\sStandards\\sand\\sQuality", "ACCSQ"); - //Europe - organizations.put("RoyalCert\\sInternational\\sRegistrars", "RoyalCert"); - organizations.put("European\\sCommittee\\sfor\\sStandardization", "CEN"); - organizations.put("European\\sCommittee\\sfor\\sElectrotechnical\\sStandardization", "CENELEC"); - organizations.put("United\\sRegistrar\\sof\\sSystems", "URS"); - organizations.put("European\\sTelecommunications\\sStandards\\sInstitute", "ETSI"); - organizations.put("Euro-Asian\\sCouncil\\sfor\\sStandardization,\\sMetrology\\sand\\sCertification", "EASC"); - organizations.put("Institute\\sfor\\sReference\\sMaterials\\sand\\sMeasurements", "IRMM"); - organizations.put("European\\sCooperation\\sin\\sLegal\\sMetrology", "WELMEC"); - organizations.put("the\\sEuropean\\sAssociation\\sof\\sNational\\sMetrology\\sInstitutes", "EURAMET"); - //Middle East - organizations.put("Arab\\sIndustrial\\sDevelopment\\sand\\sMining\\sOrganization", "AIDMO"); - organizations.put("International\\sArabic\\sUnion", "IAU"); - //Nationally-based standards organizations - //United Kingdom - organizations.put("British\\sStandards\\sInstitution", "BSI"); - organizations.put("UK\\sDefence\\sStandardization", "DStan"); - //United States of America - organizations.put("American\\sNational\\sStandards\\sInstitute", "ANSI"); - organizations.put("American\\sConcrete\\sInstitute", "ACI"); - organizations.put("National\\sInstitute\\sof\\sStandards\\sand\\sTechnology", "NIST"); - - } - - /** - * Returns the map containing the collection of the most important technical standard organizations. - * - * @return the map containing the collection of the most important technical standard organizations. - */ - public static Map getOrganizations() { - return organizations; - } - - /** - * Returns the regular expression containing the most important technical standard organizations. - * - * @return the regular expression containing the most important technical standard organizations. - */ - public static String getOrganzationsRegex() { - String regex = "(" + String.join("|", organizations.keySet()) + ")"; //1) regex improved, 2) take care of white space w/ second fxn - return regex; - } -} \ No newline at end of file diff --git a/api/standards_extraction/src/org/apache/tika/sax/StandardReference.java b/api/standards_extraction/src/org/apache/tika/sax/StandardReference.java deleted file mode 100755 index cb3f5a1..0000000 --- a/api/standards_extraction/src/org/apache/tika/sax/StandardReference.java +++ /dev/null @@ -1,124 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.tika.sax; - -/** - * Class that represents a standard reference. - * - */ -public class StandardReference { - private String mainOrganization; - private String separator; - private String secondOrganization; - private String identifier; - private double score; - - private StandardReference(String mainOrganizationAcronym, String separator, String secondOrganizationAcronym, - String identifier, double score) { - super(); - this.mainOrganization = mainOrganizationAcronym; - this.separator = separator; - this.secondOrganization = secondOrganizationAcronym; - this.identifier = identifier; - this.score = score; - } - - public String getMainOrganizationAcronym() { - return mainOrganization; - } - - public void setMainOrganizationAcronym(String mainOrganizationAcronym) { - this.mainOrganization = mainOrganizationAcronym; - } - - public String getSeparator() { - return separator; - } - - public void setSeparator(String separator) { - this.separator = separator; - } - - public String getSecondOrganizationAcronym() { - return secondOrganization; - } - - public void setSecondOrganizationAcronym(String secondOrganizationAcronym) { - this.secondOrganization = secondOrganizationAcronym; - } - - public String getIdentifier() { - return identifier; - } - - public void setIdentifier(String identifier) { - this.identifier = identifier; - } - - public double getScore() { - return score; - } - - public void setScore(double score) { - this.score = score; - } - - @Override - public String toString() { - String standardReference = mainOrganization; - - if (separator != null && !separator.isEmpty()) { - standardReference += separator + secondOrganization; - } - - standardReference += " " + identifier; - - return standardReference; - } - - public static class StandardReferenceBuilder { - private String mainOrganization; - private String separator; - private String secondOrganization; - private String identifier; - private double score; - - public StandardReferenceBuilder(String mainOrganization, String identifier) { - this.mainOrganization = mainOrganization; - this.separator = null; - this.secondOrganization = null; - this.identifier = identifier; - this.score = 0; - } - - public StandardReferenceBuilder setSecondOrganization(String separator, String secondOrganization) { - this.separator = separator; - this.secondOrganization = secondOrganization; - return this; - } - - public StandardReferenceBuilder setScore(double score) { - this.score = score; - return this; - } - - public StandardReference build() { - return new StandardReference(mainOrganization, separator, secondOrganization, identifier, score); - } - } -} diff --git a/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractingContentHandler.java b/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractingContentHandler.java deleted file mode 100755 index 5d63300..0000000 --- a/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractingContentHandler.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.tika.sax; - -import java.util.Arrays; -import java.util.List; - -import org.apache.tika.metadata.Metadata; -import org.xml.sax.ContentHandler; -import org.xml.sax.SAXException; -import org.xml.sax.helpers.DefaultHandler; - -/** - * StandardsExtractingContentHandler is a Content Handler used to extract - * standard references while parsing. - * - */ -public class StandardsExtractingContentHandler extends ContentHandlerDecorator { - public static final String STANDARD_REFERENCES = "standard_references"; - private Metadata metadata; - private StringBuilder stringBuilder; - private double threshold = 0; - - /** - * Creates a decorator for the given SAX event handler and Metadata object. - * - * @param handler - * SAX event handler to be decorated. - * @param metadata - * {@link Metadata} object. - */ - public StandardsExtractingContentHandler(ContentHandler handler, Metadata metadata) { - super(handler); - this.metadata = metadata; - this.stringBuilder = new StringBuilder(); - } - - /** - * Creates a decorator that by default forwards incoming SAX events to a - * dummy content handler that simply ignores all the events. Subclasses - * should use the {@link #setContentHandler(ContentHandler)} method to - * switch to a more usable underlying content handler. Also creates a dummy - * Metadata object to store phone numbers in. - */ - protected StandardsExtractingContentHandler() { - this(new DefaultHandler(), new Metadata()); - } - - /** - * Gets the threshold to be used for selecting the standard references found - * within the text based on their score. - * - * @return the threshold to be used for selecting the standard references - * found within the text based on their score. - */ - public double getThreshold() { - return threshold; - } - - /** - * Sets the score to be used as threshold. - * - * @param score - * the score to be used as threshold. - */ - public void setThreshold(double score) { - this.threshold = score; - } - - /** - * The characters method is called whenever a Parser wants to pass raw - * characters to the ContentHandler. However, standard references are often - * split across different calls to characters, depending on the specific - * Parser used. Therefore, we simply add all characters to a StringBuilder - * and analyze it once the document is finished. - */ - @Override - public void characters(char[] ch, int start, int length) throws SAXException { - try { - String text = new String(Arrays.copyOfRange(ch, start, start + length)); - stringBuilder.append(text); - super.characters(ch, start, length); - } catch (SAXException e) { - handleException(e); - } - } - - /** - * This method is called whenever the Parser is done parsing the file. So, - * we check the output for any standard references. - */ - @Override - public void endDocument() throws SAXException { - super.endDocument(); - List standards = StandardsText.extractStandardReferences(stringBuilder.toString(), - threshold); - for (StandardReference standardReference : standards) { - metadata.add(STANDARD_REFERENCES, standardReference.toString()); - } - } -} \ No newline at end of file diff --git a/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractingContentHandlerTest.java b/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractingContentHandlerTest.java deleted file mode 100755 index 0fb411d..0000000 --- a/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractingContentHandlerTest.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.tika.sax; - -import static org.junit.Assert.*; - -import java.io.InputStream; - -import org.apache.tika.metadata.Metadata; -import org.apache.tika.parser.AutoDetectParser; -import org.apache.tika.parser.ParseContext; -import org.apache.tika.parser.Parser; -import org.junit.Test; - -/** - * Test class for the {@link StandardsExtractingContentHandler} class. - */ -public class StandardsExtractingContentHandlerTest { - - @Test - public void testExtractStandards() throws Exception { - Parser parser = new AutoDetectParser(); - Metadata metadata = new Metadata(); - - StandardsExtractingContentHandler handler = new StandardsExtractingContentHandler(new BodyContentHandler(-1), metadata); - handler.setThreshold(0.75); - InputStream inputStream = StandardsExtractingContentHandlerTest.class.getResourceAsStream("/test-documents/testStandardsExtractor.pdf"); - - parser.parse(inputStream, handler, metadata, new ParseContext()); - - String[] standardReferences = metadata.getValues(StandardsExtractingContentHandler.STANDARD_REFERENCES); - - assertTrue(standardReferences[0].equals("ANSI/TIA 222-G")); - assertTrue(standardReferences[1].equals("TIA/ANSI 222-G-1")); - assertTrue(standardReferences[2].equals("FIPS 140-2")); - assertTrue(standardReferences[3].equals("FIPS 197")); - } -} \ No newline at end of file diff --git a/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractionExample.java b/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractionExample.java deleted file mode 100755 index 63e5b76..0000000 --- a/api/standards_extraction/src/org/apache/tika/sax/StandardsExtractionExample.java +++ /dev/null @@ -1,109 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.tika.sax; - -import java.io.BufferedInputStream; -import java.io.IOException; -import java.io.InputStream; -import java.nio.file.FileVisitResult; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.nio.file.SimpleFileVisitor; -import java.nio.file.attribute.BasicFileAttributes; -import java.util.Collections; -import java.util.HashSet; - -import org.apache.tika.metadata.Metadata; -import org.apache.tika.parser.AutoDetectParser; -import org.apache.tika.parser.ParseContext; -import org.apache.tika.parser.Parser; - -/** - * Class to demonstrate how to use the {@link StandardsExtractingContentHandler} - * to get a list of the standard references from every file in a directory. - * - *

- * You can run this main method by running - * - * mvn exec:java -Dexec.mainClass="org.apache.tika.example.StandardsExtractionExample" -Dexec.args="/path/to/input" - * - * from the tika-example directory. - *

- */ -public class StandardsExtractionExample { - private static HashSet standardReferences = new HashSet<>(); - private static int failedFiles = 0; - private static int successfulFiles = 0; - - public static void main(String[] args) { - if (args.length < 1) { - System.err.println("Usage: " + StandardsExtractionExample.class.getName() + " /path/to/input"); - System.exit(1); - } - String pathname = args[0]; - - Path folder = Paths.get(pathname); - System.out.println("Searching " + folder.toAbsolutePath() + "..."); - processFolder(folder); - System.out.println(standardReferences.toString()); - System.out.println("Parsed " + successfulFiles + "/" + (successfulFiles + failedFiles)); - } - - public static void processFolder(Path folder) { - try { - Files.walkFileTree(folder, new SimpleFileVisitor() { - @Override - public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { - try { - process(file); - successfulFiles++; - } catch (Exception e) { - failedFiles++; - // ignore this file - } - return FileVisitResult.CONTINUE; - } - - @Override - public FileVisitResult visitFileFailed(Path file, IOException exc) throws IOException { - failedFiles++; - return FileVisitResult.CONTINUE; - } - }); - } catch (IOException e) { - // ignore failure - } - } - - public static void process(Path path) throws Exception { - Parser parser = new AutoDetectParser(); - Metadata metadata = new Metadata(); - // The StandardsExtractingContentHandler will examine any characters for - // standard references before passing them - // to the underlying Handler. - StandardsExtractingContentHandler handler = new StandardsExtractingContentHandler(new BodyContentHandler(-1), - metadata); - handler.setThreshold(0.75); - try (InputStream stream = new BufferedInputStream(Files.newInputStream(path))) { - parser.parse(stream, handler, metadata, new ParseContext()); - } - String[] references = metadata.getValues(StandardsExtractingContentHandler.STANDARD_REFERENCES); - Collections.addAll(standardReferences, references); - } -} \ No newline at end of file diff --git a/api/standards_extraction/src/org/apache/tika/sax/StandardsText.java b/api/standards_extraction/src/org/apache/tika/sax/StandardsText.java deleted file mode 100755 index e856540..0000000 --- a/api/standards_extraction/src/org/apache/tika/sax/StandardsText.java +++ /dev/null @@ -1,188 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.tika.sax; - -import java.util.ArrayList; -import java.util.Iterator; -import java.util.Map; -import java.util.Map.Entry; -import java.util.TreeMap; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -import org.apache.tika.sax.StandardReference.StandardReferenceBuilder; - -/** - * StandardText relies on regular expressions to extract standard references - * from text. - * - *

- * This class helps to find the standard references from text by performing the - * following steps: - *

    - *
  1. searches for headers;
  2. - *
  3. searches for patterns that are supposed to be standard references - * (basically, every string mostly composed of uppercase letters followed by an - * alphanumeric characters);
  4. - *
  5. each potential standard reference starts with score equal to 0.25;
  6. - *
  7. increases by 0.25 the score of references which include the name of a - * known standard organization ({@link StandardOrganizations});
  8. - *
  9. increases by 0.25 the score of references which include the word - * Publication or Standard;
  10. - *
  11. increases by 0.25 the score of references which have been found within - * "Applicable Documents" and equivalent sections;
  12. - *
  13. returns the standard references along with scores.
  14. - *
- *

- * - */ -public class StandardsText { - // Regular expression to match uppercase headers - private static final String REGEX_HEADER = "(\\d+\\.(\\d+\\.?)*)\\p{Blank}+([A-Z]+(\\s[A-Z]+)*){5,}"; - - // Regular expression to match the "APPLICABLE DOCUMENTS" and equivalent - // sections - private static final String REGEX_APPLICABLE_DOCUMENTS = "(?i:.*APPLICABLE\\sDOCUMENTS|REFERENCE|STANDARD|REQUIREMENT|GUIDELINE|COMPLIANCE.*)"; - - // Regular expression to match the alphanumeric identifier of the standard - private static final String REGEX_IDENTIFIER = "(?([0-9]{2,}|([A-Z]+(-|_|\\.)?[0-9]{2,}))((-|_|\\.)?[A-Z0-9]+)*)";//new line here?? - - // Regular expression to match the standard organization - private static final String REGEX_ORGANIZATION = StandardOrganizations.getOrganzationsRegex(); - - // Regular expression to match the type of publication, often reported - // between the name of the standard organization and the standard identifier - private static final String REGEX_STANDARD_TYPE = "(\\s(?i:Publication|Standard))"; - - // Regular expression to match a string that is supposed to be a standard - // reference - private static final String REGEX_FALLBACK = "\\(?" + "(?(([A-Z]+\\w+\\s?){1,10}))" - + "\\)?((\\s?(?\\/)\\s?)(\\w+\\s)*\\(?" + "(?[A-Z]+\\w+)" + "\\)?)?" - + REGEX_STANDARD_TYPE + "?" + "(-|\\s)?" + REGEX_IDENTIFIER; //or new line here?? - - // Regular expression to match the standard organization within a string - // that is supposed to be a standard reference - private static final String REGEX_STANDARD = ".*" + REGEX_ORGANIZATION + ".+" + REGEX_ORGANIZATION + "?.*"; - - /** - * Extracts the standard references found within the given text. - * - * @param text - * the text from which the standard references are extracted. - * @param threshold - * the lower bound limit to be used in order to select only the - * standard references with score greater than or equal to the - * threshold. For instance, using a threshold of 0.75 means that - * only the patterns with score greater than or equal to 0.75 - * will be returned. - * @return the list of standard references extracted from the given text. - */ - public static ArrayList extractStandardReferences(String text, double threshold) { - Map headers = findHeaders(text); - - ArrayList standardReferences = findStandards(text, headers, threshold); - - return standardReferences; - } - - /** - * This method helps to find the headers within the given text. - * - * @param text - * the text from which the headers are extracted. - * @return the list of headers found within the given text. - */ - private static Map findHeaders(String text) { - Map headers = new TreeMap(); - - Pattern pattern = Pattern.compile(REGEX_HEADER); - Matcher matcher = pattern.matcher(text); - - while (matcher.find()) { - headers.put(matcher.start(), matcher.group()); - } - - return headers; - } - - /** - * This method helps to find the standard references within the given text. - * - * @param text - * the text from which the standards references are extracted. - * @param headers - * the list of headers found within the given text. - * @param threshold - * the lower bound limit to be used in order to select only the - * standard references with score greater than or equal to the - * threshold. - * @return the list of standard references extracted from the given text. - */ - private static ArrayList findStandards(String text, Map headers, - double threshold) { - ArrayList standards = new ArrayList(); - double score = 0; - - Pattern pattern = Pattern.compile(REGEX_FALLBACK); - Matcher matcher = pattern.matcher(text); - - while (matcher.find()) { - StandardReferenceBuilder builder = new StandardReference.StandardReferenceBuilder( - matcher.group("mainOrganization"), matcher.group("identifier")) - .setSecondOrganization(matcher.group("separator"), matcher.group("secondOrganization")); - score = 0.25; - - // increases by 0.5 the score of references which include the name of a known standard organization - if (matcher.group().matches(REGEX_STANDARD)) { - score += 0.5; - } - - // increases by 0.25 the score of references which include the word "Publication" or "Standard" - if (matcher.group().matches(".*" + REGEX_STANDARD_TYPE + ".*")) { - score += 0.25; - } - - int startHeader = 0; - int endHeader = 0; - boolean headerFound = false; - Iterator> iterator = headers.entrySet().iterator(); - while (iterator.hasNext() && !headerFound) { - startHeader = endHeader; - endHeader = iterator.next().getKey(); - if (endHeader > matcher.start()) { - headerFound = true; - } - } - - String header = headers.get(startHeader); - - // increases by 0.25 the score of references which have been found within "Applicable Documents" and equivalent sections - if (header != null && headers.get(startHeader).matches(REGEX_APPLICABLE_DOCUMENTS)) { - score += 0.25; - } - - builder.setScore(score); - - if (score >= threshold) { - standards.add(builder.build()); - } - } - - return standards; - } -} \ No newline at end of file diff --git a/api/standards/data/standard_orgs.txt b/api/standards_extraction/standard_orgs.txt similarity index 100% rename from api/standards/data/standard_orgs.txt rename to api/standards_extraction/standard_orgs.txt diff --git a/api/standards_extraction/lib/tika-app-1.16.jar b/api/standards_extraction/tika-app-1.16.jar similarity index 100% rename from api/standards_extraction/lib/tika-app-1.16.jar rename to api/standards_extraction/tika-app-1.16.jar diff --git a/api/test_extract.py b/api/test_extract.py deleted file mode 100644 index 3d421f7..0000000 --- a/api/test_extract.py +++ /dev/null @@ -1,18 +0,0 @@ -import os -import json -import subprocess -from sklearn.neighbors import NearestNeighbors -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.preprocessing import normalize -import dill -import pandas as pd -from sklearn.feature_extraction import text -from standard_extractor import find_standard_ref -from text_analysis import extract_prep - -""" -TODO: 1) Run where ES is connected and do tests. - 2) exit() -""" -test = extract_prep.predict(in_text="test") -print(test) \ No newline at end of file diff --git a/api/text_analysis/create_elmo_for_all.py b/api/text_analysis/create_elmo_for_all.py deleted file mode 100644 index d63bdf5..0000000 --- a/api/text_analysis/create_elmo_for_all.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -create ELMO vectors for all the standards and save it: use multi-threading to make it fast -""" -import pandas as pd -import os -from api.text_analysis.elmo_util import * -import dask.dataframe as dd -import multiprocessing -import time - - -# standards_dir = '../standards/data' -# df=dd.read_csv(os.path.join(standards_dir,'iso_final_all_clean_text.csv')) # df=pd.read_csv(os.path.join(standards_dir,'iso_final_all_clean_text.csv'), index_col=0) -# df=df.compute() -# df=dd.from_pandas(df, npartitions=2*multiprocessing.cpu_count()) -# df=df[df['type']=='standard'].reset_index(drop=True) -# df=df.fillna('') -# df=df.map_partitions(lambda df: df.assign(usable_text=df['description_clean'] +' ' + df['title'])).compute() -# df=df.head(1000) -# df=df.reset_index() -# df_=df['usable_text'] -# df_=df_.reset_index() -# start = time.process_time() -# # https://stackoverflow.com/questions/40019905/how-to-map-a-column-with-dask -# df_=dd.from_pandas(df_, npartitions=2*multiprocessing.cpu_count()) -# df['elmo']=df_.usable_text.map(lambda usable_text: give_paragraph_elmo_vector(usable_text), meta=('usable_text', str)).compute() # df['elmo'] = df.apply(lambda row: give_paragraph_elmo_vector(row['usable_text']) , axis=1) -# print(time.process_time() - start) -# df.to_csv(os.path.join(standards_dir,'iso_final_all_clean_text_w_elmo.csv')) - -# the above code used dask to parallelize the operations for calculating elmo vectors. But this still uses the tf_hub on a paragraph basis. We can try one shot: - # -- sent-tokenize the paragraphs and maintain an array to track which sentences belong to which data points. - # -- give all sents at once to the tf_hub and extract the tokens then - # -- implemented the above in the elmo_utils.py - - -standards_dir = '../standards/data' -df=dd.read_csv(os.path.join(standards_dir,'iso_final_all_clean_text.csv')) # df=pd.read_csv(os.path.join(standards_dir,'iso_final_all_clean_text.csv'), index_col=0) -df=df.compute() -df=dd.from_pandas(df, npartitions=2*multiprocessing.cpu_count()) -df=df[df['type']=='standard'].reset_index(drop=True) -df=df.fillna('') -df=df.map_partitions(lambda df: df.assign(usable_text=df['description_clean'] +' ' + df['title'])).compute() -# df=df.head(100) -# df=df.reset_index() -df_splits = np.array_split(df, 31) - -for df_split in df_splits: - start = time.process_time() - df_split['elmo'] = give_paragraph_elmo_vector_multi(list(df_split['usable_text'])) - print(time.process_time() - start) -df=pd.concat(df_splits) -df.to_csv(os.path.join(standards_dir,'iso_final_all_clean_standards_text_w_elmo.csv')) -# merge all the splits now diff --git a/api/text_analysis/demo.py b/api/text_analysis/demo.py deleted file mode 100644 index 07d38e2..0000000 --- a/api/text_analysis/demo.py +++ /dev/null @@ -1,178 +0,0 @@ -from api.text_analysis.utils.hplotprecdict import * -from api.text_analysis.utils.utils import * -import pandas as pd -import os - -models_dir='../models/' -standards_dir='../standards/data/' -data_dir='data/' -output_dir='output/' -temp_dir='temp/' - -pos = loadmodel(models_dir + 'pos_') -graph = loadmodel(models_dir + 'graph') -text_sow=open(data_dir+'test_input_sow_text.txt','r').read() - -standards_df = pd.read_csv(os.path.join(standards_dir, 'iso_final_all_clean_standards_text_w_elmo.csv'), index_col=0) -standards_df = standards_df[standards_df['type'] == 'standard'].reset_index(drop=True) -standards_df.fillna('', inplace=True) -standards_df['id']=standards_df.index - -def print_items(inpt): - for item in inpt: - print(item[0], '||', item[1]) - -field_predictions_collect={} -print('starting to predict (bottom up)') -field_predictions=bottom_up_hpredict(text_sow, standards_df, pos, graph, algo='cosine-sim', plot_name=output_dir+'cosine_sim_hcat.html') -field_predictions_collect['cosine-sim']=field_predictions -print_items(field_predictions) -field_predictions=bottom_up_hpredict(text_sow, standards_df, pos, graph, algo='elmo-sim', plot_name=output_dir+'elmo_sim_hcat.html') -field_predictions_collect['elmo-sim']=field_predictions -print_items(field_predictions) -field_predictions=bottom_up_hpredict(text_sow, standards_df, pos, graph, algo='glove-sim', plot_name=output_dir+'glove_sim_hcat.html') -field_predictions_collect['glove-sim']=field_predictions -print_items(field_predictions) -field_predictions=bottom_up_hpredict(text_sow, standards_df, pos, graph, algo='w2v-sim', plot_name=output_dir+'w2v_sim_hcat.html') -field_predictions_collect['w2v-sim']=field_predictions -print_items(field_predictions) -savemodel(field_predictions_collect, 'field_predictions_collect') -exit() - -""" -Todos: --get top 50 from each type of recall algo, combine them and then create a heatmap for correlations between all the algorithms (recall and rerank) --also, find heat map of rankings of the categories for the recall algorithms --should we also try to remove the min/max from the vector glove and w2v - ---do the heatmaps for categories (4 algorithms) ---have a T-SNE for all the standards with their vectors (for fast 4 algorithms). Color based on categories and see which ones make most sense. -- complete the code below and create heatmaps for 7 algorithms - -- wmd calculations for the 7 algorithms are very slow. So we can use soft cosine. Implement it, since we cannot use the implementations - already there as they will not work for elmo. -""" - -import plotly.graph_objects as go -from plotly.offline import plot -from scipy import stats - -field_predictions_collect=loadmodel('field_predictions_collect') -algorithms=list(field_predictions_collect.keys()) -for algo in algorithms: - rankings=[item[1] for item in sorted(field_predictions_collect[algo], key=lambda x: x[0], reverse=True)] - field_predictions_collect[algo]=rankings - -result_matrix=np.zeros(shape=(len(algorithms),len(algorithms))) - -for i, algo_a in enumerate(algorithms): - for j, algo_b in enumerate(algorithms): - if algo_a==algo_b: - result_matrix[i][j]=1 - else: - tau, p_value = stats.weightedtau(field_predictions_collect[algo_a], field_predictions_collect[algo_b]) - result_matrix[i][j] = tau - - -fig = go.Figure(data=go.Heatmap( - z=result_matrix, - x=algorithms, - y=algorithms, - colorscale='aggrnyl', -reversescale=True)) - -plot(fig, filename=output_dir+'categorical_rankin_heatmap.html') -exit() - -import plotly.express as px -from sklearn.manifold import TSNE -from plotly.offline import plot - -vec_types=['elmo','w2v','glove'] -for vec in vec_types: - standards_df_mod=get_paragraph_vectors(standards_df, vec) - X = np.array(list(standards_df_mod[vec])) - print('data shape', X.shape) - - X_embedded = TSNE(n_components=2).fit_transform(X) - standards_df_mod['x_axis'] = X_embedded[:, 0] - standards_df_mod['y_axis'] = X_embedded[:, 1] - - fig = px.scatter(standards_df_mod, x='x_axis', y='y_axis', color="field") - plot(fig, filename=output_dir+'T_SNE_'+vec+'.html') - -exit() - -# collect top n Ids from each fast algorithm -collect_results={} -results_count=50 -algos=['cosine-sim', 'elmo-sim', 'w2v-sim', 'glove-sim'] -for algo in algos: - ids, distances, _, _= get_similar_standards(text_sow, standards_df, algo=algo) - collect_results[algo]=(ids[:results_count],distances[:results_count]) - print(ids, distances) - -savemodel(collect_results, temp_dir+'collect_results') -exit() - - -collect_results=loadmodel(temp_dir+'collect_results') -# merge all the Ids and rank using all slow and fast algorithms -all_ids=[] -for k,v in collect_results.items(): - ids=v[0] - all_ids+=ids - -standards_df_top=standards_df[standards_df['id'].isin(all_ids)] -standards_df_top=standards_df_top.reset_index() - -collect_results_2={} -algos=['w2v-wmd-sim', 'elmo-wmd-sim', 'glove-wmd-sim', 'cosine-sim', 'elmo-sim', 'w2v-sim', 'glove-sim'] -for algo in algos: - ids, distances, _, _= get_similar_standards(text_sow, standards_df_top, algo=algo) - collect_results_2[algo]=(ids, distances) - print(ids, distances) - -savemodel(collect_results_2, temp_dir+'collect_results_2') -exit() - - -# calculate pairwise (for each pair of algorithms) correlations of the rankings: -import plotly.graph_objects as go -from plotly.offline import plot -from scipy import stats - - -collect_results_2=loadmodel(temp_dir+'collect_results_2') -algorithms=list(collect_results_2.keys()) - -for algo in algorithms: - rankings=[item[1] for item in sorted(zip(collect_results_2[algo][0], collect_results_2[algo][1] ), key=lambda x: x[0])] - collect_results_2[algo]=rankings - -result_matrix=np.zeros(shape=(len(algorithms), len(algorithms))) - -for i, algo_a in enumerate(algorithms): - for j, algo_b in enumerate(algorithms): - if algo_a==algo_b: - result_matrix[i][j]=1 - else: - tau, p_value = stats.weightedtau(collect_results_2[algo_a], collect_results_2[algo_b]) - result_matrix[i][j] = tau - print(tau, algo_a, algo_b) - - -fig = go.Figure(data=go.Heatmap( - z=result_matrix, - x=algorithms, - y=algorithms, - colorscale='aggrnyl', - reversescale=True)) - -plot(fig, filename=output_dir+'algorithms_comparison_heatmap.html') -exit() - -""" -Note: the results above show that elmo-sim is most similar to elmo-wmd-sim, giving some confidence for having this as a recall algorithm. --Think about an two step algorithm. Use fast to get to an area and then do slow matches to find related ones around!! -""" \ No newline at end of file diff --git a/api/text_analysis/extract_prep.py b/api/text_analysis/extract_prep.py deleted file mode 100644 index ebbcba6..0000000 --- a/api/text_analysis/extract_prep.py +++ /dev/null @@ -1,140 +0,0 @@ -import json -import os -import pathlib -import subprocess -from collections import deque -import numpy as np -import dill -import pandas as pd -from elasticsearch import Elasticsearch -from elasticsearch.helpers import scan -from pandas.io.json import json_normalize -from sklearn.feature_extraction import text -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.neighbors import NearestNeighbors -from sklearn.preprocessing import normalize -from standard_extractor import find_standard_ref -from web_utils import connect_to_es -from text_analysis.prepare_h_cat import clean_ngram -import time - - -def parse_text(filepath): - if os.path.exists(filepath + "_parsed.txt"): - # todo: remove this. Caches the parsed text. - return str(open(filepath + "_parsed.txt", "r").read()) - - bashCommand = "java -jar standards_extraction/lib/tika-app-1.16.jar -t " + filepath - output = "" - try: - output = subprocess.check_output(["bash", "-c", bashCommand]) - # file = open(filepath + "_parsed.txt", "wb") - # file.write(output) - # file.close() - except subprocess.CalledProcessError as e: - print(e.output) - return str(output) - - -def transfrom(df): - df = df.reset_index(drop=True) - df.fillna("", inplace=True) - print("shape") - print(df.shape) - tfidftransformer = TfidfVectorizer( - ngram_range=(1, 1), stop_words=text.ENGLISH_STOP_WORDS - ) - # start = time.time() - # df["description_clean"] = df["description"].apply( - # lambda x: " ".join(clean_ngram(x)) - # ) - # end = time.time() - start - # print(end) - X = tfidftransformer.fit_transform( - [m + " " + n for m, n in zip(df["description"], df["title"])] - ) - print("shape", X.shape) - X = normalize(X, norm="l2", axis=1) - nbrs_brute = NearestNeighbors( - n_neighbors=X.shape[0], algorithm="brute", metric="cosine" - ) - print("fitting") - nbrs_brute.fit(X.todense()) - print("fitted") - return tfidftransformer, X, nbrs_brute - - -def predict(file=None, in_text=None, size=10, read="feather"): - """ - Predict recommendations given text or pdf file. - Fields in the dataframe: - ['id', - 'raw_id', - 'doc_number', - 'description', - 'status', - 'technical_committee', - 'text', - 'title', - 'published_date', - 'isbn', - 'url', - 'ingestion_date', - 'hash', - 'sdo.iso.code', - 'sdo.iso.field', - 'sdo.iso.group', - 'sdo.iso.subgroup', - 'sdo.iso.edition', - 'sdo.iso.number_of_pages', - 'sdo.iso.section_titles', - 'sdo.iso.sections', - 'sdo.iso.type', - 'sdo.iso.preview_url', - 'category.ics'] - """ - if file: - if file.filename == "": - raise ValueError("No selected file!") - in_text = parse_text(file.filename) - - # Get text from form - # file = open("temp_text", "w") - # file.write(str(new_text.encode("utf-8", "ignore"))) - # file.flush() - # file.close() - if read == "es": - # Connect to Elasticsearch - es, idx_main, idx_log, idx_stats = connect_to_es() - res = list(scan(es, query={}, index=idx_main)) - output_all = deque() - output_all.extend([x["_source"] for x in res]) - df = json_normalize(output_all) - if read == "feather": - df = pd.read_feather("/app/data/feather_text") - - tfidftransformer, X, nbrs_brute = transfrom(df) - - result = {} - result["recommendations"] = [] - sow = tfidftransformer.transform([in_text]) - sow = normalize(sow, norm="l2", axis=1) - - # This is memory intensive. - distances, indices = nbrs_brute.kneighbors(sow.todense()) - print(distances) - distances = list(distances[0]) - indices = list(indices[0]) - - for indx, dist in zip(indices[:size], distances[:size]): - st_id = df.iloc[indx]["id"] - result["recommendations"].append( - { - "sim": 100 * round(1 - dist, 21), - "id": st_id, - } - ) - print(st_id) - print("debugging...") - print(result) - return result diff --git a/api/text_analysis/old_extract_prep.py b/api/text_analysis/old_extract_prep.py deleted file mode 100644 index 7acc7fd..0000000 --- a/api/text_analysis/old_extract_prep.py +++ /dev/null @@ -1,229 +0,0 @@ -import os -import json -import subprocess -from sklearn.neighbors import NearestNeighbors -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.preprocessing import normalize -import dill -import pandas as pd -from sklearn.feature_extraction import text -from standard_extractor import find_standard_ref -import pathlib -from elasticsearch import Elasticsearch -from web_utils import connect_to_es - - -# Connect to Elasticsearch -es, idx_main, idx_log, idx_stats = connect_to_es() - - -def parse_text(filepath): - if os.path.exists(filepath + "_parsed.txt"): - # todo: remove this. Caches the parsed text. - return str(open(filepath + "_parsed.txt", "r").read()) - - bashCommand = "java -jar standards_extraction/lib/tika-app-1.16.jar -t " + filepath - output = "" - try: - output = subprocess.check_output(["bash", "-c", bashCommand]) - file = open(filepath + "_parsed.txt", "wb") - file.write(output) - file.close() - except subprocess.CalledProcessError as e: - print(e.output) - return str(output) - - -def transfrom(df): - df = df[df["type"] == "standard"].reset_index(drop=True) - df.fillna("", inplace=True) - tfidftransformer = TfidfVectorizer( - ngram_range=(1, 1), stop_words=text.ENGLISH_STOP_WORDS - ) - X = tfidftransformer.fit_transform( - [m + " " + n for m, n in zip(df["description_clean"], df["title"])] - ) - X = normalize(X, norm="l2", axis=1) - nbrs_brute = NearestNeighbors( - n_neighbors=X.shape[0], algorithm="brute", metric="cosine" - ) - nbrs_brute.fit(X.todense()) - return tfidftransformer, X, nbrs_brute - - -def predict_from_es(file=None, text=None, size=10): - if file: - if file.filename == "": - return "No selected file!" - new_text = parse_text(file.filename) - - else: - # Get text from form - new_text = text - file = open("temp_text", "w") - file.write(str(new_text.encode("utf-8", "ignore"))) - file.flush() - file.close() - res = es.search(index=idx_main, body={"query": {"match_all": {}}}) - df = pd.concat(map(pd.DataFrame.from_dict, res), axis=1)["fields"].T - print(df) - exit() - tfidftransformer, X, nbrs_brute = transfrom(df) - - standard_refs = find_standard_ref(new_text) - result = {} - result["embedded_references"] = standard_refs - result["recommendations"] = [] - sow = tfidftransformer.transform([new_text]) - sow = normalize(sow, norm="l2", axis=1) - - distances, indices = nbrs_brute.kneighbors(sow.todense()) - print(distances) - distances = list(distances[0]) - indices = list(indices[0]) - - for indx, dist in zip(indices[:size], distances[:size]): - title = df.iloc[indx]["title"] - description = df.iloc[indx]["description"] - link = df.iloc[indx]["link"] - standard_code = df.iloc[indx]["standard"] - standard_id = df.iloc[indx]["id"] - code = df.iloc[indx]["code"] - tc = df.iloc[indx]["tc"] - result["recommendations"].append( - { - "sim": 100.0 * round(1 - dist, 2), - "raw_id": standard_id, - "code": code, - } - ) - return result - - -def predict_test(file=None, in_text=None): - dirPath = str(pathlib.Path(__file__).parent.absolute()) - - standards_dir = dirPath + "/../standards/data" - json_output_dir = "output" - models_dir = "models" - - # TODO: Fix this line - # df = pd.concat(map(pd.DataFrame.from_dict, res), axis=1) - df = pd.read_csv( - os.path.join(standards_dir, "iso_final_all_clean_text.csv"), index_col=0 - ) - print(df) - exit() - - -def predict(file=None, in_text=None, size=10): - dirPath = str(pathlib.Path(__file__).parent.absolute()) - - standards_dir = dirPath + "/../standards/data" - json_output_dir = "output" - models_dir = "models" - - # TODO: Fix this line - # df = pd.concat(map(pd.DataFrame.from_dict, res), axis=1) - df = pd.read_csv( - os.path.join(standards_dir, "iso_final_all_clean_text.csv"), index_col=0 - ) - # print(df2) - df = df[df["type"] == "standard"].reset_index(drop=True) - df.fillna("", inplace=True) - print("shape") - print(df.shape) - tfidftransformer = TfidfVectorizer( - ngram_range=(1, 1), stop_words=text.ENGLISH_STOP_WORDS - ) - X = tfidftransformer.fit_transform( - [m + " " + n for m, n in zip(df["description_clean"], df["title"])] - ) # using both desc and tile to predict - # tfidftransformer = TfidfVectorizer(ngram_range=(1,1)) - # X = tfidftransformer.fit_transform([m+' '+n for m, n in zip(df['description'], df['title'])]) # using both desc and tile to predict - print("shape", X.shape) - X = normalize(X, norm="l2", axis=1) - nbrs_brute = NearestNeighbors( - n_neighbors=X.shape[0], algorithm="brute", metric="cosine" - ) - print("fitting") - nbrs_brute.fit(X.todense()) - print("fitted") - - # How do we get request.file - new_text = "" - # ======================== find the referenced standards - filename = "temp_text" - # check if the post request has the file part - if file: - print("made it to the PDF part") - # INSERT FILES OBJECT HERE - # file = files['file'] - # if user does not select file, browser also - # submit a empty part without filename - if file.filename == "": - return "no selected file!" - # return redirect(request.url) - if file: - filename = file.filename - ### Save the file - new_text = parse_text(filename) - print("parsed") - else: - # get text from form - new_text = in_text - file = open(filename, "w") - file.write(str(new_text.encode("utf-8", "ignore"))) - file.flush() - file.close() - - print("extracting standards") - # standard_refs=extract_standard_ref(filename) - standard_refs = find_standard_ref(new_text) - print("standards extracted") - - # ======================== find the recommended standards - - result = {} - result["embedded_references"] = standard_refs - result["recommendations"] = [] - - sow = tfidftransformer.transform([new_text]) - sow = normalize(sow, norm="l2", axis=1) - - print("scoring standards") - distances, indices = nbrs_brute.kneighbors(sow.todense()) - distances = list(distances[0]) - indices = list(indices[0]) - - for indx, dist in zip(indices[:size], distances[:size]): - title = df.iloc[indx]["title"] - description = df.iloc[indx]["description"] - link = df.iloc[indx]["link"] - standard_code = df.iloc[indx]["standard"] - standard_id = df.iloc[indx]["id"].replace("~", "") - code = df.iloc[indx]["code"].replace("~", "") - tc = df.iloc[indx]["tc"] - type_standard = ["Information Technology"] - - # TODO: this code calculates the word importances for the top results (slows the operation, hence commented) - # print(title) - # print(description) - # - # to_print = [ - # tfidftransformer.get_feature_names()[i] - # + ' ' + - # str(abs(np.array(sow[0].todense()).flatten()[i] - np.array(X[indx].todense()).flatten()[i])) - # for i in set(sow.indices).intersection(X[indx].indices)] - # print(' || '.join(to_print), '\n') - - result["recommendations"].append( - { - "sim": 100 * round(1 - dist, 21), - "raw_id": standard_id, - "code": code, - } - ) - print("Make sure it's an error here and not in ES.") - print(result) - return result diff --git a/api/text_analysis/output/T_SNE_elmo.html b/api/text_analysis/output/T_SNE_elmo.html deleted file mode 100644 index 2dd4603..0000000 --- a/api/text_analysis/output/T_SNE_elmo.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/output/T_SNE_glove.html b/api/text_analysis/output/T_SNE_glove.html deleted file mode 100644 index 816dc4c..0000000 --- a/api/text_analysis/output/T_SNE_glove.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/output/T_SNE_w2v.html b/api/text_analysis/output/T_SNE_w2v.html deleted file mode 100644 index e9f5183..0000000 --- a/api/text_analysis/output/T_SNE_w2v.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/output/algorithms_comparison_heatmap.html b/api/text_analysis/output/algorithms_comparison_heatmap.html deleted file mode 100644 index 0500d4e..0000000 --- a/api/text_analysis/output/algorithms_comparison_heatmap.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/output/categorical_rankin_heatmap.html b/api/text_analysis/output/categorical_rankin_heatmap.html deleted file mode 100644 index fc70a4d..0000000 --- a/api/text_analysis/output/categorical_rankin_heatmap.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/output/cosine_sim_hcat.html b/api/text_analysis/output/cosine_sim_hcat.html deleted file mode 100644 index cbf5cee..0000000 --- a/api/text_analysis/output/cosine_sim_hcat.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/output/elmo_sim_hcat.html b/api/text_analysis/output/elmo_sim_hcat.html deleted file mode 100644 index f81ed2f..0000000 --- a/api/text_analysis/output/elmo_sim_hcat.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/output/glove_sim_hcat.html b/api/text_analysis/output/glove_sim_hcat.html deleted file mode 100644 index 915e581..0000000 --- a/api/text_analysis/output/glove_sim_hcat.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/output/w2v_sim_hcat.html b/api/text_analysis/output/w2v_sim_hcat.html deleted file mode 100644 index c5d145c..0000000 --- a/api/text_analysis/output/w2v_sim_hcat.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -
- - - -
- -
- - \ No newline at end of file diff --git a/api/text_analysis/prepare_h_cat.py b/api/text_analysis/prepare_h_cat.py deleted file mode 100644 index da583ce..0000000 --- a/api/text_analysis/prepare_h_cat.py +++ /dev/null @@ -1,148 +0,0 @@ -""" -This is code to prepare for the analysis of standard/text retrieval based on hierarchical categorization -""" - -import ast -import re -import string -import dill -import networkx as nx -import pandas as pd -from sklearn.feature_extraction import text -import spacy - - -def to_string(ar): - return str(ar) - - -def to_array(sr): - return ast.literal_eval(sr) - - -def savemodel(model, outfile): - with open(outfile, "wb") as output: - dill.dump(model, output) - return "" - - -def loadmodel(infile): - with open(infile, "rb") as inp: - model = dill.load(inp) - return model - - -def hasNumbers(str): - return bool(re.search(r"\d", str)) - - -def ispun(str): - if str in string.punctuation: - return True - else: - return False - - -def clean_ngram(doc): - try: - nlp = spacy.load("en_core_web_sm") - except OSError: - print("run `python -m spacy download en_core_web_sm`") - - stop_words = text.ENGLISH_STOP_WORDS - for w in nlp(doc): - if ( - w.ent_type_ not in ["DATE", "TIME", "GPE", "PERSON", "CARDINAL"] - and not hasNumbers(w.text) - and not ispun(w.text) - and w.text not in stop_words - and w.pos_ == "NOUN" - ): - yield w.lemma_.lower() - - -def hierarchy_pos(G, root, levels=None, width=1.0, height=1.0): - """If there is a cycle that is reachable from root, then this will see infinite recursion. - G: the graph - root: the root node - levels: a dictionary - key: level number (starting from 0) - value: number of nodes in this level - width: horizontal space allocated for drawing - height: vertical space allocated for drawing""" - TOTAL = "total" - CURRENT = "current" - - def make_levels(levels, node=root, currentLevel=0, parent=None): - """Compute the number of nodes for each level""" - if not currentLevel in levels: - levels[currentLevel] = {TOTAL: 0, CURRENT: 0} - levels[currentLevel][TOTAL] += 1 - neighbors = list(G.neighbors(node)) - for neighbor in neighbors: - if not neighbor == parent: - levels = make_levels(levels, neighbor, currentLevel + 1, node) - return levels - - def make_pos(pos, node=root, currentLevel=0, parent=None, vert_loc=0): - dx = 1 / levels[currentLevel][TOTAL] - left = dx / 2 - pos[node] = ((left + dx * levels[currentLevel][CURRENT]) * width, vert_loc) - levels[currentLevel][CURRENT] += 1 - neighbors = G.neighbors(node) - for neighbor in neighbors: - if not neighbor == parent: - pos = make_pos( - pos, neighbor, currentLevel + 1, node, vert_loc - vert_gap - ) - return pos - - if levels is None: - levels = make_levels({}) - else: - levels = {l: {TOTAL: levels[l], CURRENT: 0} for l in levels} - vert_gap = height / (max([l for l in levels]) + 1) - return make_pos({}) - - -# ================================= create an graph/tree (DAG) using the data in csv - - -def main(): - df = pd.read_csv("iso_final_all.csv", index_col=0) - ics_dict_general = loadmodel("ics_dict_general") - - graph = nx.DiGraph() - for k, v in ics_dict_general.items(): - for v_ in v: - graph.add_edge(k, v_) - entry = df[df["id_"] == k].values - info = {} - if len(entry) != 0: - info = {key: val for key, val in zip(df.columns, entry[0])} - nx.set_node_attributes(graph, {k: info}) - - entry = df[df["id_"] == v_].values - info = {} - if len(entry) != 0: - info = {key: val for key, val in zip(df.columns, entry[0])} - nx.set_node_attributes(graph, {v_: info}) - - savemodel(graph, "graph") - # print(graph.nodes(data=True)) - - # ================================= plot the positions for each node and edge (hierarchical plot) - pos = hierarchy_pos(graph, "~-1") - savemodel(pos, "pos_") - # print(pos) - - exit() - - # ============================== clean the descriptions and add to the csv - df = pd.read_csv("iso_final_all.csv", index_col=0) - df.fillna("", inplace=True) - df["description_clean"] = df["description"].apply( - lambda x: " ".join(clean_ngram(x)) - ) - df.to_csv("iso_final_all_clean_text.csv") - exit() diff --git a/api/text_analysis/research_code/Soft_Cosine_class.py b/api/text_analysis/research_code/Soft_Cosine_class.py deleted file mode 100644 index 92bd088..0000000 --- a/api/text_analysis/research_code/Soft_Cosine_class.py +++ /dev/null @@ -1,176 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Jan 21 16:12:23 2020 - -@author: SParravano -""" - -import gensim - -from sklearn.feature_extraction.text import CountVectorizer -from sklearn.metrics.pairwise import cosine_similarity - -from nltk.tokenize import word_tokenize -import string -import numpy as np - -from scipy import spatial -import time - - -# %% -class soft_cosine: - def __init__(self, project): - self.project = project - print('Thank you for using the Soft_Cosine class for Project: ' + self.project) - - def soft_cosine_prep(self, ordered_list_features, word_embeddings, similarity_threshold=0): - Global_start_time = time.time() - print('##########') - # print('Step one: Tokenizing our corpus..') - # list_of_tokens=[word_tokenize(x) for x in corpus] - # we can flatten out the list - # list_of_tokens=list(set(list([item for sublist in list_of_tokens for item in sublist]))) - list_of_tokens = list(ordered_list_features) - - # we can use our word2vec embeddings to look up the dense vector representations of each of our features - print('Creating Dictionary to look up our word embeddings..') - dict_ = {} - for token_ in list_of_tokens: - key_ = str(token_) - value_ = word_embeddings[token_] - dict_.update({key_: value_}) - - # let's build out our similarity matrix of dense word vectors - # The matrix should be of sixe n x n where n is the number of features (tokens) - # We should also expect our similarity matrix to be symmetric with diagonal values of 1 - print('Creating similarity matrix to compute sim i,j scores for our features') - A = np.empty([len(dict_), len(dict_[key_])]) - counter_ = 0 - for key in dict_: - A[counter_] = (np.array(dict_[key])) - counter_ += 1 - - # we can now compute the pairwise similarities of each of our features using cosine similarity - similarity_matrix = cosine_similarity(A) - - print('Storing pairwise similarity scores in a Dictionary..') - # we can store these in a dictionary - similarity_dict = {} - keys_list = list(dict_.keys()) - counter_ = 0 - for x in range(len(keys_list)): - for y in range(len(keys_list)): - key_ = keys_list[x] + '_' + keys_list[y] - value_ = similarity_matrix[x, y] - similarity_dict.update({key_: value_}) - # similarity threshold step... it's easy to see from the math that the soft cosine is - # susceptible to over estimating the true siilarity betweeen documents by including similarity - # terms between features that are not really realted. By viture of how word vectors are represetend - # two words that are NOT similar will still yield a similarity score > 0. To combat this we can - # introduce a threshold. Scores below the threshold will be encoded to 0. Deciding what the threshold should - # be is another problem. A solution is not proposed her but for now the practitioner will pass it as a - # parameter. - if similarity_threshold == 0: - pass - else: - print('Updating pairwise similarity scores to account for the user inputted similarity threshold.') - for x in similarity_dict: - if similarity_dict[x] < similarity_threshold: - similarity_dict[x] = 0 - - print('Returning Similarity Dictionary and Word Embedding Dictionary') - Global_time_end = time.time() - total_time = Global_time_end - Global_start_time - print('Our prep was completed in:', str(total_time)) - print('##########') - print('\n') - return (similarity_dict, dict_) - - # given two documents we have been studying.. - - def soft_cosine(self, ordered_list_features, word_embedding_dictionary, similarity_dictionary, doc1, doc2): - Global_start_time = time.time() - # keys_list=list(word_embedding_dictionary.keys()) - keys_list = ordered_list_features - print('##########') - print('Starting Vector Math Computations...') - dot_product_sum = 0 - for i in range(len(keys_list)): - for j in range(len(keys_list)): - sim_i_j_string = keys_list[i] + '_' + keys_list[j] - sim_i_j = similarity_dictionary[sim_i_j_string] - dot_prod_element_i_j = sim_i_j * doc1[i] * doc2[j] - dot_product_sum += dot_prod_element_i_j - if dot_prod_element_i_j!=0: - print(keys_list[i],keys_list[j],sim_i_j, dot_prod_element_i_j) - - print('boop', dot_product_sum) - norm_a_sum = 0 - for i in range(len(keys_list)): - for j in range(len(keys_list)): - sim_i_j_string = keys_list[i] + '_' + keys_list[j] - sim_i_j = similarity_dictionary[sim_i_j_string] - dot_prod_element_i_j = sim_i_j * doc1[i] * doc1[j] - norm_a_sum += dot_prod_element_i_j - if dot_prod_element_i_j!=0: - print(keys_list[i],keys_list[j],sim_i_j) - - print('boop', norm_a_sum) - - norm_b_sum = 0 - for i in range(len(keys_list)): - for j in range(len(keys_list)): - sim_i_j_string = keys_list[i] + '_' + keys_list[j] - sim_i_j = similarity_dictionary[sim_i_j_string] - dot_prod_element_i_j = sim_i_j * doc2[i] * doc2[j] - norm_b_sum += dot_prod_element_i_j - if dot_prod_element_i_j!=0: - print(keys_list[i],keys_list[j],sim_i_j, dot_prod_element_i_j) - - print('boop', norm_b_sum) - - soft_cosine = dot_product_sum / ((norm_a_sum ** 0.5) * (norm_b_sum) ** 0.5) - # print('Norm a sum:',norm_a_sum,'Norm b sum:',norm_b_sum,'Dot product:',dot_product_sum,'sotft_cosine:',soft_cosine) - Global_time_end = time.time() - total_time = Global_time_end - Global_start_time - print('Our result was calculated in:', str(total_time)) - print('Soft Cosine Score:', str(soft_cosine)) - print('##########') - print('\n') - return (soft_cosine) - - def soft_cosine_mod(self, first_sent_tokens, second_sent_tokens, first_sent_wordvecs, second_sent_wordvecs): - - dot_product_sum = 0 - for token_a in first_sent_tokens: - for token_b in second_sent_tokens: - cosine_sim = self.cos_similarity(first_sent_wordvecs[token_a], second_sent_wordvecs[token_b]) - dot_product_sum += cosine_sim - print(token_a, token_b, cosine_sim) - - norm_a_sum = 0 - for token_a in first_sent_tokens: - for token_b in first_sent_tokens: - cosine_sim = self.cos_similarity(first_sent_wordvecs[token_a], first_sent_wordvecs[token_b]) - norm_a_sum += cosine_sim - print(token_a, token_b, cosine_sim) - - norm_b_sum = 0 - for token_a in second_sent_tokens: - for token_b in second_sent_tokens: - cosine_sim = self.cos_similarity(second_sent_wordvecs[token_a], second_sent_wordvecs[token_b]) - norm_b_sum += cosine_sim - print(token_a, token_b, cosine_sim) - - - soft_cosine = dot_product_sum / ((norm_a_sum ** 0.5) * (norm_b_sum) ** 0.5) - return (soft_cosine) - - def cos_similarity(self, vect1, vect2): - dot_product = np.dot(vect1, vect2) - norm1 = np.linalg.norm(vect1) - norm2 = np.linalg.norm(vect2) - similarity = dot_product / (norm1 * norm2) - return (similarity) -# %% diff --git a/api/text_analysis/research_code/Soft_Cosine_test.py b/api/text_analysis/research_code/Soft_Cosine_test.py deleted file mode 100644 index 811bb95..0000000 --- a/api/text_analysis/research_code/Soft_Cosine_test.py +++ /dev/null @@ -1,98 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Created on Tue Jan 21 10:24:08 2020 - -@author: SParravano -""" -dir_path = '/dsdata/Soft_Cosine' - -# %% -import os - -import gensim - -from sklearn.feature_extraction.text import CountVectorizer -from sklearn.metrics.pairwise import cosine_similarity - -from nltk.tokenize import word_tokenize -import string -import numpy as np - -from scipy import spatial - -import api.text_analysis.research_code.Soft_Cosine_class as soft_cosine_1 -from api.text_analysis.utils.soft_cosine import * -import time - -# %% -from api.text_analysis.utils.word_vectors import * -# In the absence of copious training data we can utilize the pre-trained word embeddings. Google trained their model -# utilizing a Google News dataset with roughly 100 billion words. The vector length is 300 features -# pre_trained = os.path.join(dir_path, 'GoogleNews-vectors-negative300.bin') -# word_vectors = gensim.models.KeyedVectors.load_word2vec_format(pre_trained, binary=True) - -word_vectors=load_model('w2v') -# %% - -# let's first instantiate our custom built class that conatains the methods we need to perform our vector math -vector_math = soft_cosine_1.soft_cosine('Soft Cosine test Example') -# let's imagine we have 2 documents: -a = ['The woman is extremely ill'] -b = ['The man is very sick'] - -corpus = a + b - -# we frist instantiate the contVectorizer class --> this will enable us to create the vector space -# for our corpus -vectorizer = CountVectorizer(binary=True, min_df=1) -vectors_ = vectorizer.fit_transform(corpus) - -ordered_list_features = vectorizer.get_feature_names() -if vectors_.toarray().shape[0] < 50: - print('Below is our vocabulary. Thesve festures define our vector space..') - print(ordered_list_features) - print('Here is the vector representation of the documents in our corpus') - print(vectors_.toarray()) -else: - pass - -text_to_print = ''' -Using plain vanilla cosine similarity we can directly compute the similarity of our two documents while ignoring any -similarities between features. -''' -print(text_to_print) -print('Here are the results:') -# print(cosine_similarity(vectors_)) #this computes the similarity matrix. Overkill and not needed - -# we can compute the cosinfe similarity -vectors_array = vectors_.toarray() -doc1 = vectors_array[0] -doc2 = vectors_array[1] - -similarity_cosine = vector_math.cos_similarity(doc1, doc2) -print(similarity_cosine) -# %% -text_to_print2 = ''' -Now we transition to a different approach. Can we somehow capture the similarity between features? -extremely and very are similar words, and that should be accounted for. Sick and ill -point ot the same meaning and that also should be part of the calculus here... Man and person are intimately -related concepts as well, and that should be factored into our math. A human reader would be able to recgognize -the two documents as being intrisincally realted; almost identical! Our traditional vector math approach fails to identify this -relationship. This is because features that are not the same are orthoganal! Let's try to correct for this. -''' -print(text_to_print2) - -similarity_dictionary, word_embedding_dictionary = vector_math.soft_cosine_prep( - ordered_list_features=ordered_list_features, - word_embeddings=word_vectors, - similarity_threshold=0) - -print(similarity_dictionary) -soft_cosine_score = vector_math.soft_cosine(ordered_list_features=ordered_list_features, - word_embedding_dictionary=word_embedding_dictionary, - similarity_dictionary=similarity_dictionary, - doc1=doc1, - doc2=doc2) -print('score',soft_cosine_score) -soft_cosine_score= soft_cosine(a[0].lower().split(), b[0].lower().split(), word_vectors, word_vectors) -print('score', soft_cosine_score) diff --git a/api/text_analysis/research_code/elmo.py b/api/text_analysis/research_code/elmo.py deleted file mode 100644 index d1b3888..0000000 --- a/api/text_analysis/research_code/elmo.py +++ /dev/null @@ -1,118 +0,0 @@ -""" -This is research code to try out Elmo implementations -""" - -# ====================================================================================================================== -## get elmo vectors using allennlp -# ====================================================================================================================== - -# from allennlp.commands.elmo import ElmoEmbedder -# elmo = ElmoEmbedder() -# tokens = ["I", "ate", "an", "apple", "for", "breakfast"] -# vectors = elmo.embed_sentence(tokens) -# -# import scipy -# vectors2 = elmo.embed_sentence(["I", "ate", "a", "carrot", "for", "breakfast"]) -# scipy.spatial.distance.cosine(vectors[2][3], vectors2[2][3]) # cosine distance between "apple" and "carrot" in the last layer - - -# ====================================================================================================================== -## get elmo vectors using tensorflow-hub -# ====================================================================================================================== - -# import tensorflow_hub as hub -# import tensorflow.compat.v1 as tf -# import numpy as np -# # To make tf 2.0 compatible with tf1.0 code, we disable the tf2.0 functionalities -# # https://github.com/tensorflow/hub/issues/350 -# tf.disable_eager_execution() -# -# elmo = hub.Module("https://tfhub.dev/google/elmo/2") -# -# # just a random sentence -# x = ["Roasted ants are a popular snack in Columbia"] -# -# # Extract ELMo features -# embeddings = elmo(x, signature="default", as_dict=True)["elmo"] -# -# -# print(embeddings.shape) -# print(embeddings) -# -# with tf.Session() as session: -# session.run([tf.global_variables_initializer(), tf.tables_initializer()]) -# numpy_arr = session.run(embeddings) -# -# print(numpy_arr) - - - -# ====================================================================================================================== -## WMD using PulP solver, modified to use ELMO vectors -# ====================================================================================================================== -import tensorflow_hub as hub -import tensorflow.compat.v1 as tf -from api.text_analysis.elmo_util import * -from scipy.spatial import distance - -# To make tf 2.0 compatible with tf1.0 code, we disable the tf2.0 functionalities -# https://github.com/tensorflow/hub/issues/350 -tf.disable_eager_execution() - -elmo = hub.Module("https://tfhub.dev/google/elmo/2") - - -# sentence_A = 'Obama speaks to the media in Illinois' -# sentence_B = 'The president greets the press in Chicago' - -# sentence_A = 'our bank is the best financial institution know to us' -# sentence_B = 'the bank of this river is overflowing' -# sentence_C = 'bank has agreed to give us money' - -sentence_A = 'the release of this version of the tool is upon us' -sentence_B = 'the gases released in the atmosphere are giving rise to global warming' -sentence_C = 'I released this chemical yesterday' -# sentence_C = 'I released this movie yesterday' - - -sentences=[sentence_A, sentence_B, sentence_C] - -embeddings = elmo(sentences, signature="default", as_dict=True)["elmo"] - -print(embeddings.shape) - -with tf.Session() as session: - session.run([tf.global_variables_initializer(), tf.tables_initializer()]) - numpy_arr = session.run(embeddings) - -# print(numpy_arr) - -wordvecs={} -sentences_tokens=[] -for i,sent in enumerate(sentences): - sentence_tokens=[] - for j,token in enumerate(sent.lower().split()): - sentence_tokens.append(token+'_~_'+str(i)) - wordvecs[token+'_~_'+str(i)]=numpy_arr[i][j] - sentences_tokens.append(sentence_tokens) - -# # test the distances between word vectors generated based on context -# print(distance.euclidean(wordvecs['bank_~_0'],wordvecs['bank_~_1'])) -# print(distance.euclidean(wordvecs['bank_~_1'],wordvecs['bank_~_2'])) -# print(distance.euclidean(wordvecs['bank_~_2'],wordvecs['bank_~_3'])) -# exit() - -# print(distance.euclidean(wordvecs['release_~_0'],wordvecs['released_~_1'])) -# print(distance.euclidean(wordvecs['released_~_1'],wordvecs['released_~_2'])) -# print(distance.euclidean(wordvecs['released_~_2'],wordvecs['release_~_0'])) -# exit() - -# print(wordvecs) - - - -prob = word_mover_distance_probspec(sentences_tokens[1], sentences_tokens[2], wordvecs) -print(pulp.value(prob.objective)) -for v in prob.variables(): - if v.varValue!=0: - print(v.name, '=', v.varValue) \ No newline at end of file diff --git a/api/text_analysis/research_code/h_cat.py b/api/text_analysis/research_code/h_cat.py deleted file mode 100644 index fe93b77..0000000 --- a/api/text_analysis/research_code/h_cat.py +++ /dev/null @@ -1,216 +0,0 @@ -""" -This is code to do analysis of standard/text retrieval based on hierarchical categorization -""" - -import ast -import re -import statistics -import string -import dill -import networkx as nx -import numpy as np -import pandas as pd -import plotly.graph_objs as go -import plotly.offline -from sklearn.feature_extraction import text -import spacy - -from sklearn.neighbors import NearestNeighbors -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.preprocessing import normalize - - - -def savemodel(model, outfile): - with open(outfile, 'wb') as output: - dill.dump(model, output) - return '' - - -def loadmodel(infile): - with open(infile, 'rb') as inp: - model = dill.load(inp) - return model - -models_dir='../../models/' -data_dir='../../standards/data/' -input_dir='../../SOW_txts/' -output_dir='../../output/' -input_file='../data/test_input_sow_text.txt' - -# ============================== predict/rank all the standards (last level of the tree) -# and show the top ranking ones - -df=pd.read_csv(data_dir+'iso_final_all_clean_text.csv',index_col=0) -df=df[df['type']=='standard'].reset_index(drop=True) -df.fillna('', inplace=True) - -tfidftransformer=TfidfVectorizer(ngram_range=(1,1), stop_words=text.ENGLISH_STOP_WORDS) -X=tfidftransformer.fit_transform([m+' '+n for m, n in zip(df['description_clean'], df['title'])]) # using both desc and tile to predict -print('shape', X.shape) - -X=normalize(X, norm='l2', axis=1) -nbrs_brute = NearestNeighbors(n_neighbors=X.shape[0], algorithm='brute', metric='cosine') - -print('fitting') -nbrs_brute.fit(X.todense()) -print('fitted') - -# del(X) -# gc.collect() - -sow=open(input_file,'r').read() -sow=tfidftransformer.transform([sow]) -sow=normalize(sow, norm='l2', axis=1) - -print('scoring standards') -distances, indices=nbrs_brute.kneighbors(sow.todense()) -distances=list(distances[0]) -indices=list(indices[0]) - -for indx in indices[:10]: - print(df.iloc[indx]['title']) - print(df.iloc[indx]['description']) - - to_print=[ - tfidftransformer.get_feature_names()[i] - +' '+ - str(abs(np.array(sow[0].todense()).flatten()[i] - np.array(X[indx].todense()).flatten()[i])) - for i in set(sow.indices).intersection(X[indx].indices)] - print(' || ' .join(to_print),'\n') - - -print('scored standards') - - -# ===================================================== recursively accumulate scores in the graph (mean, std, max, median) -# and create data structures for plotting - -pos=loadmodel(models_dir+'pos_') -graph=loadmodel(models_dir+'graph') - - -Xn=[] -Yn=[] -labels=[] -values=[] -hoverlabels=[] -filtered_nodes=set() -Xe=[] -Ye=[] -title_lookup = nx.get_node_attributes(graph, 'title') -type_lookup = nx.get_node_attributes(graph, 'type') -# field_lookup=nx.get_node_attributes(graph,'field') - -field_predictions={} -field_title_mapping={} - -def examine(node, parent_node): - global field_predictions, Xn, Yn, labels, values, hoverlabels, Xe, Ye, pos, filtered_nodes, df, graph, title_lookup, indices, distances - - neighbours = [n for n in graph.neighbors(node)] - scores=[] - - if len(neighbours)==0: - # check if leaf node: if score available send it up, or send a zero - index_found=-1 - try: - index_found=indices.index(df[df['id_']==node].index[0]) - except: - pass - - if index_found!=-1: - # check if a score available - if 1-distances[index_found]!=0: - # score=math.pow(100, -distances[index_found]) # convert to exponential scale to spread the higher values - score=1-distances[index_found] - else: - score=0 - return score - else: - return 0 - - - # dive deeper if not the terminal node - for neighbour in neighbours: - scores.append(examine(neighbour, node)) - - - if len(scores)==0: - mean=0 - else: - scores=list(filter(lambda num: num != 0, scores)) # remove zeros and then calculate mean - if len(scores)!=0: - mean=statistics.mean(scores) - else: - mean=0 - - if mean!=0 and type_lookup.get(node,'~')!='subgroup': - # activate plotly nodes and edges - Xn += [pos[node][0]] - Yn += [pos[node][1]] - - if node!='~-1': # no need to connect the root node to its parent - Xe += [pos[parent_node][0], pos[node][0], None] - Ye += [pos[parent_node][1], pos[node][1], None] - - values += [mean] - title = title_lookup.get(node,'') - hoverlabels += [str(title)+" "+str(round(mean, 3))] - if type_lookup.get(node,'~')=='field': - field_predictions[title]=mean - # field_title_mapping[field_lookup.get(node,'~')]=title - - return mean - -print('scoring categories (at multiple levels) and plotting') -examine('~-1', '~-2') - -# for k,v in field_title_mapping.items(): -# print(k,'||',v) - -# ==================== Predict the Fields or the ICS based Standard Category (Top layer of the tree) based on bottom up aggregation of scores - -print('Ranking the \'Fields\' (Top layer of the tree) based on bottom up aggregations') -# output_f=open(output_dir+input_file,'w') -for item in sorted(field_predictions.items() , key=lambda x: x[1], reverse=True): - print(item) - # output_f.write(str(item[0])+'||'+str(item[1])+'\n') -# output_f.close() - -# ================================== plot the tree along with aggregated scores -# (a heat-map based on the scores for each node) - -fig = go.Figure() -fig.add_trace(go.Scatter(x=Xe, - y=Ye, - mode='lines', - line=dict(color='rgb(210,210,210)', width=1), - )) -fig.add_trace(go.Scatter(x=Xn, - y=Yn, - mode='markers+text', - name='graph', - marker=dict(symbol='circle-dot', - size=18, - line=dict(color='rgb(50,50,50)', width=1), - color=values, - colorbar=dict( - title="Colorbar" - ), - colorscale='Blues', - # reversescale=True - # colorscale=[[0, "rgb(255,255,255)"], - # [0.2, "rgb(202, 207, 210)"], - # [0.1, "rgb(255, 160, 122)"], - # [0.95, "rgb(205, 92, 92)"], - # [1, "rgb(31,120,180)"]] - ), - # text=labels, - hovertext=hoverlabels, - hoverinfo="text", - opacity=0.8, -textposition="bottom center" - )) - -plotly.offline.plot(fig, filename='plot.html_') \ No newline at end of file diff --git a/api/text_analysis/research_code/hcategorize_old.py b/api/text_analysis/research_code/hcategorize_old.py deleted file mode 100644 index 206a027..0000000 --- a/api/text_analysis/research_code/hcategorize_old.py +++ /dev/null @@ -1,311 +0,0 @@ -import ast -import re -import statistics -import string -import dill -import networkx as nx -import numpy as np -import pandas as pd -import plotly.graph_objs as go -import plotly.offline -from sklearn.feature_extraction import text -import spacy - -from sklearn.neighbors import NearestNeighbors -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.preprocessing import normalize - - -nlp = spacy.load('en') - -def to_string(ar): - return str(ar) - - -def to_array(sr): - return ast.literal_eval(sr) - - -def savemodel(model, outfile): - with open(outfile, 'wb') as output: - dill.dump(model, output) - return '' - - -def loadmodel(infile): - with open(infile, 'rb') as inp: - model = dill.load(inp) - return model - - -def hasNumbers(str): - return bool(re.search(r'\d', str)) - - -def ispun(str): - if str in string.punctuation: - return True - else: - return False - - -def clean_ngram(doc): - global nlp - - stop_words = text.ENGLISH_STOP_WORDS - for w in nlp(doc): - if w.ent_type_ not in ['DATE', 'TIME', 'GPE', 'PERSON', 'CARDINAL'] and not hasNumbers( - w.text) and not ispun(w.text) and w.text not in stop_words and w.pos_ == 'NOUN': - yield w.lemma_.lower() - - - - - -def hierarchy_pos(G, root, levels=None, width=1., height=1.): - '''If there is a cycle that is reachable from root, then this will see infinite recursion. - G: the graph - root: the root node - levels: a dictionary - key: level number (starting from 0) - value: number of nodes in this level - width: horizontal space allocated for drawing - height: vertical space allocated for drawing''' - TOTAL = "total" - CURRENT = "current" - def make_levels(levels, node=root, currentLevel=0, parent=None): - """Compute the number of nodes for each level - """ - if not currentLevel in levels: - levels[currentLevel] = {TOTAL : 0, CURRENT : 0} - levels[currentLevel][TOTAL] += 1 - neighbors = list(G.neighbors(node)) - for neighbor in neighbors: - if not neighbor == parent: - levels = make_levels(levels, neighbor, currentLevel + 1, node) - return levels - - def make_pos(pos, node=root, currentLevel=0, parent=None, vert_loc=0): - dx = 1/levels[currentLevel][TOTAL] - left = dx/2 - pos[node] = ((left + dx*levels[currentLevel][CURRENT])*width, vert_loc) - levels[currentLevel][CURRENT] += 1 - neighbors = G.neighbors(node) - for neighbor in neighbors: - if not neighbor == parent: - pos = make_pos(pos, neighbor, currentLevel + 1, node, vert_loc-vert_gap) - return pos - if levels is None: - levels = make_levels({}) - else: - levels = {l:{TOTAL: levels[l], CURRENT:0} for l in levels} - vert_gap = height / (max([l for l in levels])+1) - return make_pos({}) - - -# ================================= create an graph/tree (DAG) - - -df=pd.read_csv('iso_final_all.csv',index_col=0) -ics_dict_general=loadmodel('ics_dict_general') - -graph = nx.DiGraph() -for k, v in ics_dict_general.items(): - for v_ in v: - graph.add_edge(k, v_) - entry = df[df['id_'] == k].values - info={} - if len(entry) != 0: - info={key:val for key, val in zip(df.columns, entry[0])} - nx.set_node_attributes(graph, {k: info}) - - entry = df[df['id_'] == v_].values - info = {} - if len(entry) != 0: - info = {key: val for key, val in zip(df.columns, entry[0])} - nx.set_node_attributes(graph, {v_: info}) - -savemodel(graph,'graph') -# print(graph.nodes(data=True)) - -# ================================= plot the positions for each node and edge -pos = hierarchy_pos(graph,'~-1') -savemodel(pos,'pos_') -# print(pos) - -exit() - - -# ============================== clean the descriptions and add to the csv -df=pd.read_csv('iso_final_all.csv',index_col=0) -df.fillna('', inplace=True) -df['description_clean'] = df['description'].apply(lambda x: ' '.join(clean_ngram(x))) -df.to_csv('iso_final_all_clean_text.csv') -exit() - - - -# ============================== predict/rank - -pos=loadmodel('pos_') -graph=loadmodel('graph') - -df=pd.read_csv('iso_final_all_clean_text.csv',index_col=0) -df=df[df['type']=='standard'].reset_index(drop=True) -df.fillna('', inplace=True) - -tfidftransformer=TfidfVectorizer(ngram_range=(1,1), stop_words=text.ENGLISH_STOP_WORDS.union(Z[:10])) -X=tfidftransformer.fit_transform([m+' '+n for m, n in zip(df['description_clean'], df['title'])]) # using both desc and tile to predict -print('shape', X.shape) - -X=normalize(X, norm='l2', axis=1) -nbrs_brute = NearestNeighbors(n_neighbors=X.shape[0], algorithm='brute', metric='cosine') - -print('fitting') -nbrs_brute.fit(X.todense()) -print('fitted') - -# del(X) -# gc.collect() - -sow=open('input.txt','r').read() -sow=tfidftransformer.transform([sow]) -sow=normalize(sow, norm='l2', axis=1) - -print('scoring standards') -distances, indices=nbrs_brute.kneighbors(sow.todense()) -distances=list(distances[0]) -indices=list(indices[0]) - -for indx in indices[:10]: - print(df.iloc[indx]['title']) - print(df.iloc[indx]['description']) - - to_print=[ - tfidftransformer.get_feature_names()[i] - +' '+ - str(abs(np.array(sow[0].todense()).flatten()[i] - np.array(X[indx].todense()).flatten()[i])) - for i in set(sow.indices).intersection(X[indx].indices)] - print(' || ' .join(to_print),'\n') - - -print('scored standards') - - - - - - -# =====================================================, add and aggregate scores in the graph -# recursively accumulate scores (mean, std, max, median) and create data structures for plotting - -Xn=[] -Yn=[] -labels=[] -values=[] -hoverlabels=[] -filtered_nodes=set() -Xe=[] -Ye=[] -title_lookup = nx.get_node_attributes(graph, 'title') -type_lookup = nx.get_node_attributes(graph, 'type') - - -def examine(node, parent_node): - global Xn, Yn, labels, values, hoverlabels, Xe, Ye, pos, filtered_nodes, df, graph, title_lookup, indices, distances - - neighbours = [n for n in graph.neighbors(node)] - scores=[] - - if len(neighbours)==0: - # check if leaf node: if score available send it up, or send a zero - index_found=-1 - try: - index_found=indices.index(df[df['id_']==node].index[0]) - except: - pass - - if index_found!=-1: - # check if a score available - if 1-distances[index_found]!=0: - # score=math.pow(100, -distances[index_found]) # convert to exponential scale to spread the higher values - score=1-distances[index_found] - else: - score=0 - return score - else: - return 0 - - - # dive deeper if not the terminal node - for neighbour in neighbours: - scores.append(examine(neighbour, node)) - - - if len(scores)==0: - mean=0 - else: - scores=list(filter(lambda num: num != 0, scores)) # remove zeros and then calculate mean - if len(scores)!=0: - mean=statistics.mean(scores) - else: - mean=0 - - if mean!=0 and type_lookup.get(node,'~')!='subgroup': - # activate plotly nodes and edges - Xn += [pos[node][0]] - Yn += [pos[node][1]] - - if node!='~-1': # no need to connect the root node to its parent - Xe += [pos[parent_node][0], pos[node][0], None] - Ye += [pos[parent_node][1], pos[node][1], None] - - values += [mean] - title = title_lookup.get(node,'') - hoverlabels += [str(title)+" "+str(round(mean, 3))] - - return mean - -print('scoring categories and plotting') -examine('~-1', '~-2') - - - - - - -# ================================== plot the tree - -fig = go.Figure() -fig.add_trace(go.Scatter(x=Xe, - y=Ye, - mode='lines', - line=dict(color='rgb(210,210,210)', width=1), - )) -fig.add_trace(go.Scatter(x=Xn, - y=Yn, - mode='markers+text', - name='graph', - marker=dict(symbol='circle-dot', - size=18, - line=dict(color='rgb(50,50,50)', width=1), - color=values, - colorbar=dict( - title="Colorbar" - ), - colorscale='Blues', - # reversescale=True - # colorscale=[[0, "rgb(255,255,255)"], - # [0.2, "rgb(202, 207, 210)"], - # [0.1, "rgb(255, 160, 122)"], - # [0.95, "rgb(205, 92, 92)"], - # [1, "rgb(31,120,180)"]] - ), - # text=labels, - hovertext=hoverlabels, - hoverinfo="text", - opacity=0.8, -textposition="bottom center" - )) - -plotly.offline.plot(fig, filename='plot.html_') diff --git a/api/text_analysis/research_code/retrieve.py b/api/text_analysis/research_code/retrieve.py deleted file mode 100644 index 7bfdc31..0000000 --- a/api/text_analysis/research_code/retrieve.py +++ /dev/null @@ -1,163 +0,0 @@ - -# load all the standards -import pandas as pd -import os -import numpy as np -standards_dir = '../standards/data' -df=pd.read_csv(os.path.join(standards_dir,'iso_final_all_clean_standards_text_w_elmo.csv'),index_col=0) -df=df[df['type']=='standard'].reset_index(drop=True) -df.fillna('', inplace=True) - - -# # ====================================================================================================================== -# ## Retrival based on full version of WMD-ELMO (slow) -# # ====================================================================================================================== -# -# find elmo vectors for each token in the text -from api.text_analysis.utils.elmo import * -import tensorflow_hub as hub -import tensorflow.compat.v1 as tf -import copy - - -tf.disable_eager_execution() -elmo = hub.Module("https://tfhub.dev/google/elmo/2") - -# find wmd between the sow and all standards in the library -text_sow=open('test_input_sow_text.txt','r').read() -text_sow_suffixed, wordvecs_sow=process_text_for_elmo_wmd(text_sow) -for indx, row in df.iterrows(): - text_standard=row['description']+' '+row['title'] - wordvecs_sow=copy.deepcopy(wordvecs_sow) - text_standard_suffixed, wordvecs_standards=process_text_for_elmo_wmd(text_standard, suffix=1) - if text_standard_suffixed==None: - print('Could not create ELMO vectors for (skipping it):', text_standard) - continue - - # merge the two word_vector lookup data structure - wordvecs = {} - for k, v in wordvecs_sow.items(): - wordvecs[k] = v - for k, v in wordvecs_standards.items(): - wordvecs[k] = v - - # calculate distance - prob = word_mover_distance_probspec(text_sow_suffixed, text_standard_suffixed, wordvecs) - print(pulp.value(prob.objective)) - -# ====================================================================================================================== -## Retrival based on 'averaged' version of ELMO (fast). Create a paragraph vector by squishing the ELMO token vectors. -# ====================================================================================================================== -from sklearn.neighbors import NearestNeighbors -from api.text_analysis.utils.elmo import * -import ast -import dask.dataframe as dd -import multiprocessing - -# remove the rows that do do have an elmo vector -df['elmo'].replace('', np.nan, inplace=True) -df.dropna(subset=['elmo'], inplace=True) -df=df.reset_index() - -text_sow=open('test_input_sow_text.txt','r').read() -elmo_vec_sow=give_paragraph_elmo_vector(text_sow) -elmo_vec_sow=np.array([elmo_vec_sow]) -print(elmo_vec_sow.shape) - -df_=df['elmo'] -df_=df_.reset_index() -ddf=dd.from_pandas(df_, npartitions=2*multiprocessing.cpu_count()) -df['elmo']=ddf.elmo.map(lambda elmo: ast.literal_eval(elmo), meta=('elmo', object)).compute() # df['elmo'] = df.apply(lambda row: ast.literal_eval(row['elmo']) , axis=1) -X=np.array(list(df['elmo'])) -print(X.shape) - -nbrs_brute = NearestNeighbors(n_neighbors=len(df['title']), algorithm='brute') - -print('fitting') -nbrs_brute.fit(X) - -print('scoring standards') -distances, indices = nbrs_brute.kneighbors(elmo_vec_sow) -distances = list(distances[0]) -indices = list(indices[0]) - -for indx, dist in zip(indices[:10],distances[:10]): - title=df.iloc[indx]['title'] - description=df.iloc[indx]['description'] - link=df.iloc[indx]['link'] - standard_code = df.iloc[indx]['standard'] - print(dist, title, description) - - -# ====================================================================================================================== -## Retrival based on Word2Vec and Glove vectors -# https://towardsdatascience.com/light-on-math-ml-intuitive-guide-to-understanding-glove-embeddings-b13b4f19c010 (difference between Glove and word2vec) -# https://machinelearningmastery.com/develop-word-embeddings-python-gensim/ (implementations) -# ====================================================================================================================== -from sklearn.neighbors import NearestNeighbors -import dask.dataframe as dd -import multiprocessing -from api.text_analysis.utils.utils import * -from api.text_analysis.utils.word_vectors import * -import time - -for model_type in ['w2v','glove']: - - text_sow=open('test_input_sow_text.txt','r').read() - text_sow=clean_text(text_sow) - w2_vec_sow=get_w2v_para(text_sow.split(), model_type=model_type) - w2_vec_sow=np.array([w2_vec_sow]) - print(w2_vec_sow.shape) - - df=dd.from_pandas(df, npartitions=2*multiprocessing.cpu_count()) - df=df[df['type']=='standard'].reset_index(drop=True) - df=df.fillna('') - df=df.map_partitions(lambda df: df.assign(usable_text=df['description_clean'] +' ' + df['title'])).compute() - # df=df.head(1000).reset_index() - df_=df['usable_text'] - df_=df_.reset_index() - ddf=dd.from_pandas(df_, npartitions=2*multiprocessing.cpu_count()) - start = time.process_time() - df['w2v']=ddf.usable_text.map(lambda usable_text: get_w2v_para(usable_text, model_type=model_type), meta=('usable_text', str)).compute() - print(time.process_time() - start) - df['w2v'].replace('', np.nan, inplace=True) - df.dropna(subset=['w2v'], inplace=True) - df=df.reset_index(drop=True) - X=np.array(list(df['w2v'])) - print(X.shape) - nbrs_brute = NearestNeighbors(n_neighbors=len(df['title']), algorithm='brute') - - print('fitting') - nbrs_brute.fit(X) - - print('scoring standards') - distances, indices = nbrs_brute.kneighbors(w2_vec_sow) - distances = list(distances[0]) - indices = list(indices[0]) - - for indx, dist in zip(indices[:10],distances[:10]): - title=df.iloc[indx]['title'] - description=df.iloc[indx]['description'] - link=df.iloc[indx]['link'] - standard_code = df.iloc[indx]['standard'] - print(dist, title, description) - - - - -""" -Observations and Todos: --the sentence disambiguator (SD) may work badly with the format of the documents of certain SOWs. May need additional preprocessing!! Check it! --cannot use the description_clean in this case, since it detects only a single sentence. Should we clean by first SDing it! -then it may not be a well formed sentence, on which the ELMO is trained! --speed of comparison is pretty bad with the full version! ---calculating elmo vectors for 30K paragraphs is taking too long even with Dask dataframes (~60hrs) --create a test to compare elmo-wmd vs. cosine: - -get three categories of standards for an ; bad ones + ones that are top 20 based on cosine; re-rank them based on elmo-wmd and compare the matching keywords as well - -the above may help rank better the things that were retrieved based on "exact matches", but does not fully help us ascertain the capability - of the model to retrieve suitable standards! --to have retrieval based on the wmd-elmo, we can create a paragraph vector by squishing the elmo token vectors and get the top 20, then re-rank them based on the full version - - we can also analyse what kind of affect the re-ranking has, to understand the comparison between fast and full versions of elmo-wmd ---we are extracting the elmo vectors one sentence at a time using the tenforflow hub, we can give all sentences at once (this will be faster), - then connecting the actual token to word vec may be a little more difficult -""" \ No newline at end of file diff --git a/api/text_analysis/research_code/wmd.py b/api/text_analysis/research_code/wmd.py deleted file mode 100644 index 8e986c2..0000000 --- a/api/text_analysis/research_code/wmd.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -This is research code to try out Word Mover's Distance implementations - -""" - -# ====================================================================================================================== -## load word2vec model -# ====================================================================================================================== - -# sentence_A = 'Obama speaks to the media in Illinois' -# sentence_B = 'The president greets the press in Chicago' - -# sentence_A = 'american bank is the best financial institution' -sentence_B = 'bank of this river is overflowing' -sentence_A = 'bank has agreed to give us money' - -def preprocess(sentence, model): - return [item for item in sentence.lower().split() if item in model] - -import gensim.downloader as api -model = api.load('word2vec-google-news-300') - -# print(model['president']) - - -sentence_A = preprocess(sentence_A, model) -sentence_B = preprocess(sentence_B, model) - -# ====================================================================================================================== -## WMD Using Gensim -# ====================================================================================================================== - -# distance = model.wmdistance(sentence_obama, sentence_president) -# print('distance = %.4f' % distance) -# sentence_orange = preprocess('Oranges are my favorite fruit') -# distance = model.wmdistance(sentence_obama, sentence_orange) -# print('distance = %.4f' % distance) -# -# exit() - - -# ====================================================================================================================== -## WMD Using PulP solver -# ====================================================================================================================== -from api.text_analysis.wmd_util import * - -print('stated calculating wmd....') -prob = word_mover_distance_probspec(sentence_A, sentence_B, model) -print(pulp.value(prob.objective)) -for v in prob.variables(): - if v.varValue!=0: - print(v.name, '=', v.varValue) - - - diff --git a/api/text_analysis/research_code/word_vectors.py b/api/text_analysis/research_code/word_vectors.py deleted file mode 100644 index 5d2b0a1..0000000 --- a/api/text_analysis/research_code/word_vectors.py +++ /dev/null @@ -1,14 +0,0 @@ -from gensim.models import KeyedVectors - -# convert the Glove file format to w2v format -from gensim.scripts.glove2word2vec import glove2word2vec -glove_input_file = 'glove.6B.300d.txt' -word2vec_output_file = 'glove.6B.300d.txt.word2vec' -glove2word2vec(glove_input_file, word2vec_output_file) -exit() - -filename = 'GoogleNews-vectors-negative300.bin' -model_w2v = KeyedVectors.load_word2vec_format(filename, binary=True) -# load the Stanford GloVe model -filename = 'glove.6B.100d.txt.word2vec' -model_glove = KeyedVectors.load_word2vec_format(filename, binary=False) \ No newline at end of file diff --git a/api/text_analysis/temp/collect_results b/api/text_analysis/temp/collect_results deleted file mode 100644 index 8e800a0..0000000 Binary files a/api/text_analysis/temp/collect_results and /dev/null differ diff --git a/api/text_analysis/temp/collect_results_2 b/api/text_analysis/temp/collect_results_2 deleted file mode 100644 index d06bd8e..0000000 Binary files a/api/text_analysis/temp/collect_results_2 and /dev/null differ diff --git a/api/text_analysis/temp/field_predictions_collect b/api/text_analysis/temp/field_predictions_collect deleted file mode 100644 index 8cd3fc3..0000000 Binary files a/api/text_analysis/temp/field_predictions_collect and /dev/null differ diff --git a/api/text_analysis/temp/placeholder b/api/text_analysis/temp/placeholder deleted file mode 100644 index e69de29..0000000 diff --git a/api/text_analysis/utils/__init__.py b/api/text_analysis/utils/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/api/text_analysis/utils/elmo.py b/api/text_analysis/utils/elmo.py deleted file mode 100644 index 37ba111..0000000 --- a/api/text_analysis/utils/elmo.py +++ /dev/null @@ -1,255 +0,0 @@ -from itertools import product -from collections import defaultdict -import pysbd -import tensorflow.compat.v1 as tf -import numpy as np -import tensorflow_hub as hub -from scipy.spatial.distance import euclidean -import pulp -import pandas -import datetime - -seg = pysbd.Segmenter(language="en", clean=False) -tf.disable_eager_execution() - -model_elmo= None - - -singleindexing = lambda m, i, j: m*i+j -unpackindexing = lambda m, k: (k/m, k % m) - - -def tokens_to_fracdict(tokens): - cntdict = defaultdict(lambda : 0) - for token in tokens: - cntdict[token] += 1 - totalcnt = sum(cntdict.values()) - return {token: float(cnt)/totalcnt for token, cnt in cntdict.items()} - -def load_model(): - global model_elmo - if model_elmo==None: - filename = 'https://tfhub.dev/google/elmo/3' - model_elmo = hub.Module(filename) - return model_elmo - - -# use PuLP -def word_mover_distance_probspec(first_sent_tokens, second_sent_tokens, wordvecs, lpFile=None): - all_tokens = list(set(first_sent_tokens+second_sent_tokens)) - - first_sent_buckets = tokens_to_fracdict(first_sent_tokens) - second_sent_buckets = tokens_to_fracdict(second_sent_tokens) - - T = pulp.LpVariable.dicts('T_matrix', list(product(all_tokens, all_tokens)), lowBound=0) - - prob = pulp.LpProblem('WMD', sense=pulp.LpMinimize) - prob += pulp.lpSum([T[token1, token2]*euclidean(wordvecs[token1], wordvecs[token2]) - for token1, token2 in product(all_tokens, all_tokens)]) - for token2 in second_sent_buckets: - prob += pulp.lpSum([T[token1, token2] for token1 in first_sent_buckets])==second_sent_buckets[token2] - for token1 in first_sent_buckets: - prob += pulp.lpSum([T[token1, token2] for token2 in second_sent_buckets])==first_sent_buckets[token1] - - if lpFile!=None: - prob.writeLP(lpFile) - - prob.solve() - - return prob - -def word_mover_distance_probspec_mod(first_sent_tokens, second_sent_tokens, first_sent_wordvecs, second_sent_wordvecs, lpFile=None): - - # merge the two lookups: - wordvecs={} - for k, v in first_sent_wordvecs.items(): - wordvecs[k]=v - for k, v in second_sent_wordvecs.items(): - wordvecs[k]=v - - all_tokens = list(set(first_sent_tokens+second_sent_tokens)) - - first_sent_buckets = tokens_to_fracdict(first_sent_tokens) - second_sent_buckets = tokens_to_fracdict(second_sent_tokens) - - T = pulp.LpVariable.dicts('T_matrix', list(product(all_tokens, all_tokens)), lowBound=0) - - prob = pulp.LpProblem('WMD', sense=pulp.LpMinimize) - prob += pulp.lpSum([T[token1, token2]*euclidean(wordvecs[token1], wordvecs[token2]) - for token1, token2 in product(all_tokens, all_tokens)]) - for token2 in second_sent_buckets: - prob += pulp.lpSum([T[token1, token2] for token1 in first_sent_buckets])==second_sent_buckets[token2] - for token1 in first_sent_buckets: - prob += pulp.lpSum([T[token1, token2] for token2 in second_sent_buckets])==first_sent_buckets[token1] - - if lpFile!=None: - prob.writeLP(lpFile) - - prob.solve() - - return prob - -def word_mover_distance(first_sent_tokens, second_sent_tokens, wvmodel, lpFile=None): - prob = word_mover_distance_probspec(first_sent_tokens, second_sent_tokens, wvmodel, lpFile=lpFile) - return pulp.value(prob.objective) - - -def process_text_for_elmo_wmd(text, suffix=0, unique_connector= '_~_'): - """ - process the text to be able to use with ELMO enabled version of WMD. Then, create ELMO vectors as well. - """ - # elmo = hub.Module("https://tfhub.dev/google/elmo/3") # todo: this worked well with the vector generation using 'Dask' - elmo=load_model() - wordvecs={} - - sentences =seg.segment(text) - if len(sentences)==0: - return None, None - - # tokenize the sentences - sentences_tokens=[item.lower().split() for item in sentences] - # create padding using "" based on the max length - tokens_length=[len(item) for item in sentences_tokens] - max_len=max(tokens_length) - tokens_input=[item+(max_len-len(item))*[''] for item in sentences_tokens] - - embeddings = elmo( - inputs={ - "tokens": tokens_input, - "sequence_len": tokens_length - }, - signature="tokens", - as_dict=True)["elmo"] - # print(embeddings.shape) - - # convert from tensor to array - with tf.Session() as session: - session.run([tf.global_variables_initializer(), tf.tables_initializer()]) - numpy_arr = session.run(embeddings) - - # rename the tokens (add suffix) and separate elmo vectors for each tokens - text_suffixed = [] - for sentence_tokens in sentences_tokens: - sentence_tokens_suffixed=[] - for j, token in enumerate(sentence_tokens): - sentence_tokens_suffixed.append(token + unique_connector + str(suffix)) - wordvecs[token + unique_connector + str(suffix)] = numpy_arr[0][j] - - text_suffixed.extend(sentence_tokens_suffixed) - - return text_suffixed, wordvecs - -def give_paragraph_elmo_vector(text): - elmo = hub.Module("https://tfhub.dev/google/elmo/3") - - sentences = seg.segment(text) - - if len(sentences) == 0: - # print('Empty returned') - return '' - - - # tokenize the sentences - sentences_tokens = [item.lower().split() for item in sentences] - # create padding using "" based on the max length - tokens_length = [len(item) for item in sentences_tokens] - max_len = max(tokens_length) - # add padding - tokens_input = [item + (max_len - len(item)) * [''] for item in sentences_tokens] - - embeddings = elmo( - inputs={ - "tokens": tokens_input, - "sequence_len": tokens_length - }, - signature="tokens", - as_dict=True)["elmo"] - # print(embeddings.shape) - - # convert from tensor to array - with tf.Session() as session: - session.run([tf.global_variables_initializer(), tf.tables_initializer()]) - numpy_arr = session.run(embeddings) - - - # take mean of elmo token vectors to create a paragraph vector - token_vectors = [] - for sentence_tokens in sentences_tokens: - # extract vectors from the array - for j, token in enumerate(sentence_tokens): - token_vectors.append(numpy_arr[0][j]) - - token_vectors =np.array(token_vectors) - # print(token_vectors.shape) - para_vector=np.mean(token_vectors, axis=0) - # print(para_vector.shape) - return list(para_vector) - -def give_paragraph_elmo_vector_multi(texts): - """this function takes a list of strings. This is a much faster way to create ELMO vectors""" - elmo = hub.Module("https://tfhub.dev/google/elmo/3") - - track_sent_position=[] # to track which sent belongs to which paragraph/text - counter=0 - all_sentences=[] - empty_texts=[] - for i, text in enumerate(texts): - sentences = seg.segment(text) - if len(sentences)==0: - sentences=[''] # adding a placeholder, will process the results later - empty_texts.append(i) - all_sentences.extend(sentences) - track_sent_position.append(range(counter, counter+len(sentences))) - counter+=len(sentences) - - # prepare to get the embeddings - # tokenize the sentences - all_sentences_tokens = [item.lower().split() for item in all_sentences] - # create padding using "" based on the max length - tokens_length = [len(item) for item in all_sentences_tokens] - max_len = max(tokens_length) - # add padding - tokens_input = [item + (max_len - len(item)) * [''] for item in all_sentences_tokens] - embeddings = elmo( - inputs={ - "tokens": tokens_input, - "sequence_len": tokens_length - }, - signature="tokens", - as_dict=True)["elmo"] - # print(embeddings.shape) - - # convert from tensor to array - with tf.Session() as session: - session.run([tf.global_variables_initializer(), tf.tables_initializer()]) - numpy_arr = session.run(embeddings) - - # extract the token vectors and create paragraph vectors - para_vectors=[] - for k, positions in enumerate(track_sent_position): # for each paragraph or text - if k in empty_texts: - para_vectors.append('') - continue - numpy_arr_part=numpy_arr[positions] - all_sentences_tokens_part=[all_sentences_tokens[i] for i in positions] - - para_token_vectors = [] - for sentence_tokens in all_sentences_tokens_part: - # extract token vectors and collect for each paragraph - for j, token in enumerate(sentence_tokens): - para_token_vectors.append(numpy_arr_part[0][j]) - - # take mean of elmo token vectors to create a paragraph vector - para_token_vectors =np.array(para_token_vectors) - para_vector=np.mean(para_token_vectors, axis=0) - para_vectors.append(list(para_vector)) - - return para_vectors - -# eg codes: -# text='Hello my name is Mr. TomCat. I have come from far lands to do business.' -# print(len(give_paragraph_elmo_vector(text))) - -# texts=['Hello my name is Mr. TomCat. I have come from far lands to do business.', 'today is my lucky day. I found a penny on the street'] -# para_vectors=give_paragraph_elmo_vector_multi(texts) -# print(para_vectors) diff --git a/api/text_analysis/utils/hplotprecdict.py b/api/text_analysis/utils/hplotprecdict.py deleted file mode 100644 index bdb1f49..0000000 --- a/api/text_analysis/utils/hplotprecdict.py +++ /dev/null @@ -1,128 +0,0 @@ -import statistics -import networkx as nx -import plotly.graph_objs as go -import plotly.offline -from api.text_analysis.utils.retrieve import * - - - -def bottom_up_hpredict(text_input, standards_df, pos, graph, algo='cosine-sim', plot_name='plot.html_'): - - """ - algo: cosine-sim, elmo-sim, glove-sim, w2v-sim - """ - - # ===================================================== recursively accumulate scores in the graph (mean, std, max, median) - # and create data structures for plotting - - def examine(node, parent_node, indices, distances, Xn, Yn, Xe, Ye, values, hoverlabels, field_predictions): - - neighbours = [n for n in graph.neighbors(node)] - scores = [] - - if len(neighbours) == 0: - # check if leaf node: if score available send it up, or send a zero - index_found = -1 - try: - index_found = indices.index(standards_df[standards_df['id_'] == node].index[0]) - except: - pass - - if index_found != -1: - # check if a score available - if 1 - distances[index_found] != 0: - # score=math.pow(100, -distances[index_found]) # convert to exponential scale to spread the higher values - score = 1 - distances[index_found] - else: - score = 0 - return score - else: - return 0 - - # dive deeper if not the terminal node - for neighbour in neighbours: - scores.append(examine(neighbour, node, indices, distances, Xn, Yn, Xe, Ye, values, hoverlabels, field_predictions)) - - if len(scores) == 0: - mean = 0 - else: - scores = list(filter(lambda num: num != 0, scores)) # remove zeros and then calculate mean - if len(scores) != 0: - mean = statistics.mean(scores) - else: - mean = 0 - - if mean != 0 and nx.get_node_attributes(graph, 'type').get(node, '~') != 'subgroup': - # activate plotly nodes and edges - Xn += [pos[node][0]] - Yn += [pos[node][1]] - - if node != '~-1': # no need to connect the root node to its parent - Xe += [pos[parent_node][0], pos[node][0], None] - Ye += [pos[parent_node][1], pos[node][1], None] - - values += [mean] - title = nx.get_node_attributes(graph, 'title').get(node, '') - hoverlabels += [str(title) + " " + str(round(mean, 3))] - if nx.get_node_attributes(graph, 'type').get(node, '~') == 'field': - field_predictions[title] = mean - # field_title_mapping[field_lookup.get(node,'~')]=title - - return mean - - - # calculate distances between standards and the sow - indices, distances, _, _= get_similar_standards(text_input, standards_df, algo=algo) - - Xn = [] - Yn = [] - values = [] - hoverlabels = [] - Xe = [] - Ye = [] - # field_lookup=nx.get_node_attributes(graph,'field') - - field_predictions = {} - # field_title_mapping = {} - - print('scoring categories (at multiple levels) and plotting') - examine('~-1', '~-2', indices, distances, Xn, Yn,Xe, Ye, values, hoverlabels, field_predictions) - - # ================================== plot the tree along with aggregated scores - # (a heat-map based on the scores for each node) - - fig = go.Figure() - fig.add_trace(go.Scatter(x=Xe, - y=Ye, - mode='lines', - line=dict(color='rgb(210,210,210)', width=1), - )) - fig.add_trace(go.Scatter(x=Xn, - y=Yn, - mode='markers+text', - name='graph', - marker=dict(symbol='circle-dot', - size=18, - line=dict(color='rgb(50,50,50)', width=1), - color=values, - colorbar=dict( - title="Colorbar" - ), - colorscale='Blues', - # reversescale=True - # colorscale=[[0, "rgb(255,255,255)"], - # [0.2, "rgb(202, 207, 210)"], - # [0.1, "rgb(255, 160, 122)"], - # [0.95, "rgb(205, 92, 92)"], - # [1, "rgb(31,120,180)"]] - ), - # text=labels, - hovertext=hoverlabels, - hoverinfo="text", - opacity=0.8, - textposition="bottom center" - )) - - plotly.offline.plot(fig, filename=plot_name) - return sorted(field_predictions.items() , key=lambda x: x[1], reverse=True) - diff --git a/api/text_analysis/utils/retrieve.py b/api/text_analysis/utils/retrieve.py deleted file mode 100644 index d23559f..0000000 --- a/api/text_analysis/utils/retrieve.py +++ /dev/null @@ -1,225 +0,0 @@ -import ast -import multiprocessing - -import dask.dataframe as dd -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.neighbors import NearestNeighbors -from sklearn.preprocessing import normalize - -from api.text_analysis.utils.word_vectors import * -from api.text_analysis.utils.utils import * -from sklearn.feature_extraction import text -from api.text_analysis.utils.soft_cosine import * -import datetime - -from api.text_analysis.utils.elmo import * -import tensorflow_hub as hub -import tensorflow.compat.v1 as tf -import copy -import pandas as pd - - -def get_similar_standards(input_text, standards_df, algo='cosine-sim', id_column='id'): - # todo: provide an option for choosing between wmd and soft-cosine - - """ - algo: cosine-sim, elmo-sim, glove-sim, w2v-sim, emlo-wmd-sim, w2v-wmd-sim, glove-wmd-sim - Note: make sure there is no resetting of indexes or removal of values in this function from the standards_df! - """ - - standards_df=standards_df.copy() - - feature_importances=[] - if 'wmd' not in algo: - if algo=='elmo-sim': - # add zero rows to the rows that do not have an elmo vector. todo: Is this a good idea! - - vec_sow = give_paragraph_elmo_vector(input_text) - vec_sow = np.array([vec_sow]) - standards_df['elmo'] = standards_df['elmo'].replace('', str([0.0] * 1024)) - df_ = standards_df['elmo'] - df_ = df_.reset_index() - ddf = dd.from_pandas(df_, npartitions=2 * multiprocessing.cpu_count()) - standards_df['elmo'] = ddf.elmo.map(lambda elmo: ast.literal_eval(elmo), meta=( - 'elmo', object)).compute() # df['elmo'] = df.apply(lambda row: ast.literal_eval(row['elmo']) , axis=1) - X = np.array(list(standards_df['elmo'])) - - elif algo=='glove-sim': - input_text = clean_text(input_text) - vec_sow = get_w2v_para(input_text.split(), model_type='glove') - vec_sow = np.array([vec_sow]) - - df = dd.from_pandas(standards_df, npartitions=2 * multiprocessing.cpu_count()) - df = df.map_partitions(lambda df: df.assign(usable_text=df['description_clean'] + ' ' + df['title'])).compute() - df_ = df['usable_text'] - df_ = df_.reset_index() - ddf = dd.from_pandas(df_, npartitions=2 * multiprocessing.cpu_count()) - standards_df['glove'] = ddf.usable_text.map(lambda usable_text: get_w2v_para(usable_text, model_type='glove'), - meta=('usable_text', str)).compute() - - # df['w2v'].replace('', np.nan, inplace=True) - # df.dropna(subset=['w2v'], inplace=True) - # df = df.reset_index(drop=True) - - X = np.array(list(standards_df['glove'])) - - elif algo=='w2v-sim': - text_sow = clean_text(input_text) - vec_sow = get_w2v_para(text_sow.split(), model_type='w2v') - vec_sow = np.array([vec_sow]) - - df = dd.from_pandas(standards_df, npartitions=2 * multiprocessing.cpu_count()) - df = df.map_partitions(lambda df: df.assign(usable_text=df['description_clean'] + ' ' + df['title'])).compute() - df_ = df['usable_text'] - df_ = df_.reset_index() - ddf = dd.from_pandas(df_, npartitions=2 * multiprocessing.cpu_count()) - standards_df['w2v'] = ddf.usable_text.map(lambda usable_text: get_w2v_para(usable_text, model_type='w2v'), - meta=('usable_text', str)).compute() - # df['w2v'].replace('', np.nan, inplace=True) - # df.dropna(subset=['w2v'], inplace=True) - # df = df.reset_index(drop=True) - - X = np.array(list(standards_df['w2v'])) - - elif algo=='cosine-sim': - tfidftransformer = TfidfVectorizer(ngram_range=(1, 1), stop_words=text.ENGLISH_STOP_WORDS) - df = dd.from_pandas(standards_df, npartitions=2 * multiprocessing.cpu_count()) - df = df.map_partitions(lambda df: df.assign(usable_text=df['description_clean'] + ' ' + df['title'])).compute() - X_text = list(df['usable_text']) - X = tfidftransformer.fit_transform(X_text) - vec_sow = tfidftransformer.transform([input_text]) - else: - print("No Such Algorithm:", algo) - raise NotImplementedError - - print('standards data shape', X.shape) - nbrs_brute = NearestNeighbors(n_neighbors=len(standards_df['title']), algorithm='brute', metric='cosine') - - print('fitting standards') - nbrs_brute.fit(X) - - print('scoring standards') - sorted_distances, sorted_indices = nbrs_brute.kneighbors(vec_sow) - standards_df_sorted=standards_df.reindex(sorted_indices[0]) - - sorted_distances = list(sorted_distances[0]) - sorted_ids = list(standards_df_sorted[id_column]) - else: - start=datetime.datetime.now() - if algo == 'elmo-wmd-sim': - input_text_tokens, vec_sow = process_text_for_elmo_wmd(input_text) - elif algo in ['w2v-wmd-sim', 'glove-wmd-sim']: - input_text_tokens, vec_sow = get_w2v(input_text.split(), model_type='w2v') - else: - print("No Such Algorithm:", algo) - raise NotImplementedError - - # print('input processed in:', datetime.datetime.now()-start) - - distances_collect = [] - - # calculate new distances - for indx, row in standards_df.iterrows(): - print(indx) - text_standard = row['description'] + ' ' + row['title'] - vec_sow = copy.deepcopy(vec_sow) - - if algo == 'elmo-wmd-sim': - standard_text_tokens, vec_standard = process_text_for_elmo_wmd(text_standard, suffix=1) - if standard_text_tokens == None: - distances_collect.append(0.99) - print('Could not create ELMO vectors for:', text_standard) - continue - elif algo in ['w2v-wmd-sim', 'glove-wmd-sim']: - standard_text_tokens, vec_standard = get_w2v(text_standard.split(), model_type=algo.split('-')[0]) - else: - print("No Such Algorithm:", algo) - raise NotImplementedError - - # print('standards processed in:', datetime.datetime.now() - start) - - # prob = word_mover_distance_probspec_mod(input_text_tokens, standard_text_tokens, vec_sow,vec_standard) - # distances_collect.append(pulp.value(prob.objective)) - # matches = {} - # for v in prob.variables(): - # if v.varValue != 0: - # # print(v.name, '=', v.varValue) - # matches[str(v.name)[8:]] = v.varValue - # matches = {k: v for k, v in sorted(matches.items(), key=lambda item: item[1])} - # feature_importances.append(matches) - - sim = soft_cosine(input_text_tokens, standard_text_tokens, vec_sow, vec_standard) - distances_collect.append(1.0-sim) - - sorted_distances = [] - sorted_indices = [] - for index, distance in sorted(enumerate(distances_collect), key=lambda pair: pair[1]): - sorted_distances.append(distance) - sorted_indices.append(index) - - standards_df_sorted = standards_df.reindex(sorted_indices) - - sorted_distances = list(sorted_distances) - sorted_ids = list(standards_df_sorted[id_column]) - - - - # for indx, dist in zip(indices[:result_count], distances[:result_count]): - # title = df.iloc[indx]['title'] - # description = df.iloc[indx]['description'] - # link = df.iloc[indx]['link'] - # standard_code = df.iloc[indx]['standard'] - # print(dist, title, description) - - return sorted_ids, sorted_distances, feature_importances, vec_sow - - - - -def get_paragraph_vectors(standards_df, vec='elmo'): - - """ - vec: elmo, glove, w2v - """ - - standards_df=standards_df.copy() - - if vec=='elmo': - # add zero rows to the rows that do not have an elmo vector. todo: Is this a good idea! - standards_df['elmo'] = standards_df['elmo'].replace('', str([0.0] * 1024)) - df_ = standards_df['elmo'] - df_ = df_.reset_index() - ddf = dd.from_pandas(df_, npartitions=2 * multiprocessing.cpu_count()) - standards_df['elmo'] = ddf.elmo.map(lambda elmo: ast.literal_eval(elmo), meta=( - 'elmo', object)).compute() # df['elmo'] = df.apply(lambda row: ast.literal_eval(row['elmo']) , axis=1) - - elif vec=='glove': - - df = dd.from_pandas(standards_df, npartitions=2 * multiprocessing.cpu_count()) - df = df.map_partitions(lambda df: df.assign(usable_text=df['description_clean'] + ' ' + df['title'])).compute() - df_ = df['usable_text'] - df_ = df_.reset_index() - ddf = dd.from_pandas(df_, npartitions=2 * multiprocessing.cpu_count()) - standards_df['glove'] = ddf.usable_text.map(lambda usable_text: get_w2v_para(usable_text, model_type='glove'), - meta=('usable_text', str)).compute() - - - - elif vec=='w2v': - - df = dd.from_pandas(standards_df, npartitions=2 * multiprocessing.cpu_count()) - df = df.map_partitions(lambda df: df.assign(usable_text=df['description_clean'] + ' ' + df['title'])).compute() - df_ = df['usable_text'] - df_ = df_.reset_index() - ddf = dd.from_pandas(df_, npartitions=2 * multiprocessing.cpu_count()) - standards_df['w2v'] = ddf.usable_text.map(lambda usable_text: get_w2v_para(usable_text, model_type='w2v'), - meta=('usable_text', str)).compute() - - - else: - print("No Such Algorithm:", vec) - raise NotImplementedError - - - - return standards_df \ No newline at end of file diff --git a/api/text_analysis/utils/soft_cosine.py b/api/text_analysis/utils/soft_cosine.py deleted file mode 100644 index 818e740..0000000 --- a/api/text_analysis/utils/soft_cosine.py +++ /dev/null @@ -1,80 +0,0 @@ -import numpy as np -from scipy.sparse import csr_matrix -import datetime - -def soft_cosine(first_sent_tokens, second_sent_tokens, first_sent_wordvecs, second_sent_wordvecs): - dot_product_sum = 0 - - # start=datetime.datetime.now() - # implementation help from: - # http://na-o-ys.github.io/others/2015-11-07-sparse-vector-similarities.html - # https://github.com/sprvCollaboration/soft_cosine - mat=[] - for token_a in first_sent_tokens: - mat.append(first_sent_wordvecs[token_a]) - for token_b in second_sent_tokens: - mat.append(second_sent_wordvecs[token_b]) - mat=csr_matrix(np.array(mat).transpose()) - sim_mat=np.array(cosine_similarities(mat).todense()) - - for i in range(len(first_sent_tokens)): - for j in range(len(first_sent_tokens), len(first_sent_tokens)+len(second_sent_tokens)): - cosine_sim = sim_mat[i][j] - dot_product_sum += cosine_sim - # print(first_sent_tokens[i], second_sent_tokens[j-len(first_sent_tokens)], cosine_sim) - - norm_a_sum = 0 - for i in range(len(first_sent_tokens)): - for j in range(len(first_sent_tokens)): - cosine_sim = sim_mat[i][j] - norm_a_sum += cosine_sim - # print(first_sent_tokens[i], first_sent_tokens[j], cosine_sim) - - norm_b_sum = 0 - for i in range(len(first_sent_tokens), len(first_sent_tokens)+len(second_sent_tokens)): - for j in range(len(first_sent_tokens), len(first_sent_tokens)+len(second_sent_tokens)): - cosine_sim =sim_mat[i][j] - norm_b_sum += cosine_sim - # print(second_sent_tokens[j-len(first_sent_tokens)], second_sent_tokens[j-len(first_sent_tokens)], cosine_sim) - - ## The below implementation is good for learning, but very slow - # for token_a in first_sent_tokens: - # for token_b in second_sent_tokens: - # cosine_sim = cos_similarity(first_sent_wordvecs[token_a], second_sent_wordvecs[token_b]) - # dot_product_sum += cosine_sim - # - # norm_a_sum = 0 - # for token_a in first_sent_tokens: - # for token_b in first_sent_tokens: - # cosine_sim = cos_similarity(first_sent_wordvecs[token_a], first_sent_wordvecs[token_b]) - # norm_a_sum += cosine_sim - # - # for token_a in first_sent_tokens: - # for token_b in first_sent_tokens: - # cosine_sim = cos_similarity(first_sent_wordvecs[token_a], first_sent_wordvecs[token_b]) - # norm_a_sum += cosine_sim - # - # norm_b_sum = 0 - # for token_a in second_sent_tokens: - # for token_b in second_sent_tokens: - # cosine_sim = cos_similarity(second_sent_wordvecs[token_a], second_sent_wordvecs[token_b]) - # norm_b_sum += cosine_sim - - # print('time taken:',datetime.datetime.now()-start) - - - soft_cosine = dot_product_sum / ((norm_a_sum ** 0.5) * (norm_b_sum) ** 0.5) - return (soft_cosine) - -import sklearn.preprocessing as pp - -def cosine_similarities(mat): - col_normed_mat = pp.normalize(mat.tocsc(), axis=0) - return col_normed_mat.T * col_normed_mat - -def cos_similarity(vect1, vect2): - dot_product = np.dot(vect1, vect2) - norm1 = np.linalg.norm(vect1) - norm2 = np.linalg.norm(vect2) - similarity = dot_product / (norm1 * norm2) - return (similarity) \ No newline at end of file diff --git a/api/text_analysis/utils/utils.py b/api/text_analysis/utils/utils.py deleted file mode 100755 index c826e9e..0000000 --- a/api/text_analysis/utils/utils.py +++ /dev/null @@ -1,71 +0,0 @@ -import dill -# from textblob import TextBlob -import math -import spacy -import re -from sklearn.feature_extraction import text - -x=float('nan') -math.isnan(x) - -def get_cosine(vec1, vec2): - import math - - intersection = set(vec1.keys()) & set(vec2.keys()) - numerator = sum([vec1[x] * vec2[x] for x in intersection if not (math.isnan(float(vec1[x])) or math.isnan(float(vec2[x]))) ]) - product={x:vec1[x] * vec2[x] for x in intersection if not (math.isnan(float(vec1[x])) or math.isnan(float(vec2[x]))) } - sum1 = sum([vec1[x] ** 2 for x in vec1.keys()]) - sum2 = sum([vec2[x] ** 2 for x in vec2.keys()]) - - denominator = math.sqrt(sum1) * math.sqrt(sum2) - - if denominator==0 or math.isnan(float(denominator)): - return 0.0,{} - else: - return float(numerator) / denominator,product - -def savemodel(model,outfile): - with open(outfile, 'wb') as output: - dill.dump(model, output) - return '' - -def loadmodel(infile): - model='' - with open(infile, 'rb') as inp: - model = dill.load(inp) - return model - -nlp = spacy.load('en') -# python3 -m spacy download en_core_web_sm -# python3 -m spacy download en - -def hasNumbers(str): - return bool(re.search(r'\d', str)) - -def has_non_alpha(str): - if re.search('[^a-zA-Z]', str)==None: - return False - return True - -def has_camelcase_alpha(str): - if len(str)==1: - return False - - if len(re.findall('[A-Z]', str[1:]))==0: - return False - return True - - -def clean_text(txt, no_pos=True): - # todo: check again the no_pos logic once - txt_=[] - for w in nlp(txt): - if w.ent_type_ not in ['DATE', 'TIME', 'GPE', 'PERSON', 'CARDINAL', 'ORG', 'LOC'] and\ - not has_non_alpha(w.text) and not has_camelcase_alpha(w.text) and w.text not in text.ENGLISH_STOP_WORDS and (no_pos or w.pos_ not in ['ADV','DET','ADP','X']): # and (w.pos_ == 'NOUN' or w.pos_ == 'VERB'): # and w.text not in stop_words and w.pos_ == 'NOUN': - txt_.append(w.text) - return ' '.join(txt_) - -# def noun_tokenize(x): -# blob = TextBlob(x) -# phrases = blob.noun_phrases -# return phrases diff --git a/api/text_analysis/utils/wmd.py b/api/text_analysis/utils/wmd.py deleted file mode 100644 index 0162457..0000000 --- a/api/text_analysis/utils/wmd.py +++ /dev/null @@ -1,47 +0,0 @@ -from itertools import product -from collections import defaultdict -from scipy.spatial.distance import euclidean -import pulp - - -singleindexing = lambda m, i, j: m*i+j -unpackindexing = lambda m, k: (k/m, k % m) - - -def tokens_to_fracdict(tokens): - cntdict = defaultdict(lambda : 0) - for token in tokens: - cntdict[token] += 1 - totalcnt = sum(cntdict.values()) - return {token: float(cnt)/totalcnt for token, cnt in cntdict.items()} - - -# use PuLP -def word_mover_distance_probspec(first_sent_tokens, second_sent_tokens, wvmodel, lpFile=None): - all_tokens = list(set(first_sent_tokens+second_sent_tokens)) - wordvecs = {token: wvmodel[token] for token in all_tokens} - - first_sent_buckets = tokens_to_fracdict(first_sent_tokens) - second_sent_buckets = tokens_to_fracdict(second_sent_tokens) - - T = pulp.LpVariable.dicts('T_matrix', list(product(all_tokens, all_tokens)), lowBound=0) - - prob = pulp.LpProblem('WMD', sense=pulp.LpMinimize) - prob += pulp.lpSum([T[token1, token2]*euclidean(wordvecs[token1], wordvecs[token2]) - for token1, token2 in product(all_tokens, all_tokens)]) - for token2 in second_sent_buckets: - prob += pulp.lpSum([T[token1, token2] for token1 in first_sent_buckets])==second_sent_buckets[token2] - for token1 in first_sent_buckets: - prob += pulp.lpSum([T[token1, token2] for token2 in second_sent_buckets])==first_sent_buckets[token1] - - if lpFile!=None: - prob.writeLP(lpFile) - - prob.solve() - - return prob - - -def word_mover_distance(first_sent_tokens, second_sent_tokens, wvmodel, lpFile=None): - prob = word_mover_distance_probspec(first_sent_tokens, second_sent_tokens, wvmodel, lpFile=lpFile) - return pulp.value(prob.objective) \ No newline at end of file diff --git a/api/text_analysis/utils/word_vectors.py b/api/text_analysis/utils/word_vectors.py deleted file mode 100644 index ba4ebef..0000000 --- a/api/text_analysis/utils/word_vectors.py +++ /dev/null @@ -1,55 +0,0 @@ -from gensim.models import KeyedVectors -import numpy as np - -model_glove, model_w2v = None, None - -def load_model(model_type): - global model_glove, model_w2v - if model_type=='w2v': - if model_w2v==None: - filename = '/usr/local/lib/w2v/GoogleNews-vectors-negative300.bin' - model_w2v = KeyedVectors.load_word2vec_format(filename, binary=True) - - return model_w2v - - elif model_type=='glove': - # load the Stanford GloVe model - if model_glove==None: - filename = '/usr/local/lib/w2v/glove.6B.300d.txt.word2vec' - model_glove = KeyedVectors.load_word2vec_format(filename, binary=False) - - return model_glove - -def get_w2v_para(text_tokens, model_type='w2v'): - "takes as input a list of tokens and returns a single paragraph vector for the whole text" - # todo: get rid of min and max and see the results! - model=load_model(model_type) - document_vec=[] - for token in text_tokens: - if token in model: - document_vec.append(model[token]) - if len(document_vec)==0: - return [0.0] * 900 - document_vec=np.array(document_vec) - document_vec_mean = np.mean(document_vec, axis=0) - document_vec_max = np.max(document_vec, axis=0) - document_vec_min = np.min(document_vec, axis=0) - document_vec = np.concatenate((document_vec_mean, document_vec_max, document_vec_min)) - return list(document_vec) - -def get_w2v(text_tokens, model_type='w2v'): - "takes as input a list of tokens and returns a single paragraph vector for the whole text" - # todo: get rid of min and max and see the results! - model = load_model(model_type) - vectors={} - filtered_tokens=[] - for token in text_tokens: - if token in model: - filtered_tokens.append(token) - vectors[token]=model[token] - return filtered_tokens, vectors - -# text='hello my name is Tom Cat and I am a sever' -# w2_vec=get_w2v_para(text.split(), model_type='w2v') -# print(w2_vec) - diff --git a/api/web_utils.py b/api/utils.py similarity index 92% rename from api/web_utils.py rename to api/utils.py index e4adc3c..e5f23a0 100644 --- a/api/web_utils.py +++ b/api/utils.py @@ -5,7 +5,7 @@ from typing import Callable import yaml from elasticsearch import Elasticsearch -from fastapi import File, Form, UploadFile +from fastapi import UploadFile import json @@ -28,10 +28,6 @@ def read_logs(logFile="log/app.log"): return -def xml_to_es(file): - pass - - def save_upload_file_tmp(upload_file: UploadFile) -> Path: try: suffix = Path(upload_file.filename).suffix @@ -40,4 +36,4 @@ def save_upload_file_tmp(upload_file: UploadFile) -> Path: tmp_path = Path(tmp.name) finally: upload_file.file.close() - return tmp_path \ No newline at end of file + return tmp_path diff --git a/crawl_scripts/ieee_partial_crawl.py b/crawl_scripts/ieee_partial_crawl.py deleted file mode 100644 index a22eb81..0000000 --- a/crawl_scripts/ieee_partial_crawl.py +++ /dev/null @@ -1,112 +0,0 @@ -import signal -import traceback -import pandas as pd -from selenium import webdriver -import ast - -""" -This script crawls the scope, abstract and purpose for the ieee standards -""" - - - - -phantomjs_exec_path='/usr/local/bin/phantomjs' - -def quitdriver(driver): - try: - driver.service.process.send_signal(signal.SIGTERM) - driver.quit() - print 'driver quit successfully!' - return 'done' - except: - error = traceback.format_exc() - print 'error quitting',error - return 'error: quitting the driver ' + str(error) - - -def fetchpage(url): - error='' - driver='' - try: - driver = webdriver.PhantomJS( - executable_path=phantomjs_exec_path) - driver.get(url) - print 'got page' - return driver - - except: - error = traceback.format_exc() - print error - if driver!='': - quitdriver(driver) - return '' - - - -df=pd.read_csv('IEEE-standards.csv',index_col=0) -df_text=pd.DataFrame(columns=['abstract_new','scope_new','purpose_new']) - -ieee_new=open('ieee_new','w') -ieee_err=open('ieee_err','w') - - -for index, rows in df.iterrows(): - link=rows['PDF Link'] - driver='' - try: - driver=fetchpage(link) - except: - print 'cannot fecth site!' - - abstract='' - try: - abstract=driver.find_element_by_xpath('//div[@ng-bind-html="::vm.details.abstract"]') - abstract=abstract.text - except: - print 'error' - - scope='' - try: - scope = driver.find_element_by_xpath('//div[@ng-bind-html="::vm.details.scope"]') - scope = scope.text - except: - print 'error' - - purpose='' - try: - purpose = driver.find_element_by_xpath('//div[@ng-bind-html="::vm.details.purpose"]') - purpose = purpose.text - except: - print 'error' - - quitdriver(driver) - - # print link - # print abstract - # print scope - # print purpose - - try: - ieee_new.write(str({'abstract_new':abstract.encode('utf-8'),'scope_new':scope.encode('utf-8'),'purpose_new':purpose.encode('utf-8')})+'\n') - ieee_new.flush() - - df_text.append({'abstract_new':abstract.encode('utf-8'),'scope_new':scope.encode('utf-8'),'purpose_new':purpose.encode('utf-8')},ignore_index=True) - except: - error = traceback.format_exc() - ieee_err.write(error) - ieee_err.flush() - -dff=open('ieee_new','r') -for line in dff: - line=line.strip() - jsn=ast.literal_eval(line) - print jsn - df_text=df_text.append(jsn,ignore_index=True) - -print df_text.shape,df.shape -df.reset_index(inplace=True, drop=True) -df_text.reset_index(inplace=True, drop=True) - -df_text=pd.concat([df,df_text],axis=1) -df_text.to_csv('IEEE-standards_rev1.csv') diff --git a/crawl_scripts/iso/crawl_iso_by_link.py b/crawl_scripts/iso/crawl_iso_by_link.py deleted file mode 100644 index 462a556..0000000 --- a/crawl_scripts/iso/crawl_iso_by_link.py +++ /dev/null @@ -1,177 +0,0 @@ -import signal -import traceback -import pandas as pd -from selenium import webdriver -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC -from selenium.webdriver.common.by import By -from bs4 import BeautifulSoup - - - -phantomjs_exec_path='/usr/local/bin/phantomjs' - -def quitdriver(driver): - try: - driver.service.process.send_signal(signal.SIGTERM) - driver.quit() - print 'driver quit successfully!' - return 'done' - except: - error = traceback.format_exc() - print 'error quitting',error - return 'error: quitting the driver ' + str(error) - -def featchtext(url): - error = '' - driver='' - try: - driver = webdriver.PhantomJS( - executable_path=phantomjs_exec_path) # or add to your PATH - driver.set_page_load_timeout(15) # seconds - - driver.maximize_window() - driver.get(url) - driver.page_source - elm = driver.find_element_by_xpath('./*') - text = elm.text - quitdriver(driver) - return text,error - - except: - error = traceback.format_exc() - if driver!='': - quitdriver(driver) - return '',error - - -def fetchpage(url): - error='' - driver='' - try: - driver = webdriver.PhantomJS( - executable_path=phantomjs_exec_path) - # driver=webdriver.Chrome(executable_path='/Users/asitangm/Desktop/current/chromedriver') - # driver.set_page_load_timeout(20) - driver.get(url) - print 'got page' - return driver - - except: - error = traceback.format_exc() - print error - if driver!='': - quitdriver(driver) - return '' - - -df=pd.read_csv('iso-gt.csv',index_col=0) -df_gt=pd.DataFrame(columns=['SoW','title','Standards','introduction','scope','id']) -tempwrite=open('tempwrite','w') - -for index, rows in df.iterrows(): - standards=rows['Standards'] - standards=standards.strip() - standards=standards.split('\r') - - sow=rows['SoW'] - for standardurl in standards: - print standardurl - driver=fetchpage(standardurl) - - if driver=='': - continue - - url='' - try: - ele = driver.find_element_by_xpath( - '//div[@class="heading-condensed"]').find_element_by_xpath( - '//a[@class="btn btn-default"]') - url=ele.get_attribute("href") - quitdriver(driver) - - except: - print 'no preview' - quitdriver(driver) - continue - - driver=fetchpage(url) - - try: - ele = WebDriverWait(driver, 10).until( - EC.presence_of_element_located((By.XPATH, '//div[@class="v-label v-widget h2 v-label-h2 v-label-undef-w"]')) - ) - except: - print standardurl,url,'no good!' - quitdriver(driver) - continue - - - # ele=driver.find_element_by_xpath('//div[@class="v-slot v-slot-toggle"]') - # ele.click() - try: - ele = driver.find_element_by_xpath('//div[@class="v-label v-widget h2 v-label-h2 v-label-undef-w"]') - id=ele.text - ele = driver.find_element_by_xpath('//div[@class="v-label v-widget std-title v-label-std-title v-has-width"]') - title=ele.text - except: - error = traceback.format_exc() - print error - - try: - soup = BeautifulSoup(driver.page_source) - except: - error = traceback.format_exc() - print error - quitdriver(driver) - continue - - tempwrite.write(id.encode('utf-8')) - tempwrite.flush() - tempwrite.write(title.encode('utf-8')) - tempwrite.flush() - - introduction='' - scope='' - try: - children=soup.find('div', {'class': 'sts-standard'}).findChildren(recursive=False) - - for i in range(3): - if 'intro' in children[i]['id']: - introduction=children[i].text - print 'intro found' - elif children[i]['id'][-1]=='1': - scope=children[i].text - print 'scope found' - - except: - error = traceback.format_exc() - print error - print 'missing intro or scope!',standardurl,url - - tempwrite.write(introduction.encode('utf-8')) - tempwrite.flush() - tempwrite.write(scope.encode('utf-8')) - tempwrite.flush() - tempwrite.write(sow) - tempwrite.flush() - tempwrite.write(url.encode('utf-8')) - tempwrite.flush() - - try: - df_gt=df_gt.append({'title':title.encode('utf-8'),'SoW':sow,'Standards':url.encode('utf-8'),'introduction':introduction.encode('utf-8'),'scope':scope.encode('utf-8'),'id':id.encode('utf-8')},ignore_index=True) - - except: - error = traceback.format_exc() - print error - - - - - quitdriver(driver) - - -df_gt.to_csv('gt_iso_fetched.csv',columns=['SoW','title','Standards','introduction','scope','id']) - - - diff --git a/crawl_scripts/iso/get_iso_links.py b/crawl_scripts/iso/get_iso_links.py deleted file mode 100755 index 6ebe29e..0000000 --- a/crawl_scripts/iso/get_iso_links.py +++ /dev/null @@ -1,164 +0,0 @@ -from selenium import webdriver -from selenium.common import exceptions - -from selenium.webdriver import DesiredCapabilities - -import csv -import json -import argparse -import logging -import re - - -class Node(object): - def __init__(self, code, field, url): - self.code = code - self.field = field - self.url = url - self.children = [] - - def add_child(self, obj): - self.children.append(obj) - - -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger(__name__) - -# construct the argument parse and parse the arguments -ap = argparse.ArgumentParser() -ap.add_argument("-f", "--fields", required=False, help="comma-separated list of ISO fields to be collected") -ap.add_argument("-o", "--output", required=False, help="path to the output CSV file") -ap.add_argument("-j", "--json", required=False, help="path to the output JSON file") -args = vars(ap.parse_args()) - -fields = args["fields"].split(",") if args["fields"] else [] -csv_output = args["output"] if args["output"] else "standards.csv" -json_output = args["json"] if args["json"] else "standards.json" - -driver = webdriver.Remote(command_executor='http://localhost:4444/wd/hub', desired_capabilities=DesiredCapabilities.CHROME) - -# Standards catalogue -iso_url = "https://www.iso.org/standards-catalogue/browse-by-ics.html" - -css_selectors = ["datatable-ics", "datatable-ics-children", "datatable-ics-projects"] - -root_ics = Node("0", "ICS", iso_url) - -tree_ics = {"code": 0, "field": "ICS", "url": iso_url, "children": []} - -def preorder_visit(node, prefix, filewriter): - code = node.code if node.code == "0" else "0." + str(node.code) - if str(node.code).startswith("ISO"): - code = "0." + str(prefix) + "." + str(node.code) - - filewriter.writerow([code.encode('ascii', errors='replace'), node.url, node.field.encode('ascii', errors='replace')]) - - prefix = str(node.code) - - for child in node.children: - preorder_visit(child, prefix, filewriter) - - -def get_link_text(link): - text = "" - try: - text = link.find_element_by_css_selector("td.sorting_1 a").text - except: - text = link.find_element_by_css_selector("td.sorting_1").text - pass - - return text - - -def get_link_href(link): - text = "" - try: - text = link.find_element_by_css_selector("td.sorting_1 a").get_attribute("href") - except: - pass - - return text - - -def get_ics(url, node_ics, node_ics_json): - driver.get(url) - - parent_ics = node_ics - - parent_ics_json = node_ics_json - - for selector in css_selectors: - try: - ics_table = driver.find_element_by_id(selector) - break - except exceptions.NoSuchElementException as ex: - print(ex.message) - - ics_table_id = ics_table.get_attribute("id") - - if ics_table_id != "datatable-ics-projects": - links = ics_table.find_elements_by_css_selector("tbody tr") - - urls = {get_link_text(link): [link.find_element_by_css_selector("td[data-title='Field']").text.replace('\n', ' '), get_link_href(link)] for link in links} - for key, url in urls.iteritems(): - if url[1] and (ics_table_id != "datatable-ics" or not fields or key in fields): - logger.info("Processing field/group/subgroup " + key) - - child_ics = Node(key, url[0], url[1]) - parent_ics.add_child(child_ics) - - child_ics_json = {"code": key, "field": url[0], "url": url[1], "children": []} - parent_ics_json["children"].append(child_ics_json) - - get_ics(url[1], child_ics, child_ics_json) - - else: - ics_rows = ics_table.find_elements_by_css_selector("tbody tr") - standards, standards_json = get_standards(ics_rows) - - for standard in standards: - parent_ics.add_child(standard) - - for standard_json in standards_json: - parent_ics_json["children"].append(standard_json) - - return - - -def get_standards(ics_rows): - standards = [] - standards_json = [] - for row in ics_rows: - if row.get_attribute("class") == "ng-hide odd" or row.get_attribute("class") == "ng-hide even": - continue - standard = row.find_element_by_css_selector("td[data-title='Standard and/or project']") - standard_id = standard.find_element_by_tag_name("a").text - standard_url = standard.find_element_by_tag_name("a").get_attribute("href") - - standard_title = "" - try: - standard_title = standard.find_element_by_css_selector("div.entry-summary").text - except: - logger.info(standard_id + " does not provide a description") - pass - - standard_node = Node(standard_id, standard_title, standard_url) - standard_json = {"code": re.sub(r"\.", "\.", standard_id), "field": standard_title, "url": standard_url} - - standards.append(standard_node) - standards_json.append(standard_json) - - return standards, standards_json - - -get_ics(iso_url, root_ics, tree_ics) - -logger.info("ISO links have been visited") - -with open(csv_output, 'a') as csvfile: - csvwriter = csv.writer(csvfile, delimiter=',', quotechar='"', quoting=csv.QUOTE_ALL) - preorder_visit(root_ics, "", csvwriter) - -with open(json_output, 'a') as jsonwriter: - jsonwriter.write(json.dumps(tree_ics, indent=True)) - jsonwriter.close() \ No newline at end of file diff --git a/crawl_scripts/iso/get_iso_standards_by_link.py b/crawl_scripts/iso/get_iso_standards_by_link.py deleted file mode 100644 index 7638056..0000000 --- a/crawl_scripts/iso/get_iso_standards_by_link.py +++ /dev/null @@ -1,169 +0,0 @@ -import pandas as pd -from selenium import webdriver -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC -from selenium.webdriver.common.by import By - -from selenium.webdriver import DesiredCapabilities - -import argparse -import logging -import json -import datetime -import traceback - -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger(__name__) - -# construct the argument parse and parse the arguments -ap = argparse.ArgumentParser() -ap.add_argument("-i", "--input", required=True, help="comma-separated list of ISO standards to be collected") -ap.add_argument("-o", "--output", required=True, help="path to the output JSON file") -args = vars(ap.parse_args()) - -input_file = args['input'] -output_file = args['output'] - -def get_standard_info(url): - standard = {} - - try: - driver = webdriver.Remote(command_executor='http://localhost:4444/wd/hub', - desired_capabilities=DesiredCapabilities.CHROME) - driver.get(url) - - heading = driver.find_element_by_css_selector("div.heading-condensed") - id = heading.find_element_by_id("itemReference").text - title = heading.find_element_by_css_selector("h3[itemprop='description']").text - - preview_url = "" - try: - preview_url = heading.find_element_by_css_selector("a").get_attribute("href") - except: - logger.warn("No preview has been found within " + url) - pass - - par_description = driver.find_elements_by_css_selector("div.col-md-7 div[itemprop='description'] p") - description = "" - if par_description is not None and len(par_description) > 1: - description = par_description[1].text - - general_info = driver.find_element_by_xpath('//div[@class="well clearfix"]') - rows = general_info.find_elements_by_css_selector("ul.refine li div.row div.col-sm-6") - current_status = rows[0].find_element_by_tag_name("span").text - publication_date = "" - try: - publication_date = rows[1].find_element_by_tag_name("span").text - except: - logger.warn("No publication date has been found within " + url) - pass - edition = rows[2].text - number_of_pages = "" - try: - number_of_pages = rows[3].text - except: - logger.warn("No number of pages has been found within " + url) - pass - - tc = general_info.find_element_by_css_selector("div.clearfix") - tc_a = tc.find_element_by_xpath('//div[@class="entry-name entry-block"]').find_element_by_tag_name("a") - tc_name = tc_a.text - tc_url = tc_a.get_attribute("href") - tc_title = tc.find_element_by_css_selector("div.entry-title").text - - ics_all = general_info.find_elements_by_xpath('//dl[@class="dl-inline no-bottom-margin"]/dd') - ics_list = [] - - for ics in ics_all: - # ics_a = ics.find_element_by_xpath('//div[@class="entry-name entry-block"]').find_element_by_tag_name("a") - ics_a = ics.find_element_by_xpath('.//div[@class="entry-name entry-block"]/a') - ics_name = ics_a.text - ics_url = ics_a.get_attribute("href") - ics_title = ics.find_element_by_css_selector("div.entry-title").text - - ics_list.append({'name': ics_name, 'url': ics_url, 'title': ics_title}) - - #stage = driver.find_element_by_xpath('//li[@class="active"]/a/span[@class="stage-code"]').text - - sections_list = get_preview(driver, preview_url) - - standard['datetime'] = str(datetime.datetime.utcnow()).split('.')[0] - standard['url'] = url - standard['id'] = id - standard['title'] = title - standard['description'] = description - standard['general_information'] = { - 'current_status': current_status, - 'publication_date': publication_date, - 'edition': edition, - 'number_of_pages': number_of_pages, - 'tc': {'name': tc_name, 'url': tc_url, 'title': tc_title}, - 'ics': ics_list - } - #standard['stage'] = stage - standard['preview'] = { - 'url': preview_url, - 'sections': sections_list - } - - driver.quit() - # driver.close() - - except: - error = traceback.format_exc() - logger.error("Error occurred while crawling " + url + " - Message: " + error) - - return standard - - -def get_preview(driver, url): - sections_list = [] - - try: - driver.get(url) - WebDriverWait(driver, 5).until(EC.presence_of_element_located((By.CLASS_NAME,"sts-standard"))) - - sections_all = driver.find_elements_by_xpath('//div[@class="sts-standard"]/div[@class="sts-section"]') - - for section in sections_all: - section_name = section.find_element_by_class_name("sts-sec-title").text - section_text = section.text - sections_list.append({'name': section_name, 'text': section_text}) - - # close_buttons = driver.find_elements_by_xpath('//span[@class="v-tabsheet-caption-close"]') - # for button in close_buttons: - # if button.text: - # button.click() - except: - logger.warn("No preview section has been found within " + url) - pass - - return sections_list - - -df = pd.read_csv(input_file, header=None) - -# urls are expected to be in the second column -# urls=set(df[2]) -urls=set(df[0]) - -with open(output_file,'w') as tempwrite: - tempwrite=open(output_file, 'w') - standards_list = [] - - tempwrite.write("[") - first_row=True - - for url in list(urls): - logger.info("Processing " + url) - standard = get_standard_info(url) - if standard: - # standards_list.append(standard) - if not first_row: - tempwrite.write(",") - tempwrite.write(json.dumps(standard, indent=True)) - tempwrite.flush() - first_row=False - - tempwrite.write("]") - tempwrite.close() \ No newline at end of file diff --git a/crawl_scripts/iso/gt_iso_fetched.csv b/crawl_scripts/iso/gt_iso_fetched.csv deleted file mode 100644 index 780eb44..0000000 --- a/crawl_scripts/iso/gt_iso_fetched.csv +++ /dev/null @@ -1,118 +0,0 @@ -,SoW,title,Standards,introduction,scope,id -0,"The premise of the NGCI Apex program is to discover, develop, and transition new prototype technologies, designed to protect the overall critical infrastructure of the financial sector. _New technologies will be deployed to identify, protect, detect, respond, and recover, from a wide range of evolving cyber threats across five identified asset classes: devices, applications, networks, data, and people. _These technologies will be monitored to ensure they remain effective and relevant in the face of evolving threats. _The CART has developed a matrixed approach to help identify the areas of focus for the NGCI Apex program (see Figure 8 below).",Information technology — Security techniques — Information security risk management,https://www.iso.org/obp/ui/#!iso:std:56742:en,"IntroductionThis International Standard provides guidelines for information security risk management in an organization, supporting in particular the requirements of an information security management (ISMS) according to ISO/IEC 27001. However, this International Standard does not provide any specific method for information security risk management. It is up to the organization to define their approach to risk management, depending for example on the scope of the ISMS, context of risk management, or industry sector. A number of existing methodologies can be used under the framework described in this International Standard to implement the requirements of an ISMS.This International Standard is relevant to managers and staff concerned with information security risk management within an organization and, where appropriate, external parties supporting such activities.","1   ScopeThis International Standard provides guidelines for information security risk management.This International Standard supports the general concepts specified in ISO/IEC 27001 and is designed to assist the satisfactory implementation of information security based on a risk management approach.Knowledge of the concepts, models, processes and terminologies described in ISO/IEC 27001 and ISO/IEC 27002 is important for a complete understanding of this International Standard.This International Standard is applicable to all types of organizations (e.g. commercial enterprises, government agencies, non-profit organizations) which intend to manage risks that could compromise the organization’s information security.",ISO/IEC 27005:2011(en) -1,"The premise of the NGCI Apex program is to discover, develop, and transition new prototype technologies, designed to protect the overall critical infrastructure of the financial sector. _New technologies will be deployed to identify, protect, detect, respond, and recover, from a wide range of evolving cyber threats across five identified asset classes: devices, applications, networks, data, and people. _These technologies will be monitored to ensure they remain effective and relevant in the face of evolving threats. _The CART has developed a matrixed approach to help identify the areas of focus for the NGCI Apex program (see Figure 8 below).",Information technology — Service management — Part 1: Service management system requirements,https://www.iso.org/obp/ui/#!iso:std:51986:en,"IntroductionThe requirements in this part of ISO/IEC 20000 include the design, transition, delivery and improvement of services that fulfil service requirements and provide value for both the customer and the service provider. This part of ISO/IEC 20000 requires an integrated process approach when the service provider plans, establishes, implements, operates, monitors, reviews, maintains and improves a service management system (SMS).Co-ordinated integration and implementation of an SMS provides ongoing control and opportunities for continual improvement, greater effectiveness and efficiency. The operation of processes as specified in this part of ISO/IEC 20000 requires personnel to be well organized and co-ordinated. Appropriate tools can be used to enable the processes to be effective and efficient.The most effective service providers consider the impact on the SMS through all stages of the service lifecycle, from strategy through design, transition and operation, including continual improvement.This part of ISO/IEC 20000 requires the application of the methodology known as “Plan-Do-Check-Act” (PDCA) to all parts of the SMS and the services. The PDCA methodology, as applied in this part of ISO/IEC 20000, can be briefly described as follows.Plan: establishing, documenting and agreeing the SMS. The SMS includes the policies, objectives, plans and processes to fulfil the service requirements.Do: implementing and operating the SMS for the design, transition, delivery and improvement of the services.Check: monitoring, measuring and reviewing the SMS and the services against the policies, objectives, plans and service requirements and reporting the results.Act: taking actions to continually improve performance of the SMS and the services.When used within an SMS, the following are the most important aspects of an integrated process approach and the PDCA methodology:a) understanding and fulfilling the service requirements to achieve customer satisfaction;b) establishing the policy and objectives for service management;c) designing and delivering services based on the SMS that add value for the customer;d) monitoring, measuring and reviewing performance of the SMS and the services;e) continually improving the SMS and the services based on objective measurements.Figure 1 illustrates how the PDCA methodology can be applied to the SMS, including the service management processes specified in Clauses 5 to 9, and the services. Each element of the PDCA methodology is a vital part of a successful implementation of an SMS. The improvement process used in this part of ISO/IEC 20000 is based on the PDCA methodology.Figure 1 -— -PDCA methodology applied to service managementThis part of ISO/IEC 20000 enables a service provider to integrate its SMS with other management systems in the service provider's organization. The adoption of an integrated process approach and the PDCA methodology enables the service provider to align or fully integrate multiple management system standards. For example, an SMS can be integrated with a quality management system based on ISO 9001 or an information security management system based on ISO/IEC 27001.ISO/IEC 20000 is intentionally independent of specific guidance. The service provider can use a combination of generally accepted guidance and its own experience.Users of an International Standard are responsible for its correct application. An International Standard does not purport to include all necessary statutory and regulatory requirements and contractual obligations of the service provider. Conformity to an International Standard does not of itself confer immunity from statutory and regulatory requirements.For the purposes of research on service management standards, users are encouraged to share their views on ISO/IEC 20000-1 and their priorities for changes to the rest of the ISO/IEC 20000 series. Click on the link below to take part in the online survey.ISO/IEC 20000-1 online survey","1   Scope1.1   GeneralThis part of ISO/IEC 20000 is a service management system (SMS) standard. It specifies requirements for the service provider to plan, establish, implement, operate, monitor, review, maintain and improve an SMS. The requirements include the design, transition, delivery and improvement of services to fulfil service requirements. This part of ISO/IEC 20000 can be used by:a) an organization seeking services from service providers and requiring assurance that their service requirements will be fulfilled;b) an organization that requires a consistent approach by all its service providers, including those in a supply chain;c) a service provider that intends to demonstrate its capability for the design, transition, delivery and improvement of services that fulfil service requirements;d) a service provider to monitor, measure and review its service management processes and services;e) a service provider to improve the design, transition and delivery of services through effective implementation and operation of an SMS;f) an assessor or auditor as the criteria for a conformity assessment of a service provider's SMS to the requirements in this part of ISO/IEC 20000.Figure 2 illustrates an SMS, including the service management processes. The service management processes and the relationships between the processes can be implemented in different ways by different service providers. The nature of the relationship between a service provider and the customer will influence how the service management processes are implemented.Figure 2 -— -Service management system1.2   ApplicationAll requirements in this part of ISO/IEC 20000 are generic and are intended to be applicable to all service providers, regardless of type, size and the nature of the services delivered. Exclusion of any of the requirements in Clauses 4 to 9 is not acceptable when a service provider claims conformity to this part of ISO/IEC 20000, irrespective of the nature of the service provider's organization.Conformity to the requirements in Clause 4 can only be demonstrated by a service provider showing evidence of fulfilling all of the requirements in Clause 4. A service provider cannot rely on evidence of the governance of processes operated by other parties for the requirements in Clause 4.Conformity to the requirements in Clauses 5 to 9 can be demonstrated by the service provider showing evidence of fulfilling all requirements. Alternatively, the service provider can show evidence of fulfilling the majority of the requirements themselves and evidence of the governance of processes operated by other parties for those processes, or parts of processes, that the service provider does not operate directly.The scope of this part of ISO/IEC 20000 excludes the specification for a product or tool. However, organizations can use this part of ISO/IEC 20000 to help them develop products or tools that support the operation of an SMS.NOTE ISO/IEC TR 20000-3 provides guidance on scope definition and applicability of this part of ISO/IEC 20000. This includes further explanation about the governance of processes operated by other parties.",ISO/IEC 20000-1:2011(en) -2,"The premise of the NGCI Apex program is to discover, develop, and transition new prototype technologies, designed to protect the overall critical infrastructure of the financial sector. _New technologies will be deployed to identify, protect, detect, respond, and recover, from a wide range of evolving cyber threats across five identified asset classes: devices, applications, networks, data, and people. _These technologies will be monitored to ensure they remain effective and relevant in the face of evolving threats. _The CART has developed a matrixed approach to help identify the areas of focus for the NGCI Apex program (see Figure 8 below).",Information technology — Security techniques — Information security controls for the energy utility industry,https://www.iso.org/obp/ui/#!iso:std:68091:en,"0 Introduction0.1 Background and contextThis document provides guiding principles based on ISO/IEC 27002:2013 “Code of practice for information security controls” for information security management applied to process control systems as used in the energy utility industry. The aim of this document is to extend the contents of ISO/IEC 27002:2013 to the domain of process control systems and automation technology, thus allowing the energy utility industry to implement a standardized and specific information security management system (ISMS) that is in accordance with ISO/IEC 27001:2013 and extends from the business to the process control level.In addition to the security objectives and measures that are set forth in ISO/IEC 27002:2013, the process control systems used by energy utilities and energy suppliers are subject to further special requirements. In comparison with conventional ICT environments (e.g. office IT, energy trading systems), there are fundamental and significant differences with respect to the development, operation, repair, maintenance and operating environment of process control systems. Furthermore, the process technology referred to in this document can represent integral components of critical infrastructures. This means they are therefore essential for the secure and reliable operation of such infrastructures. These distinctions and characteristics need to be taken into due consideration by the management processes for process control systems and justify separate consideration within the ISO/IEC 27000 family of standards.From the viewpoint of design and function, process control systems used by the energy utility sector are in fact information processing systems. They collect process data and monitor the status of the physical processes using sensors. The systems then process this data and generate control outputs that regulate actions using actuators. The control and regulation is automatic but manual intervention by operating personnel is also possible. Information and information processing systems are therefore an essential part of operational processes within energy utilities. This means that it is important that appropriate protection measures be applied in the same manner as for other organizational units.Software and hardware (e.g. programmable logic) components based on standard ICT technology are increasingly utilized in process control environments and are also covered in this document. Furthermore, process control systems in the energy utility sector are increasingly interconnected to form complex systems. Risks arising from this trend need to be considered in a risk assessment.The information and information processing systems in process control environments are also exposed to an increasing number of threats and vulnerabilities. It is therefore essential that, in the process control domain of the energy utility industry, adequate information security is achieved through the implementation and continuous improvement of an ISMS in accordance with ISO/IEC 27001:2013.Effective information security in the process control domain of the energy utility sector can be achieved by establishing, implementing, monitoring, reviewing and, if necessary, improving the applicable measures set forth in this document, in order to attain the specific security and business objectives of the organization. It is important to give particular consideration here to the special role of the energy utilities in society and to the economic necessity of a secure and reliable energy supply. Ultimately, the overall success of the cybersecurity of energy industries is based on collaborative efforts by all stakeholders (vendors, suppliers, customers, etc.).0.2 Security considerations for process control systems used by the energy utilitiesThe requirement for a general and overall information security framework for the process control domain of the energy utility industry is based on several basic requirements:a) Customers expect a secure and reliable energy supply.b) Legal and regulatory requirements demand safe, reliable and secure operation of energy supply systems.c) Energy providers require information security in order to safeguard their business interests, meet customers’ needs and comply with the legal regulations.0.3 Information security requirementsIt is essential that energy utility organizations identify their security requirements. There are three main sources of security requirements:a) The results of an organization’s risk assessment, taking into account the organization’s general business strategies and objectives. Through a risk assessment, risk sources and events are identified; potential consequences and likelihood of the occurrence of the risks are assessed.b) The requirements which result from legislation and bye-laws, regulations and contracts which have to be fulfilled by an organization, and sociocultural requirements. Particular examples include safeguarding a reliable, effective and secure energy supply as well as the reliable fulfilment of the requirements of a deregulated energy market, in particular the reliable and secure transfer of data with external parties.c) The specific principles, objectives and business requirements placed on information processing, which were developed by the organization for supporting its business operations.NOTE It is important that the energy utility organization ensure that security requirements of process control systems are analysed and adequately covered in policies for information security. The analysis of the information security requirements and objectives include the consideration of all relevant criteria for a secure energy supply and delivery, e.g.— Impairment of the security of energy supply;— Restriction of energy flow;— Affected share of population;— Danger of physical injury;— Effects on other critical infrastructures;— Effects on information privacy;— Financial impacts.The necessary security measures or controls are determined by the methodical assessment of security risks. It is necessary that the cost of controls be balanced against the economic losses that can be incurred due to security issues. The results of the risk assessment facilitate:— the definition of adequate management actions and priorities for the management of information security risks; and— the implementation of the controls chosen to protect against these risks.The risk assessment should be repeated periodically in order to take all changes into account, which can affect the results assessed.Requirements for the risk assessment and control selection are given in ISO/IEC 27001:2013.0.4 Selecting controlsOnce the security requirements and risks have been identified and decisions taken on how to deal with the risks, appropriate controls are then selected and implemented in order to ensure that the risks are reduced to an acceptable level.In addition to the controls provided by a comprehensive information security management system, this document provides additional assistance and sector-specific measures for the process control systems used by the energy utility sector, taking into consideration the special requirements in these environments. If necessary, further measures can be developed to fulfil particular requirements. The selection of security measures depends upon the decisions taken by the organization on the basis of its own risk acceptance criteria, the options for dealing with the risk and the general risk management approach of the organization. The selection of measures should also take relevant national and international law, legal ordinances and regulations into consideration.0.5 AudienceThis document is targeted at the persons responsible for the operation of process control systems used by energy utilities, information security managers, vendors, system integrators and auditors. For this target group, it details the fundamental measures in accordance with the objectives of ISO/IEC 27002:2013 and defines specific measures for process control systems of the energy utility industry, their supporting systems and the associated infrastructure.","1   ScopeThis document provides guidance based on ISO/IEC 27002:2013 applied to process control systems used by the energy utility industry for controlling and monitoring the production or generation, transmission, storage and distribution of electric power, gas, oil and heat, and for the control of associated supporting processes. This includes in particular the following:— central and distributed process control, monitoring and automation technology as well as information systems used for their operation, such as programming and parameterization devices;— digital controllers and automation components such as control and field devices or Programmable Logic Controllers (PLCs), including digital sensor and actuator elements;— all further supporting information systems used in the process control domain, e.g. for supplementary data visualization tasks and for controlling, monitoring, data archiving, historian logging, reporting and documentation purposes;— communication technology used in the process control domain, e.g. networks, telemetry, telecontrol applications and remote control technology;— Advanced Metering Infrastructure (AMI) components, e.g. smart meters;— measurement devices, e.g. for emission values;— digital protection and safety systems, e.g. protection relays, safety PLCs, emergency governor mechanisms;— energy management systems, e.g. of Distributed Energy Resources (DER), electric charging infrastructures, in private households, residential buildings or industrial customer installations;— distributed components of smart grid environments, e.g. in energy grids, in private households, residential buildings or industrial customer installations;— all software, firmware and applications installed on above-mentioned systems, e.g. DMS (Distribution Management System) applications or OMS (Outage Management System);— any premises housing the above-mentioned equipment and systems;— remote maintenance systems for above-mentioned systems.This document does not apply to the process control domain of nuclear facilities. This domain is covered by IEC 62645.This document also includes a requirement to adapt the risk assessment and treatment processes described in ISO/IEC 27001:2013 to the energy utility industry-sector–specific guidance provided in this document.",ISO/IEC 27019:2017(en) -3,"The premise of the NGCI Apex program is to discover, develop, and transition new prototype technologies, designed to protect the overall critical infrastructure of the financial sector. _New technologies will be deployed to identify, protect, detect, respond, and recover, from a wide range of evolving cyber threats across five identified asset classes: devices, applications, networks, data, and people. _These technologies will be monitored to ensure they remain effective and relevant in the face of evolving threats. _The CART has developed a matrixed approach to help identify the areas of focus for the NGCI Apex program (see Figure 8 below).",Information technology — Security techniques — Code of practice for information security controls based on ISO/IEC 27002 for cloud services,https://www.iso.org/obp/ui/#!iso:std:43757:en,"IntroductionThe guidelines contained within this Recommendation | International Standard are in addition to and complement the guidelines given in ISO/IEC 27002.Specifically, this Recommendation | International Standard provides guidelines supporting the implementation of information security controls for cloud service customers and cloud service providers. Some guidelines are for cloud service customers who implement the controls, and others are for cloud service providers to support the implementation of those controls. The selection of appropriate information security controls and the application of the implementation guidance provided, will depend on a risk assessment and any legal, contractual, regulatory or other cloud-sector specific information security requirements.",1   ScopeThis Recommendation | International Standard gives guidelines for information security controls applicable to the provision and use of cloud services by providing:– additional implementation guidance for relevant controls specified in ISO/IEC 27002;– additional controls with implementation guidance that specifically relate to cloud services.This Recommendation | International Standard provides controls and implementation guidance for both cloud service providers and cloud service customers.,ISO/IEC 27017:2015(en) -4,"The premise of the NGCI Apex program is to discover, develop, and transition new prototype technologies, designed to protect the overall critical infrastructure of the financial sector. _New technologies will be deployed to identify, protect, detect, respond, and recover, from a wide range of evolving cyber threats across five identified asset classes: devices, applications, networks, data, and people. _These technologies will be monitored to ensure they remain effective and relevant in the face of evolving threats. _The CART has developed a matrixed approach to help identify the areas of focus for the NGCI Apex program (see Figure 8 below).",Information technology — Security techniques — Code of practice for Information security controls based on ISO/IEC 27002 for telecommunications organizations,https://www.iso.org/obp/ui/#!iso:std:64143:en,,,ISO/IEC 27011:2016(en) -5,"The premise of the NGCI Apex program is to discover, develop, and transition new prototype technologies, designed to protect the overall critical infrastructure of the financial sector. _New technologies will be deployed to identify, protect, detect, respond, and recover, from a wide range of evolving cyber threats across five identified asset classes: devices, applications, networks, data, and people. _These technologies will be monitored to ensure they remain effective and relevant in the face of evolving threats. _The CART has developed a matrixed approach to help identify the areas of focus for the NGCI Apex program (see Figure 8 below).",Information technology — Security techniques — Sector-specific application of ISO/IEC 27001 — Requirements,https://www.iso.org/obp/ui/#!iso:std:42508:en,,"1   ScopeThis International Standard defines the requirements for the use of ISO/IEC 27001 in any specific sector (field, application area or market sector). It explains how to include requirements additional to those in ISO/IEC 27001, how to refine any of the ISO/IEC 27001 requirements, and how to include controls or control sets in addition to ISO/IEC 27001:2013, Annex A.This International Standard ensures that additional or refined requirements are not in conflict with the requirements in ISO/IEC 27001.This International Standard is applicable to those involved in producing sector-specific standards that relate to ISO/IEC 27001.",ISO/IEC 27009:2016(en) -6,"The premise of the NGCI Apex program is to discover, develop, and transition new prototype technologies, designed to protect the overall critical infrastructure of the financial sector. _New technologies will be deployed to identify, protect, detect, respond, and recover, from a wide range of evolving cyber threats across five identified asset classes: devices, applications, networks, data, and people. _These technologies will be monitored to ensure they remain effective and relevant in the face of evolving threats. _The CART has developed a matrixed approach to help identify the areas of focus for the NGCI Apex program (see Figure 8 below).",Health informatics — Information security management in health using ISO/IEC 27002,https://www.iso.org/obp/ui/#!iso:std:62777:en,"IntroductionThis International Standard provides guidance to healthcare organizations and other custodians of personal health information on how best to protect the confidentiality, integrity and availability of such information. It is based upon and extends the general guidance provided by ISO/IEC 27002:2013 and addresses the special information security management needs of the health sector and its unique operating environments. While the protection and security of personal information is important to all individuals, corporations, institutions and governments, there are special requirements in the health sector that need to be met to ensure the confidentiality, integrity, auditability and availability of personal health information. This type of information is regarded by many as being among the most confidential of all types of personal information. Protecting this confidentiality is essential if the privacy of subjects of care is to be maintained. The integrity of health information is to be protected to ensure patient safety, and an important component of that protection is ensuring that the information’s entire life cycle be fully auditable. The availability of health information is also critical to effective healthcare delivery. Health informatics systems is to meet unique demands to remain operational in the face of natural disasters, system failures and denial-of-service attacks. Protecting the confidentiality, integrity and availability of health information therefore requires health sector specific expertise.Regardless of size, location and model of service delivery, all healthcare organizations need to have stringent controls in place to protect the health information entrusted to them. Yet many health professionals work as solo health providers or in small clinics that lack the dedicated IT resources to manage information security. Healthcare organizations therefore need clear, concise, and health-care-specific guidance on the selection and implementation of such controls. This International Standard is to be adaptable to the wide range of sizes, locations, and models of service delivery found in healthcare. Finally, with increasing electronic exchange of personal health information between health professionals (including use of wireless and Internet services), there is a clear benefit in adopting a common reference for information security management in healthcare.ISO/IEC 27002 is already being used extensively for health informatics IT security management through the agency of national or regional guidelines in Australia, Canada, France, the Netherlands, New Zealand, South Africa, the United Kingdom and elsewhere. ISO 27799 draws upon the experience gained in these national endeavours in dealing with the security of personal health information and is intended as a companion document to ISO/IEC 27002. It is not intended to supplant the ISO/IEC 27000- series of standards. Rather, it is a complement to these more generic standards.ISO 27799 applies ISO/IEC 27002 to the healthcare domain in a way that carefully considers the appropriate application of security controls for the purposes of protecting personal health information. These considerations have, in some cases, led the authors to conclude that application of certain ISO/IEC 27002 control objectives is essential if personal health information is to be adequately protected. ISO 27799 therefore places constraints upon the application of certain security controls specified in ISO/IEC 27002.All of the security control objectives described in ISO/IEC 27002 are relevant to health informatics, but some controls require additional explanation in regard to how they can best be used to protect the confidentiality, integrity and availability of health information. There are also additional health sector specific requirements. This International Standard provides additional guidance in a format that persons responsible for health information security can readily understand and adopt.In the health domain, it is possible for an organization (a hospital, say) to be certified using ISO/IEC 27001 without requiring certification against or even acknowledgement of ISO 27799. It is to be hoped, however, that as healthcare organizations strive to improve the security of personal health information, conformance with ISO 27799 as a stricter standard for healthcare will also become widespread.ObjectivesMaintaining information confidentiality, availability, and integrity (including authenticity, accountability and auditability) are the overarching goals of information security. In healthcare, privacy of subjects of care depends upon maintaining the confidentiality of personal health information. To maintain confidentiality, measures is also be taken to maintain the integrity of data, if for no other reason than that it is possible to corrupt the integrity of access control data, audit trails, and other system data in ways that allow breaches in confidentiality to take place or to go unnoticed. In addition, patient safety depends upon maintaining the integrity of personal health information, failure to do this can also result in illness, injury or even death. Likewise, a high level of availability is an especially important attribute of health systems, where treatment is often time-critical. Indeed, disasters that could lead to outages in other, non-health related, IT systems may be the very times when the information contained in health systems is most critically needed. Moreover, denial of service attacks against networked systems are increasingly common.The controls discussed in this International Standard are those identified as appropriate in healthcare to protect confidentiality, integrity and availability of personal health information and to ensure that access to such information can be audited and accounted for. These controls help to prevent errors in medical practice that might ensue from failure to maintain the integrity of health information. In addition, they help to ensure that the continuity of medical services is maintained.There are additional considerations that shape the goals of health information security. These includes the following:a) honouring legislative obligations as expressed in applicable data protection laws and regulations protecting a subject of care is right to privacy;1b) maintaining established privacy and security best practices in health informatics;c) maintaining individual and organizational accountability among health organizations and health professionals;d) supporting the implementation of systematic risk management within health organizations;e) meeting the security needs identified in common healthcare situations;f) reducing operating costs by facilitating the increased use of technology in a safe, secure, and well managed manner that supports, but does not constrain current health activities;g) maintaining public trust in health organizations and the information systems these organizations rely upon;h) maintaining professional standards and ethics as established by health-related professional organizations (insofar as information security maintains the confidentiality and integrity of health information);i) operating electronic health information systems in an environment appropriately secured against threats;j) facilitating interoperability among health systems, since health information increasingly flows among organizations and across jurisdictional boundaries (especially as such interoperability enhances the proper handling of health information to ensure its continued confidentiality, integrity and availability).Relation to information governance,2 corporate governance and clinical governanceWhile health organizations may differ in their positions on clinical governance and corporate governance, the importance of integrating and attending to information governance ought to be beyond debate as a vital support to both. As health organizations have become ever more critically dependent on information systems to support care delivery (e.g. by exploiting decision support technologies and trends towards “evidence based” rather than “experience based” healthcare), it has become evident that events in which losses of integrity, availability and confidentiality occur may have a significant clinical impact and that problems arising from such impacts will be seen to represent failures in the ethical and legal obligations inherent in a “duty of care”.All countries and jurisdictions will undoubtedly have case studies where such breaches have led to misdiagnoses, deaths, or protracted recoveries. Clinical governance frameworks need therefore to treat effective information security risk management as equal in importance to care treatment plans, infection management strategies and other “core” clinical management matters. This International Standard will assist those responsible for clinical governance in understanding the contribution made by effective information security strategies.Health information to be protectedThere are several types of information whose confidentiality, integrity and availability3 needs to be protected bya) personal health information,b) pseudonymized data derived from personal health information through some methodology for pseudonymous identification,c) statistical and research data, including anonymized data derived from personal health information by removal of personally identifying data,d) clinical/medical knowledge not related to any specific subjects of care, including clinical decision support data (e.g. data on adverse drug reactions),e) data on health professionals, staff and volunteers,f) information related to public health surveillance,g) audit trail data, produced by health information systems, that contain personal health information or pseudonymous data derived from personal health information, or that contain data about the actions of users in regard to personal health information, andh) system security data for health information systems, including access control data and other security related system configuration data, for health information systems.The extent to which confidentiality, integrity and availability need to be protected depends upon the nature of the information, the uses to which it is put, and the risks to which it is exposed. For example, statistical data [item c) above] may not be confidential, but protecting its integrity may be very important. Likewise, audit trail data [item g) above] might not require high availability (frequent archiving with a retrieval time measured in hours rather than seconds might suffice in a given application) but its content might be highly confidential. Risk assessment can properly determine the level of effort needed to protect confidentiality, integrity and availability (see B.4.4). The results of regular risk assessment need to be fitted to the priorities and resources of the implementing organization.Threats and vulnerabilities in health information securityTypes of information security threats and vulnerabilities vary widely, as do their descriptions. While none are truly unique to healthcare, what is unique in healthcare is the array of factors to be considered when assessing threats and vulnerabilities.By their nature, health organizations operate in an environment where visitors and the public at large can never be totally excluded. In large health organizations, the sheer volume of people moving through operational areas is significant. These factors increase the vulnerability of systems to physical threats. The likelihood that such threats will occur may increase when emotional or mentally ill subjects of care or relatives are present.The critical importance of correctly identifying subjects of care and correctly matching them to their health records leads health organizations to collect detailed identifying information. Regional or jurisdictional patient registries (i.e. registries of subjects of care) are sometimes the most comprehensive and up-to-date repositories of identifying information available in a jurisdiction. This identifying information is of great potential value to those who would use it to commit identity theft and so should be rigorously protected.Many health organizations are chronically under-funded and their staff members are sometimes obliged to work under significant stress and with systems kept in service long after they ought to have been retired. These factors can increase the potential for certain types of threat and can exacerbate vulnerabilities. On the other hand, clinical care involves a range of professional, technical, administrative, ancillary and voluntary staff, many of whom see their work as a vocation. Their dedication and diversity of experience can often usefully reduce exposure to vulnerabilities. The high level of professional training received by many health professionals also sets healthcare apart from many other industrial sectors in reducing the incidence of insider threats.The health environment, with its unique threats and vulnerabilities should therefore be considered with special care. Annex A contains an informative list of the types of threat that need to be considered by health organizations when they assess risks to the confidentiality, integrity and availability of health information and to the integrity and availability of related information systems.Who should read this International Standard?This International Standard is intended for those responsible for overseeing health information security and for healthcare organizations and other custodians of health information seeking guidance on this topic, together with their security advisors, consultants, auditors, vendors and third-party service providers.This International Standards authors do not intend to write a primer on computer security, nor to restate what has already been written in ISO/IEC 27002 or in ISO/IEC 27001. There are many security requirements that are common to all computer-related systems, whether used in financial services, manufacturing, industrial control, or indeed in any other organized endeavour. A concerted effort has been made to focus on security requirements necessitated by the unique challenges of delivering electronic health information that supports the provision of care.Benefits of using this International StandardISO/IEC 27002 is a broad and complex International Standard and its advice is not tailored specifically to healthcare. ISO 27799 allows for the implementation of ISO/IEC 27002 within health environments in a consistent fashion and with particular attention to the unique challenges that the health sector poses. By following it, healthcare organizations help to ensure that the confidentiality and integrity of data in their care is maintained, that critical health information systems remain available and that accountability for health information is upheld.The adoption of this International Standard by healthcare organizations both within and among jurisdictions will assist interoperation and enable the safe adoption of new collaborative technologies in the delivery of healthcare. Secure and privacy-protective information sharing can significantly improve healthcare outcomes.As a result of implementing this International Standard, healthcare organizations can expect to see the number and severity of their security incidents reduced, allowing resources to be redeployed to productive activities. IT security will thereby allow health resources to be deployed in a cost effective and productive manner. Indeed, research by the respected Information Security Forum and by market analysts has shown that good all-round security can have as much as a 2 % positive effect upon organizations’ results.Finally, a consistent approach to IT security, understandable by all involved in healthcare, will improve staff morale and increase the trust of the public in the systems that maintain personal health information.How to use this International StandardReaders not already familiar with ISO/IEC 27002 are urged to read the introductory clauses of that standard before continuing. The implementers of ISO 27799 is to read first thoroughly ISO/IEC 27002, as the text below will frequently refer the reader to the relevant clauses of that standard. The present International Standard cannot be fully understood without access to the full text of ISO/IEC 27002.Readers seeking guidance on how to implement ISO/IEC 27002 in a health environment will find a practical action plan described in Annex B. No mandatory requirements are contained in this clause. Instead, general advice and guidance are given on how best to proceed with implementation of ISO/IEC 27002 in healthcare. The clause is organized around a cycle of activities (plan/do/check/act) that are described in ISO/IEC 27001 and that, when followed, will lead to a robust implementation of an information security management system.Readers seeking specific advice on the security control security control categories and clauses described in ISO/IEC 27002 will find it in the clauses of this International Standard with the same clause number and title as is found in ISO/IEC 27002. This clause leads the reader through each of the eleven security control clauses of the ISO/IEC 27002. Minimum requirements are stated where appropriate and, in some cases, normative guidelines are set out on the proper application of certain ISO/IEC 27002 security controls to the protection of health information.Once ISO/IEC 27002 has been put into place, the ongoing management is considered essential if the benefits of the International Standard are to be maintained. Clause 18 discusses compliance assessment and the requirements for ongoing information security management. Annex C contains a self-assessment matrix with regard to compliance.This International Standard concludes with four informative appendices.Annex A describes the general threats to health information. Annex B briefly describes a practical action plan for implementing complementary information security related International Standards. Annex C provides a checklist for compliance to ISO 27799. Clause 2 lists the standards that are cited in a normative way; the Bibliography lists other related standards in health information security.","1   ScopeThis International Standard gives guidelines for organizational information security standards and information security management practices including the selection, implementation and management of controls taking into consideration the organization’s information security risk environment(s).This International Standard defines guidelines to support the interpretation and implementation in health informatics of ISO/IEC 27002 and is a companion to that International Standard.4This International Standard provides implementation guidance for the controls described in ISO/IEC 27002 and supplements them where necessary, so that they can be effectively used for managing health information security. By implementing this International Standard, healthcare organizations and other custodians of health information will be able to ensure a minimum requisite level of security that is appropriate to their organization’s circumstances and that will maintain the confidentiality, integrity and availability of personal health information in their care.This International Standard applies to health information in all its aspects, whatever form the information takes (words and numbers, sound recordings, drawings, video, and medical images), whatever means are used to store it (printing or writing on paper or storage electronically), and whatever means are used to transmit it (by hand, through fax, over computer networks, or by post), as the information is always be appropriately protected.This International Standard and ISO/IEC 27002 taken together define what is required in terms of information security in healthcare, they do not define how these requirements are to be met. That is to say, to the fullest extent possible, this International Standard is technology-neutral. Neutrality with respect to implementing technologies is an important feature. Security technology is still undergoing rapid development and the pace of that change is now measured in months rather than years. By contrast, while subject to periodic review, International Standards are expected on the whole to remain valid for years. Just as importantly, technological neutrality leaves vendors and service providers free to suggest new or developing technologies that meet the necessary requirements that this International Standard describes.As noted in the introduction, familiarity with ISO/IEC 27002 is indispensable to an understanding of this International Standard.The following areas of information security are outside the scope of this International Standard:a) methodologies and statistical tests for effective anonymization of personal health information;b) methodologies for pseudonymization of personal health information (see Bibliography for a brief description of a Technical Specification that deals specifically with this topic);c) network quality of service and methods for measuring availability of networks used for health informatics;d) data quality (as distinct from data integrity).",ISO 27799:2016(en) -7,"When the Cyber Apex Consortium contractor begins representational (open-source) architecture testing and operational architecture testing, using institution-specific parameters, (see Figure 10), different risk factors will apply. Poorly managed software integration for testing purposes has the potential to generate setbacks. Improper testing and evaluation methods could result in a cyber technology product not fully ready for deployment. The same is true of inaccurate threat modeling. _Not having deployable-ready technologies available to the customer can lead to schedule delays. _Sub-standard software performance may have the same effect. Since the NGCI Apex program will be broken up into distinct project efforts, some risks may be project dependent. ",Risk management — Principles and guidelines,https://www.iso.org/obp/ui/#!iso:std:43170:en,"IntroductionOrganizations of all types and sizes face internal and external factors and influences that make it uncertain whether and when they will achieve their objectives. The effect this uncertainty has on an organization's objectives is “risk”.All activities of an organization involve risk. Organizations manage risk by identifying it, analysing it and then evaluating whether the risk should be modified by risk treatment in order to satisfy their risk criteria. Throughout this process, they communicate and consult with stakeholders and monitor and review the risk and the controls that are modifying the risk in order to ensure that no further risk treatment is required. This International Standard describes this systematic and logical process in detail.While all organizations manage risk to some degree, this International Standard establishes a number of principles that need to be satisfied to make risk management effective. This International Standard recommends that organizations develop, implement and continuously improve a framework whose purpose is to integrate the process for managing risk into the organization's overall governance, strategy and planning, management, reporting processes, policies, values and culture.Risk management can be applied to an entire organization, at its many areas and levels, at any time, as well as to specific functions, projects and activities.Although the practice of risk management has been developed over time and within many sectors in order to meet diverse needs, the adoption of consistent processes within a comprehensive framework can help to ensure that risk is managed effectively, efficiently and coherently across an organization. The generic approach described in this International Standard provides the principles and guidelines for managing any form of risk in a systematic, transparent and credible manner and within any scope and context.Each specific sector or application of risk management brings with it individual needs, audiences, perceptions and criteria. Therefore, a key feature of this International Standard is the inclusion of “establishing the context” as an activity at the start of this generic risk management process. Establishing the context will capture the objectives of the organization, the environment in which it pursues those objectives, its stakeholders and the diversity of risk criteria – all of which will help reveal and assess the nature and complexity of its risks.The relationship between the principles for managing risk, the framework in which it occurs and the risk management process described in this International Standard are shown in Figure 1.When implemented and maintained in accordance with this International Standard, the management of risk enables an organization to, for example:— increase the likelihood of achieving objectives;— encourage proactive management;— be aware of the need to identify and treat risk throughout the organization;— improve the identification of opportunities and threats;— comply with relevant legal and regulatory requirements and international norms;— improve mandatory and voluntary reporting;— improve governance;— improve stakeholder confidence and trust;— establish a reliable basis for decision making and planning;— improve controls;— effectively allocate and use resources for risk treatment;— improve operational effectiveness and efficiency;— enhance health and safety performance, as well as environmental protection;— improve loss prevention and incident management;— minimize losses;— improve organizational learning; and— improve organizational resilience.This International Standard is intended to meet the needs of a wide range of stakeholders, including:a) those responsible for developing risk management policy within their organization;b) those accountable for ensuring that risk is effectively managed within the organization as a whole or within a specific area, project or activity;c) those who need to evaluate an organization's effectiveness in managing risk; andd) developers of standards, guides, procedures and codes of practice that, in whole or in part, set out how risk is to be managed within the specific context of these documents.The current management practices and processes of many organizations include components of risk management, and many organizations have already adopted a formal risk management process for particular types of risk or circumstances. In such cases, an organization can decide to carry out a critical review of its existing practices and processes in the light of this International Standard.In this International Standard, the expressions “risk management” and “managing risk” are both used. In general terms, “risk management” refers to the architecture (principles, framework and process) for managing risks effectively, while “managing risk” refers to applying that architecture to particular risks.Figure 1 -— -Relationships between the risk management principles, framework and process","1   ScopeThis International Standard provides principles and generic guidelines on risk management.This International Standard can be used by any public, private or community enterprise, association, group or individual. Therefore, this International Standard is not specific to any industry or sector.NOTE For convenience, all the different users of this International Standard are referred to by the general term “organization”.This International Standard can be applied throughout the life of an organization, and to a wide range of activities, including strategies and decisions, operations, processes, functions, projects, products, services and assets.This International Standard can be applied to any type of risk, whatever its nature, whether having positive or negative consequences.Although this International Standard provides generic guidelines, it is not intended to promote uniformity of risk management across organizations. The design and implementation of risk management plans and frameworks will need to take into account the varying needs of a specific organization, its particular objectives, context, structure, operations, processes, functions, projects, products, services, or assets and specific practices employed.It is intended that this International Standard be utilized to harmonize risk management processes in existing and future standards. It provides a common approach in support of standards dealing with specific risks and/or sectors, and does not replace those standards.This International Standard is not intended for the purpose of certification.",ISO 31000:2009(en) -8,"When the Cyber Apex Consortium contractor begins representational (open-source) architecture testing and operational architecture testing, using institution-specific parameters, (see Figure 10), different risk factors will apply. Poorly managed software integration for testing purposes has the potential to generate setbacks. Improper testing and evaluation methods could result in a cyber technology product not fully ready for deployment. The same is true of inaccurate threat modeling. _Not having deployable-ready technologies available to the customer can lead to schedule delays. _Sub-standard software performance may have the same effect. Since the NGCI Apex program will be broken up into distinct project efforts, some risks may be project dependent. ",Information technology — Service management — Part 1: Service management system requirements,https://www.iso.org/obp/ui/#!iso:std:51986:en,"IntroductionThe requirements in this part of ISO/IEC 20000 include the design, transition, delivery and improvement of services that fulfil service requirements and provide value for both the customer and the service provider. This part of ISO/IEC 20000 requires an integrated process approach when the service provider plans, establishes, implements, operates, monitors, reviews, maintains and improves a service management system (SMS).Co-ordinated integration and implementation of an SMS provides ongoing control and opportunities for continual improvement, greater effectiveness and efficiency. The operation of processes as specified in this part of ISO/IEC 20000 requires personnel to be well organized and co-ordinated. Appropriate tools can be used to enable the processes to be effective and efficient.The most effective service providers consider the impact on the SMS through all stages of the service lifecycle, from strategy through design, transition and operation, including continual improvement.This part of ISO/IEC 20000 requires the application of the methodology known as “Plan-Do-Check-Act” (PDCA) to all parts of the SMS and the services. The PDCA methodology, as applied in this part of ISO/IEC 20000, can be briefly described as follows.Plan: establishing, documenting and agreeing the SMS. The SMS includes the policies, objectives, plans and processes to fulfil the service requirements.Do: implementing and operating the SMS for the design, transition, delivery and improvement of the services.Check: monitoring, measuring and reviewing the SMS and the services against the policies, objectives, plans and service requirements and reporting the results.Act: taking actions to continually improve performance of the SMS and the services.When used within an SMS, the following are the most important aspects of an integrated process approach and the PDCA methodology:a) understanding and fulfilling the service requirements to achieve customer satisfaction;b) establishing the policy and objectives for service management;c) designing and delivering services based on the SMS that add value for the customer;d) monitoring, measuring and reviewing performance of the SMS and the services;e) continually improving the SMS and the services based on objective measurements.Figure 1 illustrates how the PDCA methodology can be applied to the SMS, including the service management processes specified in Clauses 5 to 9, and the services. Each element of the PDCA methodology is a vital part of a successful implementation of an SMS. The improvement process used in this part of ISO/IEC 20000 is based on the PDCA methodology.Figure 1 -— -PDCA methodology applied to service managementThis part of ISO/IEC 20000 enables a service provider to integrate its SMS with other management systems in the service provider's organization. The adoption of an integrated process approach and the PDCA methodology enables the service provider to align or fully integrate multiple management system standards. For example, an SMS can be integrated with a quality management system based on ISO 9001 or an information security management system based on ISO/IEC 27001.ISO/IEC 20000 is intentionally independent of specific guidance. The service provider can use a combination of generally accepted guidance and its own experience.Users of an International Standard are responsible for its correct application. An International Standard does not purport to include all necessary statutory and regulatory requirements and contractual obligations of the service provider. Conformity to an International Standard does not of itself confer immunity from statutory and regulatory requirements.For the purposes of research on service management standards, users are encouraged to share their views on ISO/IEC 20000-1 and their priorities for changes to the rest of the ISO/IEC 20000 series. Click on the link below to take part in the online survey.ISO/IEC 20000-1 online survey","1   Scope1.1   GeneralThis part of ISO/IEC 20000 is a service management system (SMS) standard. It specifies requirements for the service provider to plan, establish, implement, operate, monitor, review, maintain and improve an SMS. The requirements include the design, transition, delivery and improvement of services to fulfil service requirements. This part of ISO/IEC 20000 can be used by:a) an organization seeking services from service providers and requiring assurance that their service requirements will be fulfilled;b) an organization that requires a consistent approach by all its service providers, including those in a supply chain;c) a service provider that intends to demonstrate its capability for the design, transition, delivery and improvement of services that fulfil service requirements;d) a service provider to monitor, measure and review its service management processes and services;e) a service provider to improve the design, transition and delivery of services through effective implementation and operation of an SMS;f) an assessor or auditor as the criteria for a conformity assessment of a service provider's SMS to the requirements in this part of ISO/IEC 20000.Figure 2 illustrates an SMS, including the service management processes. The service management processes and the relationships between the processes can be implemented in different ways by different service providers. The nature of the relationship between a service provider and the customer will influence how the service management processes are implemented.Figure 2 -— -Service management system1.2   ApplicationAll requirements in this part of ISO/IEC 20000 are generic and are intended to be applicable to all service providers, regardless of type, size and the nature of the services delivered. Exclusion of any of the requirements in Clauses 4 to 9 is not acceptable when a service provider claims conformity to this part of ISO/IEC 20000, irrespective of the nature of the service provider's organization.Conformity to the requirements in Clause 4 can only be demonstrated by a service provider showing evidence of fulfilling all of the requirements in Clause 4. A service provider cannot rely on evidence of the governance of processes operated by other parties for the requirements in Clause 4.Conformity to the requirements in Clauses 5 to 9 can be demonstrated by the service provider showing evidence of fulfilling all requirements. Alternatively, the service provider can show evidence of fulfilling the majority of the requirements themselves and evidence of the governance of processes operated by other parties for those processes, or parts of processes, that the service provider does not operate directly.The scope of this part of ISO/IEC 20000 excludes the specification for a product or tool. However, organizations can use this part of ISO/IEC 20000 to help them develop products or tools that support the operation of an SMS.NOTE ISO/IEC TR 20000-3 provides guidance on scope definition and applicability of this part of ISO/IEC 20000. This includes further explanation about the governance of processes operated by other parties.",ISO/IEC 20000-1:2011(en) -9,"When the Cyber Apex Consortium contractor begins representational (open-source) architecture testing and operational architecture testing, using institution-specific parameters, (see Figure 10), different risk factors will apply. Poorly managed software integration for testing purposes has the potential to generate setbacks. Improper testing and evaluation methods could result in a cyber technology product not fully ready for deployment. The same is true of inaccurate threat modeling. _Not having deployable-ready technologies available to the customer can lead to schedule delays. _Sub-standard software performance may have the same effect. Since the NGCI Apex program will be broken up into distinct project efforts, some risks may be project dependent. ",Industrial automation systems and integration — Product data representation and exchange — Part 35: Conformance testing methodology and framework: Abstract test methods for standard data access interface (SDAI) implementations,https://www.iso.org/obp/ui/#!iso:std:29286:en,"IntroductionISO 10303 is an International Standard for the computer-interpretable representation of product information and for the exchange of product data. The objective is to provide a neutral mechanism capable of describing products throughout their life cycle. This mechanism is suitable not only for neutral file exchange, but also as a basis for implementing and sharing product databases, and as a basis for archiving.This part of ISO 10303 is a member of the conformance testing methodology and framework series. It specifies the abstract test methods for SDAI implementations. SDAI is the standard data access interface specification to data that has been defined using ISO 10303-11. SDAI is specified in ISO 10303-22. This part follows the general concepts of conformance testing defined in ISO 10303-31.Major subdivisions in this part of ISO 10303 are:— Abstract test cases, groups, suite and verdict criteria in clause 6;— SDAI operations wrapped in EXPRESS procedures and functions with verdict criteria in clause 7;— The EXPRESS structure test schema ESTS as the target for the abstract test cases in clause 8.","1   ScopeThis part of ISO 10303 specifies the abstract test methods and requirements for conformance testing of an implementation of a language binding of the SDAI. Since the SDAI is specified independently of any programming language, the abstract test methods presented in this part are applicable to all SDAI language bindings. The abstract test methods support as well the various implementation classes as specified in ISO 10303-22.The following are within the scope of this part of ISO 10303:— abstract test methods for software systems that implement the SDAI;— the specification, in a manner that is independent of any SDAI language binding, of the methods and approaches for testing of various SDAI operations;— the specification and documentation of abstract test cases.The following are outside the scope of this part of ISO 10303:— the development of test data and/or test programs for specific language bindings;— the specification of test methods, algorithms, or programs for the conformance testing of applications that interact with SDAI implementations;— the architecture and implementation approach for a conformance test system that realizes the test methods specified in this part of ISO 10303.",ISO/TS 10303-35:2003(en) -10,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.","Digital analytics and web analyses for purposes of market, opinion and social research — Vocabulary and service requirements",https://www.iso.org/obp/ui/#!iso:std:66187:en,"IntroductionAnalyses of digital behaviour and online digital statements by persons and companies have rapidly increased in importance. Examples are the measurement of the behaviour of website visitors, the measurement of behaviour by means of cookies, and the registration and measurement of statements and sentiments of users of social media.This document provides insight into the working methods of service providers in the fields of digital analytics and web analyses research and, in this way, provides clients with transparency regarding the services they offer. This document is intended to supplement and be used in conjunction with ISO 20252.Digital analytics and web analyses for the purpose of market, opinion and social research can be separated from the equivalent analyses carried out for non-research purposes. In both cases, the protection of privacy of the persons analysed is regulated by legal provisions that apply to the particular project and, furthermore, by the relevant professional codes of conduct and other ethical guidelines.","1   ScopeThis document specifies the terms and definitions, as well as the service requirements, for organizations and professionals that conduct digital analytics and web analyses for collecting, analysing and reporting of digital data for purposes of market, opinion and social research by various methods and techniques. It provides the criteria against which the quality of such services can be assessed and evaluated.This document applies to digital analytics and web analyses conducted by service providers on their own initiative, commissioned by clients or conducted by clients themselves.This document applies to digital and web analysis research activities such as:— understanding the usage of websites via the use of cookies, page impressions and other means, navigation across sites, time spent by visitors and their actions;— online metered panels, e.g. on-going measurement of web visitation via meters installed on panellists’ desktop, mobile or tablet devices;— tag-based solutions to measure online usage at universe level, which can be integrated with metered panel data to provide a hybrid measurement;— social media analytics which collect, aggregate and analyse online comments, and user-generated content such as blogs, forums and comments on news sites or other sites.NOTE Universe can also be known as population.This document can be construed to cover all forms of digital data collection including from desktop computers, tablets, mobile devices and over the top (OTT) devices as well as internet of things (IoT) devices where applicable.",ISO 19731:2017(en) -11,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Space systems — Cube satellites (CubeSats),https://www.iso.org/obp/ui/#!iso:std:60496:en,"IntroductionRecent years have seen an increase in the number of student satellites developed at universities around the world. To date, most university satellites require several years to develop and significant financial resources, making them prohibitive for small programs. New technological developments in small low-power electronics make smaller, lower-cost satellites feasible.The CubeSat program has developed a picosatellite standard that significantly reduces the cost and development time of picosatellites with a specific form factor. In addition, CubeSats can serve as platforms for in-space experimentation, as well as a means of space-qualifying future small-satellite hardware.The CubeSat Standard is an evolution of the picosatellites developed for Stanford’s OPAL mission. CubeSats are constrained to a 100 mm cube (not including deployment interface rails) with a mass of one kilogram or less. Led by Stanford University’s Space Systems Development Lab (SSDL), the CubeSat project is developed jointly by universities and industry worldwide. Within this international community CubeSat developments at the California Polytechnic State University (CalPoly) have been twofold: first, develop the standardized launcher-interface/deployer mechanism for CubeSats, and second, demonstrate the feasibility of developing a working CubeSat using low-cost, commercial off-the-shelf components. The project involves a multidisciplinary team of software, aerospace, manufacturing, electrical, and mechanical engineering undergraduate students.In recent years, more sophisticated capabilities have been demonstrated in CubeSats by major space corporations and major space customers. CubeSat concepts for inclusion in Mars exploration are in development. Entire companies have been established to solely support the global CubeSat marketplace.","1   ScopeThis document addresses CubeSats, CubeSat Deployer and related verification of assurance/quality terms and metrics.This document defines a unique class of picosatellite, the CubeSat. CubeSats are ideal as space development projects for universities around the world. In addition to their significant role in educating space scientists and engineers, CubeSats provide a low-cost platform for testing and space qualification of the next generation of small payloads in space. A key component of the project is the development of a standard CubeSat Deployer.This Deployer is capable of releasing a number of CubeSats as secondary payloads on a wide range of launchers. The standard Deployer requires all CubeSats to conform to common physical requirements, and share a standard Deployer interface. CubeSat development time and cost can be significantly reduced by the development of standards that are shared by a large number of spacecraft.Normative control of the CubeSat design, qualification and acceptance testing is generally applied from other small satellite specific standards with the exception of CubeSat/Deployer launch environment test.",ISO 17770:2017(en) -12,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Space systems — Design qualification and acceptance tests of small spacecraft and units,https://www.iso.org/obp/ui/#!iso:std:66008:en,"IntroductionThere is an increasing demand for small/micro/nano/pico satellite development and utilization worldwide; yet, there is no clear and globally accepted definition of what is considered “small”, “micro”, “nano” or “pico” satellites. These satellites are often built with emphasis on low cost and fast delivery. They are characterized by extensive use of non-space-qualified commercial-off-the-shelf (COTS) units. For the sake of convenience, the term “small spacecraft” is used throughout this document as a generic term to refer to these satellites.A small spacecraft is a satellite that utilizes non-traditional risk-taking development and management approaches to achieve low cost and fast delivery with a small number of team. To achieve these two points, low cost and fast delivery, satellite design relies on the use of non-space-qualified commercial-off-the-shelf (COTS) units, making satellite size inherently smaller. The design accepts a certain level of risk associated with the use of COTS.A certain set of tests is necessary to ensure the mission success of small spacecraft. Applying the same test requirements and methods as those applied to traditional large/medium satellites, however, will nullify the low-cost and fast-delivery advantages possessed by small spacecraft.This document is meant to improve the reliability of small spacecraft, especially those with commercial purpose, while maintaining the low-cost and fast-delivery nature of small spacecraft. This document intends to promote worldwide trade of small spacecraft products by providing a minimum level of assurance that a product made of non-space-qualified commercial-off-the-shelf parts and units can work in space. This document also aims to serve as a testing guideline for those who intend to enter satellite manufacturing through development of small spacecraft products.",,ISO 19683:2017(en) -13,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Ships and marine technology — Guidelines for the assessment of speed and power performance by analysis of speed trial data,https://www.iso.org/obp/ui/#!iso:std:61902:en,"IntroductionThis International Standard concerns the method of analysing the results obtained from speed trials.The primary purpose of speed and power trials is to determine a ship’s performance in terms of ship’s speed, power and propeller shaft speed under prescribed ship’s conditions and thereby verify the satisfactory attainment of a ship’s speed stipulated by Energy Efficiency Design Index (EEDI) regulations and/or contract. Ship’s speed is that realized under conditions stipulated by contract and/or EEDI regulations, which are usually; smooth hull and propeller surfaces, no wind, no waves, no current and deep water of 15°C.In general it cannot be expected that all such stipulated conditions will be met during the actual trials. In practice, certain corrections for the environmental conditions have to be considered, such as for water depth, wind, waves and current [1][2].The purpose of this International Standard is to define the basic requirements for the performance of speed trials, and provide procedures for evaluation and correction of speed trial data, covering all influences which may be relevant to the individual trial runs based on sound scientific grounds, thereby enabling owners and others to have confidence in the validity of the final results.This International Standard is intended to help the interested parties achieve the desired target accuracy of, within 2 % in shaft power and 0,1 kn in speed.The procedure specified in this International Standard has been developed largely on the basis of published data on speed trials and on ship’s performance, the more important among them being listed in Clause 2.ISO has invited the International Towing Tank Conference (ITTC) to co-operate on the development of a new standard for speed/power trials taking into account the new guidelines issued by ITTC and approved by MEPC65 for EEDI. The contribution of the STA-group and the ITTC is highly appreciated.Substitution of terms clauseThis International Standard is generally applied to those ships for which survey and certification of EEDI is required under International Maritime Organization (IMO) Resolution MEPC.214(63) [as amended by MEPC.234(65)]. In the case of other ships, to which the above IMO resolutions are not applicable, the terms or phrases of this International Standard are deemed to be replaced as necessary (e.g. “agreement between the Shipbuilder, the Owner and the Verifier” shall be read as “agreement between the Shipbuilder and the Owner” etc.)","1   ScopeThe primary purpose of speed and power trials is to determine a ship’s performance in terms of ship’s speed, power and propeller shaft speed under prescribed ship’s conditions and thereby verify the satisfactory attainment of a ship’s speed stipulated by EEDI regulations and/or contract.This International Standard defines and specifies the following procedures to be applied in the preparation, execution, analysis and reporting of speed trials for ships, with reference to the effects which may have an influence upon the speed, power and propeller shaft speed relationship:— the responsibility of each party involved,— the trial preparations,— the ship’s condition,— the limiting weather and sea conditions,— the trial procedure,— the execution of the trial,— the measurements required,— the data acquisition and recording,— the procedures for the evaluation and correction,— the processing of the results.The contracted ship’s speed and the ship’s speed for EEDI are determined for stipulated conditions and at specific draughts (contract draught and/or EEDI draught). For EEDI, the environmental conditions are: no wind, no waves, no current and deep water of 15°C.Normally, such stipulated conditions are unlikely to be experienced in part or in full during the actual trials. In practice, certain corrections for the environmental conditions such as water depth, surface wind, waves, current and deviating ship draught, have to be considered. For this purpose, during the speed and power trials, not only are shaft power and ship’s speed measured, but also relevant ship data and environmental conditions.The applicability of this International Standard is limited to ships of the displacement type.In this International Standard, it was decided that the unit to express the amount of an angle should be “rad” (radian) and that the unit of speed should be “m/s” (metres per second). Nevertheless, “°” (degree) as a unit for an angle and “knots” as a unit for speed may be used. However, the units for the angles and speeds which appear in calculation formulas are to be “rad” and “m/s” without exception. Moreover, for the convenience of the users of this International Standard, numerical values using the units of degree and knots are stated jointly at appropriate places.If it is physically impossible to meet the conditions in this International Standard, a practical treatment is allowed based on the documented mutual agreement among the Owner, the Verifier and the Shipbuilder.",ISO 15016:2015(en) -14,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Ships and marine technology — Computer applications — Specification of Maritime Safety Markup Language (MSML),https://www.iso.org/obp/ui/#!iso:std:41172:en,,"1   Scope1.1   InclusionsThis Publicly Available Specification specifies the XML application MSML (Maritime Safety Markup Language). MSML is a language for structuring information and the goal is to create an open standard that can be used generally in the maritime sector. This Publicly Available Specification emphasizes the following aspects of MSML:• functional applicability in the maritime arena with focus on repair and maintenance and related safety aspects;• secure transfer of information between vessel and shore base;• extensibility to incorporate increased functionality;• use of standardized XML support whenever needed.The basis of MSML is the data model which defines what kind of maritime data, related to vessel and shore base, it is possible to store. The data model represents the current state and only limited historic information is kept in the data model. This Publicly Available Specification defines the following information areas of the data model:• the vessel,• the actual use and status of the vessel,• the shore base,• the actual use and status of one berth of the shore base,• the relation between the vessel and the shore base,• the history of repair and maintenance and what has been done on each occasion.The data model of MSML makes it possible to describe the following states:• a vessel with/without defined task,• a berth of a shore base with/without defined task,• a vessel and a berth of a shore base with/without relation.Defining states makes it possible to define transactions, i.e. sequences of actions for fulfilling specific intentions. We have the general transactions:• assigning task to/removing task from vessel,• assigning task to/removing task from a berth of a shore base (for a specific vessel),• assigning relation/removing relation vessel — a berth of a shore base,• assigning/removing specific pieces of data,• reading data.This Publicly Available Specification defines perspectives associated with the data model of MSML. The term indicates that the MSML data model can be seen from different views. Perspectives contain information that is orthogonal to the data model. Two perspectives are defined:• inspection — an inherent perspective that makes it possible to reference results of vessel inspections;• repair and maintenance — currently the main focus of MSML.There are also other sources of information that are associated with MSML. The data model of MSML assumes that information concerning individual crew and passenger members is handled adequately using the muster list and passenger list, respectively. However, for the data model of MSML groups of individuals are considered. The primary purpose of MSML is to make it possible to identify available capabilities and resources and not to handle individuals. However, a reference is included in MSML where to find detailed information.A certain amount of shore base information is included in the data model of MSML. The main reason to include this information is to support vessel safety related aspects and vessel repair and maintenance.1.2   LimitationsAn MSML instance will contain extensive history information only if included in the definition of a perspective. For example, repair and maintenance contains an extensive history of what has been changed and when, but there is no extensive history information for e.g. bunkering. The reason for including history is that actions made in the past can affect future events and decisions. However, some minor historic information is included in the data model of MSML (i.e. not within perspectives), e.g. the history of vessel name changes. If other types of extensive history information are needed, a new version of the MSML instance has to be stored for each significant change and this must be handled outside the scope of MSML (probably using a native XML database).The data model of MSML should not primarily be seen as a support for normal work onboard. Instead it is an add-on support for transfers of safety related information to/from the vessel from/to external units and within the vessel. For example, current propeller revolutions per minute cannot be extracted from the computerized MSML system, instead the value is read directly from the ordinary equipment. In the same way the shore base part of the MSML data model is seen as a support to the safety related vessel information and not from normal work ashore. Generally, normal dynamic information during a voyage between two shore bases is not included within MSML. On the other hand, alarms and malfunctioning units are generally safety related and of interest internally and externally and thus included in the data model of MSML. If alarms are set automatically or not is a question outside the scope of MSML.1.3   ExclusionsThe following aspects are not included in the scope of MSML:• aspects concerning costs and fees;• geographic information;• logs, e.g. log of communication;• specific cargo information, e.g. tracing, Smart and Secure Tradelanes;• presentation of information;• users and their authorities;• actual use of data and instances, e.g. definition of messages;• bindings to protocols.1.4   SummaryTo sum up the main characteristics of MSML, it• contains an XML-based data model for information exchange and processing in safety-critical maritime applications;• does not describe how data is used;• supports information security and extensibility;• is a framework and future open standard for the maritime safety sector.The principal system dependences on MSML are shown in Figure 2.Figure 2 -— -Principal system dependences on MSMLWe see that MSML will affect system design and definition of messages but MSML is not affected. Thus MSML can remain a stable standard for a wide variety of applications.",ISO/PAS 22853:2005(en) -15,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Guidelines for assessing the adverse environmental impact of fire effluents — Part 2: Methodology for compiling data on environmentally significant emissions from fires,https://www.iso.org/obp/ui/#!iso:std:50635:en,"IntroductionPollution of indoor and outdoor environments by complex mixtures of physical and chemical combustion products is a causative agent of human health and environmental problems on a global scale. Uncontrolled and incomplete combustion processes are responsible for the emission of chemical and physical pollutants in quantities that affect humans and the environment. This problem is severe, not only in industrialized regions, but also in less developed, predominantly agricultural areas where people depend on biomass as fuel for cooking, heating and lighting.General awareness of the fact that fires can present acute and persistent adverse effects on the environment has been accentuated by a number of high impact incidents over the past half century. Annex A contains a limited number of examples of emissions associated with various types of fires which could be expected to affect the environment adversely. These examples should not be considered as describing typical observations as fires and fire impacts are generally not comparable.The serious consequences of such events have confirmed that the environmental impact of fires is an international issue that urgently needs to be dealt with globally and systematically. The ISO 26367 series of International Standards provides a framework for a common treatment of the environmental impact of fires in answer to this pressing need.This document provides methods for the compilation of relevant data for assessing damage after a fire and for use in environmental fire hazard and risk assessments.In view of the fact that relevant quantitative data on environmentally hazardous components of fire effluents cannot routinely be obtained from accidental fires, appropriate data may also be obtained from real-scale fire tests and simulations involving physical fire models.The Sixth EC Environmental Action Programme, Environment 2010: Our Future, Our Choice spells out the objective of controlling levels of man-made chemicals so that they do not give rise to significant adverse impacts on human health or the environment[1]. In the case of eco-toxicity indicators, toxicity impact potential (TIP) characterization factors are used and are often developed using a multimedia environmental fate model to predict the movement and distribution of a given substance in environmental regions of interest[2].In the case of organohalogen compounds that are known to have natural as well as man-made sources, TIP characterization can be difficult, a fact acknowledged by the Convention for the Protection of the Marine Environment of the North-East Atlantic (OSPAR) in quality status report, QSR 2000, as follows: “Many substances occur naturally in soils, plants and animals. It is therefore important to distinguish between the natural concentrations and fluxes of these substances and the extent to which they are augmented by human activities. Such distinctions are essential if informed decisions are to be made regarding the management of contaminants”[3].This document is principally intended for use by the following parties: environmental regulatory authorities, fire fighters and investigators, storage facility operators, materials and product manufacturers, property owners, and public health authorities.","1   ScopeThis document specifies a methodology for compiling the information needed to assess the environmental damage caused by a fire incident. This includes conducting a site reconnaissance, establishing data quality objectives and designing sampling programmes. This document also provides a standardized method for reporting the results of the compilation and findings of the analyses, for use in contingency planning or for the assessment of the potential adverse environmental impact of a specific fire incident. This document does not include specific instruction on sampling and analysis of fire effluents. Sampling and analysis are the focus of a future document in the ISO 26367 series. This document is applicable to uncontrolled fires, including fires in commercial and domestic premises, unenclosed commercial sites, agricultural storage sites, wildland and forest fires, as well as fires involving road, rail and maritime transport systems.This document focuses on the fire effluents that are environmentally significant, including pollutants causing short-term effects (e.g. pollutants causing biotope damage and components of smog) and long-term effects (e.g. persistent organic pollutants, POP). Since it is not possible to treat all potential pollutants that could be found in fire effluents in a single document, a list of those pollutants specifically addressed in this document is given below:a) pollutants with short-term effects: halogenated acids (HX), metals, nitrogen oxides (NOx), particulates, and sulfur oxides (SOx);b) pollutants with long-term effects: metals, particulates, perfluorinated compounds (PFC), polyaromatic hydrocarbons (PAH), polychlorinated biphenyls (PCB), and polyhalogenated dioxins and furans (PXDD/PXDF).The reporting template provided in Annex D proposes additional potential pollutants and indicators for inclusion in the compilation. Not all of the pollutants and indicators listed in Table D.1 are relevant to every fire site, and others not mentioned in the table can apply.This document does not include direct acute toxicity issues on humans, which are covered by other standards, such as ISO 13344 and ISO 13571.",ISO 26367-2:2017(en) -16,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Guidelines for assessing the adverse environmental impact of fire effluents — Part 1: General,https://www.iso.org/obp/ui/#!iso:std:43529:en,"IntroductionIn view of the fact that relevant quantitative data on environmentally hazardous components of fire effluents cannot routinely be obtained from accidental fires, appropriate data may also have to be obtained from real scale fire tests and simulations involving physical fire models.General awareness of the fact that large fires present dramatic and persistent adverse effects on the environment has been accentuated by a number of high-impact incidents over the past half-century. Annex A contains a list of major fire incidents in recent years.The serious consequences of such events have confirmed that the environmental impact of fires is a pressing international issue that urgently needs to be dealt with globally and systematically. This part of ISO 26367 provides a framework for a common treatment of the environmental impact of fires in answer to this pressing need.It is principally intended for use by the following parties:— fire-fighters and investigators;— building owners and managers;— storage facility operators;— materials and product manufacturers;— insurance providers;— environmental regulatory authorities;— civil defence organizations;— public health authorities.","1   ScopeThis part of ISO 26367 gives guidelines whose primary focus is the assessment of the adverse environmental impact of fire effluents, including those from fires occurring in commercial and domestic premises, unenclosed commercial sites, industrial and agricultural sites, as well as those involving road, rail and maritime transport systems. Its scope does not extend to direct acute toxicity issues, which are covered by other existing International Standards.It is intended to serve as a tool for the development of standard protocols fora) the assessment of local and remote adverse environmental impacts of fires, and the definition of appropriate preventive measures,b) post-fire analyses to identify the nature and extent of the adverse environmental impacts of fires, andc) the collection of relevant data for use in environmental fire hazard assessments.This part of ISO 26367 is intended as an umbrella document to set the scene concerning what should be considered when determining the environmental impact of fires. It is not a comprehensive catalogue of methods and models defining how to determine the environmental impact of fires, intended to be addressed by other parts of ISO 26367.",ISO 26367-1:2011(en) -17,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information — Imagery and gridded data,https://www.iso.org/obp/ui/#!iso:std:29775:en,"IntroductionThis Technical Report is intended to identify the manner by which ISO/TC 211 should handle imagery and gridded data in the context of its standards.A natural image is a radiometric representation of the real world, as seen by an optical or other sensor. A synthetic image is a generated depiction of spatial data in a visual form. Both natural and synthetic image data are being used increasingly in the area of geographic information/geomatics. Gridded data is the representation of attribute values in terms of a spatial grid. All three of these forms of spatial information can be handled in a similar manner by representation in terms of a raster or matrix structure. Both a raster and a matrix are array structures that may be coded somewhat differently due to the characteristics of the data.An increasingly large volume of natural and synthetic image and gridded data is being produced. For example, current imaging satellites include LandSAT, RADARSAT, SPOT, ERS, MOS, JERS and NOAA. Also, there are military satellite images and other public and private domain image sources. There are current plans to launch more than one hundred Earth observing satellites by the year 2005, with 60 of those scheduled for launch by the end of 1999, with some of these satellites generating as many as 22 000 scenes per day. Digital orthophoto mapping is another field in which major financial investment is being made and in which a large volume of raster data is being produced. Obviously, there will be great demand for this imagery to be in a standard format in order to be useful with other sources of data.Large volumes of synthetic imagery are being produced by the scanning of the current large inventory of paper maps and charts, and it is expected that the volume of this data will exceed the production of vector based data sets for a long time. Synthetic raster maps include scanned paper map products, such as topographic maps, nautical charts, soil and vegetation maps and other such products. They also include raster data sets generated directly from vector data sets. Since the demand for image and gridded data is large and will be rapidly increasing in the near future, it is necessary to address this form of data in ISO/TC 211. Many countries and international organizations are producing Digital Elevation Models (DEMs). Many other forms of gridded data such as georeferenced socio-economic data including land use data, meteorological and bathymetric data are being compiled in large volumes.Earth observation networks and information infrastructures are being developed in many countries to further improve the access and use of remote sensing data, products and services, with the objective to provide state-of-the-art interfaces between the data archives and their users. The interoperability between data archives — an important element of which is interoperable standards — will greatly facilitate a more effective operation by government bodies and the value-added sector.The specific aim of this work item is to analyse the characteristics of imagery and gridded data and make recommendations with respect to how this data can be handled in ISO/TC 211. There is a significant overlap between many of the current ISO/TC 211 work items and those areas that require standardization to support imagery and gridded data. For example, it is possible to share many metadata elements between vector and raster representations, but some unique metadata will be required to handle particular raster related aspects.The main interests that will benefit from the standardization of raster and matrix data formats will be the distributors and end-users of raster data. Currently, each satellite effectively defines its own ""standard"" based on the characteristics of its sensors. There also exists a large number of ""standard"" formats for the exchange and distribution of synthetic raster data such as scanned paper maps. Integration of data is difficult at best.Although there are some aspects of sensor characteristics that are unique to particular data sources, there is a high degree of commonality underlying the basic parameters. In addition, many of the aspects of the existing ISO/TC 211 work on vector standards, such as geographic referencing, quality, metadata, positioning services, and portrayal are applicable to raster and matrix data.","1   ScopeThis Technical Report reviews the manner in which raster and gridded data is currently being handled in the Geomatics community in order to propose how this type of data should be supported by geographic information standards.This Technical Report identifies those aspects of imagery and gridded data that have been standardized or are being standardized in other ISO committees and external standards organizations, and that influence or support the establishment of raster and gridded data standards for geographic information. It also describes the components of those identified ISO and external imagery and gridded data standards that can be harmonized with the ISO 19100 series of geographic information/geomatics standards.A plan is presented for ISO/TC 211 to address imagery and gridded data in an integrated manner, within the ISO 19100 series of geographic information standards.",ISO/TR 19121:2000(en) -18,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information — Metadata — Part 2: Extensions for imagery and gridded data,https://www.iso.org/obp/ui/#!iso:std:39229:en,"IntroductionImagery and gridded data are important information sources and products used within a geospatial environment by geographic information systems. The production of imagery and gridded data follows one or more process chains that begin with remote sensing data, scanned maps, field data collection or other sensing methods and end with the creation of the end data products. The production process needs to be documented in order to maintain quality control over the end products. In addition, metadata about the geometry of the measuring process and the properties of the measuring equipment need to be retained with the raw data in order to support the production process.Within the suite of ISO geographic information standards, ISO 19115 defines the guidelines for describing geographic information and services. While the ISO 19115 metadata model does provide some provisions for imagery and gridded data, the requirements were not fully developed at the time ISO 19115:2003 was drafted. To permit the development of ISO 19115 to proceed, inclusion of metadata definitions for imagery and gridded data was deferred until the framework for these data was more fully specified within the suite of ISO geographic information standards. Additionally, other standards that implement metadata for imagery and gridded data have been surveyed and are described in ISO/TR 19121.The object of this part of ISO 19115 is to provide the additional structure to more extensively describe the derivation of geographic imagery and gridded data. This structure is intended to augment ISO 19115.","1   ScopeThis part of ISO 19115 extends the existing geographic metadata standard by defining the schema required for describing imagery and gridded data. It provides information about the properties of the measuring equipment used to acquire the data, the geometry of the measuring process employed by the equipment, and the production process used to digitize the raw data. This extension deals with metadata needed to describe the derivation of geographic information from raw data, including the properties of the measuring system, and the numerical methods and computational procedures used in the derivation. The metadata required to address coverage data in general is addressed sufficiently in the general part of ISO 19115.",ISO 19115-2:2009(en) -19,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.","Geographic information — Imagery, gridded and coverage data framework",https://www.iso.org/obp/ui/#!iso:std:43041:en,"IntroductionGridded data, including imagery, is a major form of geographic information. Over the past two decades many, largely incompatible, standards have been developed that are widely used for the interchange of geographic imagery and gridded data. These include standards developed by ISO, as well as those developed by other organizations. With so many different imagery and gridded data standards, each standard aimed at different but overlapping information communities, there is a considerable legacy problem. Working with data encoded using different formats is often difficult because all of the necessary information for interworking has not been recorded using some of these standards. It is not possible to develop a new comprehensive standard to replace what exists or to simply endorse one existing standard (or industrial specification) to “solve” the interworking problem, because very large volumes of data exist in the various formats already in use. The Technical Report ISO/TR 19121:2000 identified the existing work on imagery and gridded data that had been ongoing in ISO and external technical organizations. What is required is a structure that allows for the specification of the content in a manner independent of and compatible with the various different encoding standards.The area of imagery, gridded and coverage data is one of the most challenging within the field of geographic information. The data appears to be simple; however, there is significant structural complexity. While most data is organized in simple grids, there are many different traversal methods for grids and structures that support the distribution of attributes over a space. Sensor information and associated georeferencing are an important aspect of imagery, gridded and coverage geographic information.This Technical Specification endeavours to address the harmonization of the broad legacy of existing imagery and gridded data. The approach specified is not to build a very flexible standard that encompasses everything with a broad array of options, since that does not create compatibility. One can be fooled into thinking things are standardized, because two data sets use incompatible subsets of the same set of general standards. All that would be accomplished would be to give an ISO label to the existing diversity and incompatibility. Compatibility is required for the underlying structure and primary elements of information content, regardless of how that information content is expressed. The purpose of this Technical Specification is to provide a framework within which interworking can occur. The approach used is to define a set of a few common information content structures for geographic imagery, gridded data and certain types of coverage data, which can be expressed using different encoding mechanisms and different interchange standards. The compatibility results from the common underlying content models that are expressed as a generic set of UML patterns for application schemas.This Technical Specification recognizes that there are many overlapping imagery and gridded data specifications in wide use that differ significantly in how the information content is structured for encoding and in what choices of information form the content model. Different types of encoding may be appropriate in different situations. However, differences in content are difficult to reconcile. The existing different encoding standards do not necessarily conflict because they represent different ways of providing the same information in different contexts. Differences in content are also permitted for different situations, but the content definition must be the same in similar situations for interchange to be achieved without loss of information.Most of the existing specifications for imagery and gridded data used in industry specify how content is to be expressed, rather than the content itself. They relate content to encoding, encapsulation and transfer of data. Those content descriptions that do appear to vary from one specification to another may not be in conflict or incompatible but reflect different real world situations that require different treatments.This Technical Specification combines a number of well-defined content structures in accordance with ISO 19123, the International Standard for coverage geometry and functions together with metadata, spatial referencing and other aspects of imagery, gridded and coverage data into a framework. This will foster a convergence at the content model level for existing imagery, gridded and coverage data while allowing for backward compatibility with the identified suite of existing standards.","1   ScopeThis Technical Specification defines the framework for imagery, gridded and coverage data. This framework defines a content model for the content type imagery and for other specific content types that can be represented as coverage data. These content models are represented as a set of generic UML patterns for application schemas.",ISO/TS 19129:2009(en) -20,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Space data and information transfer systems — Digital motion imagery,https://www.iso.org/obp/ui/#!iso:std:69837:en,,"1   INTRODUCTION1.1   PURPOSE AND SCOPEThe purpose of this document is to provide a common reference and framework of standards for digital motion video and imagery, and to provide recommendations for utilization of international standards for sharing or distributing motion video and imagery between spacecraft elements and ground systems.The scope of this document includes traditional real-time streaming video and television, including human and robotic spacecraft-to-spacecraft and spacecraft-to-ground systems, as well as video recorded and distributed later, either as a real-time stream or as a file transfer. In this context, real-time streaming includes all modes where video is sent from a spacecraft in a continuous stream and is intended for immediate use when received, regardless of the latency of the transmission path. Other specialized motion imagery applications, such as high-speed scientific motion imagery and multi-spectral motion imagery, are not addressed in this document. However, if a specialized imagery camera system has a requirement to interface to spacecraft systems in a video mode, it would be required to match these interfaces.Ground-systems-to-ground-systems video distribution is obviously a key component of the entire video system. However, this is not the primary focus of this document. Currently, there are significant differences in the ways mission video products are exchanged between the various space agencies on the ground. This is the result of differences in network topologies between space agencies, and agreements for video sharing. Those differences preclude there being a standard methodology for delivering video imagery between agencies. Prior to the commencement of video transmission between space agencies, system design reviews and performance testing should be done between the ground systems in use to assure operability when video imagery comes from spacecraft.1.2   APPLICABILITYThis document is a CCSDS Recommended Standard. It is intended for all missions that produce, consume, or transcode video imagery from low-bandwidth video such as web streaming through high-bandwidth video such as high-definition television imagery.1.3   NOMENCLATURE1.3.1   NORMATIVE TEXTThe following conventions apply for the normative specifications in this Recommended Standard:a) the words ‘shall’ and ‘must’ imply a binding and verifiable specification;b) the word ‘should’ implies an optional, but desirable, specification;c) the word ‘may’ implies an optional specification;d) the words ‘is’, ‘are’, and ‘will’ imply statements of fact.NOTE — These conventions do not imply constraints on diction in text that is clearly informative in nature.1.3.2   INFORMATIVE TEXTIn the normative sections of this document, informative text is set off from the normative specifications either in notes or under one of the following subsection headings:— Overview;— Background;— Rationale;— Discussion.1.4   REFERENCESThe following publications contain provisions which, through reference in this text, constitute provisions of this document. At the time of publication, the editions indicated were valid. All publications are subject to revision, and users of this document are encouraged to investigate the possibility of applying the most recent editions of the publications indicated below. The CCSDS Secretariat maintains a register of currently valid CCSDS publications.[1]Studio Encoding Parameters of Digital Television for Standard 4:3 and Wide Screen 16:9 Aspect Ratios. ITU-R BT.601-7. Geneva: ITU, 2011.[2]Television—SDTV Digital Signal/Data—Serial Digital Interface. SMPTE ST 259:2008. White Plains, New York: SMPTE, 2008.[3]Digital Interfaces for HDTV Studio Signals. ITU-R BT.1120-8. Geneva: ITU, 2012.[4]1.5 Gb/s Signal/Data Serial Interface. SMPTE ST 292-1:2012. White Plains, New York: SMPTE, 2012.[5]High-Definition Multimedia Interface Specification. Version 1.4. Sunnyvale, California: HDMI Licensing, LLC, 2009.[6]Electrical Characteristics of Low Voltage Differential Signaling (LVDS) Interface Circuits. Revision A. TIA/EIA-644-A. Arlington, Virginia: TIA, February 2001.[7]Serial Digital Interface-Based Transport Interface for Compressed Television Signals in Networked Television Production Based on Recommendation ITU-R BT.1120. ITU-R BT.1577. Geneva: ITU, 2002.[8]Television—Serial Data Transport Interface (SDTI). SMPTE ST 305:2005. White Plains, New York: SMPTE, 2005.[9]Teletext Systems. ITU-R BT.653-3. Geneva: ITU, 1998.[10]Television—Time and Control Code. SMPTE ST 12-1:2008. White Plains, New York: SMPTE, 2008.[11]Television—Transmission of Time Code in the Ancillary Data Space. SMPTE ST 12-2:2008. White Plains, New York: SMPTE, 2008.[12]Ancillary Data Packet and Space Formatting. SMPTE ST 291:2011. White Plains, New York: SMPTE, 2011.[13]Vertical Ancillary Data Mapping of Caption Data and Other Related Data. SMPTE ST 334-1:2007. White Plains, New York: SMPTE, 2007.[14]Metadata Element Dictionary Structure. SMPTE ST 335:2012. White Plains, New York: SMPTE, 2012.[15]Metadata Dictionary Registry of Metadata Element Descriptions. SMPTE RP 210.10:2007. White Plains, New York: SMPTE, 2007.[16]Ultra High Definition Television—Mapping into Single-link or Multi-link 10 Gb/s Serial Signal/Data Interface. SMPTE ST 2036-3:2010. White Plains, New York: SMPTE, 2010.[17]1280×720, 16:9 Progressively-Captured Image Format for Production and International Programme Exchange in the 60 Hz Environment. ITU-R BT.1543. Geneva: ITU, 2001.[18]1280 x 720 Progressive Image 4:2:2 and 4:4:4 Sample Structure—Analog and Digital Representation and Analog Interface. SMPTE ST 296:2012. White Plains, New York: SMPTE, 2012.[19]Parameter Values for the HDTV Standards for Production and International Programme Exchange. ITU-R BT.709-5. Geneva: ITU, 2002.[20]Television—1920 x 1080 Image Sample Structure, Digital Representation and Digital Timing Reference Sequences for Multiple Picture Rates. SMPTE ST 274:2008. White Plains, New York: SMPTE, 2008.[21]Dual Link 1.5 Gb/s Digital Interface for 1920 x 1080 and 2048 x 1080 Picture Frames. SMPTE ST 372:2011. White Plains, New York: SMPTE, 2011.[22]Television—3 Gb/s Signal/Data Serial Interface. SMPTE ST 424:2006. White Plains, New York: SMPTE, 2006.[23]Ultra High Definition Television—Image Parameter Values for Program Production. SMPTE ST 2036-1:2009. White Plains, New York: SMPTE, 2009.[24]Ultra High Definition Television—Audio Characteristics and Audio Channel Mapping for Program Production. SMPTE ST 2036-2-2008. White Plains, New York: SMPTE, 2008.[25]2048 × 1080 and 4096 × 2160 Digital Cinematography Production Image Formats FS/709. SMPTE ST 2048-1:2011. White Plains, New York: SMPTE, 2011.[26]2048 × 1080 Digital Cinematography Production Image FS/709 Formatting for Serial Digital Interface. SMPTE ST 2048-2:2011. White Plains, New York: SMPTE, 2011.[27]Parameter Values for Ultra-High Definition Television Systems for Production and International Programme Exchange. ITU-R BT.2020-1. Geneva: ITU, 2014.[28]Information Technology—Coding of Audio-Visual Objects-Part 10: Advanced Video Coding. 8th ed. International Standard, ISO/IEC 14496-10:2014. Geneva: ISO, 2014.[29]Advanced Video Coding for Generic Audiovisual Services. ITU-T H.264. Geneva: ITU, 2012.[30]Data Services in Digital Television Broadcasting. ITU-R BT.1301-1. Geneva: ITU, 2011.[31]Interface for Digital Component Video Signals in 525-Line and 625-Line Television Systems Operating at the 4:2:2 Level of Recommendation ITU-R BT.601. ITU-R BT.656-5. Geneva: ITU, 2007.[32]Information Technology—JPEG 2000 Image Coding System: Motion JPEG 2000. 2nd ed. International Standard, ISO/IEC 15444-3:2007. Geneva: ISO, 2007.[33]Information Technology—Generic Coding of Moving Pictures and Associated Audio Information—Part 7: Advanced Audio Coding (AAC). 4th ed. International Standard, ISO/IEC 13818-7:2006. Geneva: ISO, 2006.[34]Digital Audio Interface—Part 3: Consumer Applications. Edition 3.1 (2009-12-10). IEC 60958-3:2006+AMD1:2009 CSV. Geneva: IEC, 2009.[35]IP over CCSDS Space Links. Issue 1. Recommendation for Space Data System Standards (Blue Book), CCSDS 702.1-B-1. Washington, D.C.: CCSDS, September 2012.[36]J. Postel. User Datagram Protocol. STD 6. Reston, Virginia: ISOC, August 1980.[37]CCSDS File Delivery Protocol (CFDP). Issue 4. Recommendation for Space Data System Standards (Blue Book), CCSDS 727.0-B-4. Washington, D.C.: CCSDS, January 2007.",ISO 21077:2016(en) -21,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information — Content components and encoding rules for imagery and gridded data — Part 1: Content model,https://www.iso.org/obp/ui/#!iso:std:32581:en,"IntroductionGeographic imagery and gridded thematic data are widely used in the geospatial community and related fields.A preliminary work item on imagery and gridded data components, carried out by ISO/TC 211 in 1999 to 2000, provides a summary of the conceptual classification of gridded data based on spatial and attribute properties and identifies five basic components of imagery and gridded data (ISO/TC 211 N 1017). ISO/TS 19101-2, ISO 19123 and ISO/TS 19129 specify domains and ranges of imagery, grids and coverages, and their associated relationships. ISO/TS 19129 breaks down the metadata into discovery, structural, acquisition and quality metadata. However, there are no detailed descriptions on each category and no clear associations with metadata defined in ISO 19115:2003, ISO 19115-2, ISO/TS 19130 and ISO/TS 19130-2.Imagery is acquired by remote sensors directly or derived from source imagery. Value-added image processing can be used to derive physical properties of a remote object from images (ISO/TS 19101-2). Besides the derived images, imagery can also be integrated with other data sources to produce new gridded coverage data for a specific theme, called thematic data, which is widely used in various applications. However, the characteristics of thematic data are not covered by the existing International Standards and Technical Specifications noted above.ISO/TS 19130 identifies the type of remote sensors by the measurand of the sensor, e.g. optical radiation, microwave energy and SONAR (acoustic) energy. Images acquired by optical sensors have different appearances and characteristics compared with those by a microwave sensor, e.g. SAR data.The framework defined in ISO/TS 19129 describes imagery, gridded and coverage data at multiple levels, including an abstract level, a content model level and an encoding level. The first two levels combine a number of well-defined content structures in accordance with ISO 19123 and define the contents of continuous quadrilateral gridded coverages with grids of both constant and variable cell sizes. However, the content model level does not specify the necessary metadata for common understanding when integrating datasets encoded in different formats. At the encoding level, ISO/TS 19129 does not provide the explicit encoding rules for mapping content model to machine-independent encoding structure, which is crucial for the mapping and translation of images in different formats without losing information.Based on the frameworks defined in ISO/TS 19101-2 and ISO 19123, this Technical Specification specifies the categories of imagery and gridded data and establishes a corresponding hierarchical content model. Categories of imagery and gridded data are defined based on thematic and spatial attributes and sensor types. The content model is then defined to describe the required content components of each category, including the spatial and attribute structures and the critical metadata entries as well. These metadata entries are specified as the minimum required metadata information for the purpose of common understanding. Traditionally, remote sensing data products generally have a header part and a data part. This Technical Specification describes the minimum content requirements for the header part.For ease of implementation, this Technical Specification defines encoding rules to map the content models to XML-based encodings, following the general encoding rules defined in ISO 19118 and the encoding rules for UML-to-GML application schema defined in ISO 19136:2007, Annex E. Since GMLCOV schema (OGC 09-146r2) is optimized for handling coverages, the coverage component of the schema can be based on GMLCOV.An increasingly large volume of image and gridded data, both natural and synthetic, is being produced because more remote sensors are becoming available. These data are encoded in diverse formats, such as GeoTIFF, BIIF, HDF-EOS, JPEG 2000, NetCDF and others as described in ISO/TR 19121. These encoding formats follow different data models, preventing them from being interoperable. In order to encode the contents defined in this Technical Specification into these data formats, ISO 19163 has been split into multiple parts with this Technical Specification defining the content components and general encoding rules and the subsequent parts defining the binding between the contents and individual physical data formats.","1   ScopeThis Technical Specification classifies imagery and regularly spaced gridded thematic data into types based on attribute property, sensor type and spatial property, and defines an encoding-neutral content model for the required components for each type of data. It also specifies logical data structures and the rules for encoding the content components in the structures.The binding between the content and a specific encoding format will be defined in the subsequent parts of ISO 19163.This Technical Specification does not address LiDAR, SONAR data and ungeoreferenced gridded data.The logical data structures and the rules for encoding the content components will be addressed in the subsequent parts of ISO 19163.",ISO/TS 19163-1:2016(en) -22,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information — Calibration and validation of remote sensing imagery sensors and data — Part 1: Optical sensors,https://www.iso.org/obp/ui/#!iso:std:60080:en,"IntroductionImaging sensors are one of the major data sources for geographic information. Typical spatial outcomes of the production process are vector maps, Digital Elevation Models, and three-dimensional city models. There are typically two streams of spectral data analysis, that is, the statistical method, which includes image segmentation, and the physics-based method, which relies on characterization of specific spectral absorption features.In each of the cases, the quality of the end products fully depends on the quality of the measuring instruments that has originally sensed the data. The quality of measuring instruments is determined and documented by calibration.A calibration is often a costly and time-consuming process. Therefore, a number of different strategies are used that combine longer time intervals between subsequent calibrations with simplified intermediate calibration procedures that bridge the time gap and still guarantee a traceable level of quality. Those intermediate calibrations are called validations in this part of ISO 19159.This part of ISO 19159 standardizes the calibration of remote sensing imagery sensors and the validation of the calibration information and procedures. It does not address the validation of the data and the derived products.Many types of imagery sensors exist for remote sensing tasks. Apart from the different technologies, the need for a standardization of the various sensor types has different levels of priority. In order to meet those requirements, ISO 19159 has been split into more than one part. Part 1 covers optical sensors, i.e. airborne photogrammetric cameras and spaceborne optical sensors. Part 2 is intended to cover laser scanning, also known as LIDAR (Light detection and ranging).Parts 3 and 4 are planned to cover RADAR (radio detection and ranging) with the subtopics SAR (synthetic aperture radar) and InSAR (interferometric SAR) as well as SONAR (sound detection and ranging) that is applied in hydrography.","1   ScopeThis part of ISO 19159 defines the calibration and validation of airborne and spaceborne remote sensing imagery sensors.The term ""calibration"" refers to geometry, radiometry, and spectral, and includes the instrument calibration in a laboratory as well as in situ calibration methods.The validation methods address validation of the calibration information.This part of ISO 19159 also addresses the associated metadata related to calibration and validation which have not been defined in other geographic information International Standards.The specified sensors include optical sensors of the frame camera and line camera types (2D CCD scanners).",ISO/TS 19159-1:2014(en) -23,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information — Metadata — XML schema implementation — Part 2: Extensions for imagery and gridded data,https://www.iso.org/obp/ui/#!iso:std:57104:en,"IntroductionThe importance of metadata describing digital geographic data is explained in detail in the text of ISO 19115 and in the text of ISO 19115-2 (for imagery and gridded data). ISO 19115 and ISO 19115-2 are abstract in that they provide a worldwide view of metadata relative to geographic information, but no encoding.Since ISO 19115 does not provide any encoding, implementation of geographic information metadata could vary based on the interpretation of metadata producers. In an attempt to facilitate the standardization of implementations, ISO/TS 19139 provides a definitive, rule-based encoding for carrying out ISO 19115. ISO/TS 19139 provides Extensible Markup Language (XML) schemas that are meant to enhance interoperability by providing a common specification for describing, validating and exchanging metadata about geographic datasets, dataset series, individual geographic features, feature attributes, feature types, feature properties, etc.This Technical Specification utilizes ISO/TS 19139 specification and extends it to define XML Schema implementation for ISO 19115-2. It provides a definitive, rule-based encoding for carrying out ISO 19115-2.",1   ScopeThis Technical Specification defines Geographic Metadata for imagery and gridded data (gmi) encoding. This is an XML Schema implementation derived from ISO 19115-2.,ISO/TS 19139-2:2012(en) -24,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information — Calibration and validation of remote sensing imagery sensors and data — Part 2: Lidar,https://www.iso.org/obp/ui/#!iso:std:64768:en,"IntroductionImaging sensors are one of the major data sources for geographic information. The image data capture spatial and spectral measurements are applied for numerous applications ranging from road/town planning to geological mapping. Typical spatial outcomes of the production process are vector maps, Digital Elevation Models, and 3-dimensional city models. There are typically two streams of spectral analysis data, i.e. the statistical method, which includes image segmentation and the physics-based method which relies on characterisation of specific spectral absorption features.In each of the cases the quality of the end products fully depends on the quality of the measuring instruments that has originally sensed the data. The quality of measuring instruments is determined and documented by calibration.A calibration is often a costly and time consuming process. Therefore, a number of different strategies are in place that combine longer time intervals between subsequent calibrations with simplified intermediate calibration procedures that bridge the time gap and still guarantee a traceable level of quality. Those intermediate calibrations are called validations in this part of ISO/TS 19159.The ISO 19159 series standardizes the calibration of remote sensing imagery sensors and the validation of the calibration information and procedures. It does not address the validation of the data and the derived products.Many types of imagery sensors exist for remote sensing tasks. Apart from the different technologies the need for a standardization of the various sensor types has different levels of priority. In order to meet those requirements, the ISO 19159 series has been split into more than one part.This part of ISO/TS 19159 covers the airborne land lidar sensor (light detection and ranging). It includes the data capture and the calibration. The result of a lidar data capture is a lidar cloud according to the ISO 19156:2011. The bathymetric lidar is not included in the ISO 19159 series.ISO 19159-3 and ISO 19159-4 are planned to cover RADAR (Radio detection and ranging) with the subtopics SAR (Synthetic Aperture RADAR) and InSAR (Interferometric SAR) as well as SONAR (Sound detection and ranging) that is applied in hydrography.","1   ScopeThis part of ISO/TS 19159 defines the data capture method, the relationships between the coordinate reference systems and their parameters, as well as the calibration of airborne lidar (light detection and ranging) sensors.This part of ISO/TS 19159 also standardizes the service metadata for the data capture method, the relationships between the coordinate reference systems and their parameters and the calibration procedures of airborne lidar systems as well as the associated data types and code lists that have not been defined in other ISO geographic information international standards.",ISO/TS 19159-2:2016(en) -25,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.","Geographic information — Imagery sensor models for geopositioning — Part 2: SAR, InSAR, lidar and sonar",https://www.iso.org/obp/ui/#!iso:std:56113:en,"IntroductionThe purpose of this Technical Specification is to specify the geolocation information that an imagery data provider shall supply in order for the user to be able to find the earth location of the data using a detailed physical sensor model for Synthetic Aperture Radar (SAR), Light Detection And Ranging (lidar) and Sound Navigation And Ranging (sonar). The intent is to standardize sensor descriptions and specify the minimum geolocation metadata requirements for data providers and geopositioning imagery systems. Observations in this document are the generic meaning of the word; observations are not in the meaning of ISO 19156 observations.Vast amounts of data from imaging systems have been collected, processed and distributed by government mapping and remote sensing agencies and by commercial data vendors. In order for this data to be useful in extraction of geographic information, further processing of the data are needed. Geopositioning, which determines the ground coordinates of an object from image coordinates, is a fundamental processing step. Because of the diversity of sensor types and the lack of a common sensor model standard, data from different producers may contain different parametric information, lack parameters required to describe the sensor that produces the data, or lack ancillary information necessary for geopositioning and analysing the data. Often, a separate software package must be developed to deal with data from each individual sensor or data producer. Standard sensor models and geolocation metadata allow agencies or vendors to develop generalized software products that are applicable to data from multiple data producers or from multiple sensors. With such standards, different producers can describe the geolocation information of their data in the same way, thus promoting interoperability of data between application systems and facilitating data exchange.Part 1 provided a location model and metadata relevant to all sensors. It also included metadata specific to whiskbroom, pushbroom, and frame sensors, and some metadata for Synthetic Aperture Radar (SAR) sensors. In addition, it provided metadata for functional fit geopositioning, whether the function was part of a correspondence model or a true replacement model. It also provided a schema for these metadata elements. Comments on Part 1 stated that metadata needed to be specified for additional sensors. The technology of such sensors has now become sufficiently mature that standardization is now possible. This Technical Specification extends the specification of the set of metadata elements required for geolocation by providing physical sensor models for LIght Detection And Ranging (lidar) and SOund Navigation And Ranging (sonar), and it presents a more detailed set of elements for SAR. This Technical Specification also defines the metadata needed for the aerial triangulation of airborne and spaceborne images. This Technical Specification also provides a schema for all of these metadata elements.","1   ScopeThis Technical Specification supports exploitation of remotely sensed images. It specifies the sensor models and metadata for geopositioning images remotely sensed by Synthetic Aperture Radar (SAR), Interferometric Synthetic Aperture Radar (InSAR), LIght Detection And Ranging (lidar), and SOund Navigation And Ranging (sonar) sensors. The specification also defines the metadata needed for the aerial triangulation of airborne and spaceborne images.This Technical Specification specifies the detailed information that shall be provided for a sensor description of SAR, InSAR, lidar and sonar sensors with the associated physical and geometric information necessary to rigorously construct a Physical Sensor Model. For the case where precise geoposition information is needed, this Technical Specification identifies the mathematical formulae for rigorously constructing Physical Sensor Models that relate two-dimensional image space to three-dimensional ground space and the calculation of the associated propagated error.This Technical Specification does not specify either how users derive geoposition data or the format or content of the data the users generate.",ISO/TS 19130-2:2014(en) -26,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information - Imagery sensor models for geopositioning,https://www.iso.org/obp/ui/#!iso:std:51789:en,"IntroductionThe purpose of this Technical Specification is to specify the geolocation information that an imagery data provider shall supply in order for the user to be able to find the earth location of the data using a Physical Sensor Model, a True Replacement Model or a Correspondence Model. Detailed Physical Sensor Models are defined for passive electro-optical visible/infrared (IR) sensors (frame, pushbroom and whiskbroom) and for an active microwave sensing system (Synthetic Aperture Radar). A set of components from which models for other sensors can be constructed is also provided. Metadata required for geopositioning using a True Replacement Model, a Correspondence Model, or ground control points are also specified. The intent is to standardize sensor descriptions and specify the minimum geolocation metadata requirements for data providers and geopositioning imagery systems.Vast amounts of data from imaging systems are collected, processed and distributed by government mapping and remote sensing agencies and commercial data vendors. In order for this data to be useful in extraction of geographic information, it requires further processing. Geopositioning, which determines the ground coordinates of an object from image coordinates, is a fundamental processing step. Because of the diversity of sensor types and the lack of a common sensor model standard, data from different producers can contain different parametric information, lack parameters required to describe the sensor that produces the data, or lack ancillary information necessary for geopositioning and analysing the data. Consequently, a separate software package often has to be developed to deal with data from each individual sensor or data producer. Standard sensor models and geolocation metadata allow agencies or vendors to develop generalized software products that are applicable to data from multiple data producers or from multiple sensors. With such a standard, different producers can describe the geolocation information of their data in the same way, thus promoting interoperability of data between application systems and facilitating data exchange.This Technical Specification defines the set of metadata elements specified for providing sensor model and other geopositioning data to users. For the case where a Physical Sensor Model is provided, it includes a location model and metadata relevant to all sensors; it also includes metadata specific to whiskbroom, pushbroom, frame, and SAR sensors. It also includes metadata for functional fit geopositioning, where the function is part of a Correspondence Model or a True Replacement Model. This Technical Specification also provides a schema for all of these metadata elements.","1   ScopeThis Technical Specification identifies the information required to determine the relationship between the position of a remotely sensed pixel in image coordinates and its geoposition. It supports exploitation of remotely sensed images. It defines the metadata to be distributed with the image to enable user determination of geographic position from the observations.This Technical Specification specifies several ways in which information in support of geopositioning may be provided.a) It may be provided as a sensor description with the associated physical and geometric information necessary to rigorously construct a Physical Sensor Model. For the case where precise geoposition information is needed, this Technical Specification identifies the mathematical formulae for rigorously constructing Physical Sensor Models that relate two-dimensional image space to three-dimensional ground space and the calculation of the associated propagated errors. This Technical Specification provides detailed information for three types of passive electro-optical/infrared (IR) sensors (frame, pushbroom and whiskbroom) and for an active microwave sensing system [Synthetic Aperture Radar (SAR)]. It provides a framework by which these sensor models can be extended to other sensor types.b) It may be provided as a True Replacement Model, using functions whose coefficients are based on a Physical Sensor Model so that they provide information for precise geopositioning, including the calculation of errors, as precisely as the Physical Sensor Model they replace.c) It may be provided as a Correspondence Model that provides a functional fitting based on observed relationships between the geopositions of a set of ground control points and their image coordinates.d) It may be provided as a set of ground control points that can be used to develop a Correspondence Model or to refine a Physical Sensor Model or True Replacement Model.This Technical Specification does not specify either how users derive geoposition data or the format or content of the data the users generate.",ISO/TS 19130:2010(en) -27,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information — Web map server interface,https://www.iso.org/obp/ui/#!iso:std:32546:en,"IntroductionA Web Map Service (WMS) produces maps of spatially referenced data dynamically from geographic information. This International Standard defines a “map” to be a portrayal of geographic information as a digital image file suitable for display on a computer screen. A map is not the data itself. WMS-produced maps are generally rendered in a pictorial format such as PNG, GIF or JPEG, or occasionally as vector-based graphical elements in Scalable Vector Graphics (SVG) or Web Computer Graphics Metafile (WebCGM) formats.This International Standard defines three operations: one returns service-level metadata; another returns a map whose geographic and dimensional parameters are well-defined; and an optional third operation returns information about particular features shown on a map. Web Map Service operations can be invoked using a standard web browser by submitting requests in the form of Uniform Resource Locators (URLs). The content of such URLs depends on which operation is requested. In particular, when requesting a map the URL indicates what information is to be shown on the map, what portion of the Earth is to be mapped, the desired coordinate reference system, and the output image width and height. When two or more maps are produced with the same geographic parameters and output size, the results can be accurately overlaid to produce a composite map. The use of image formats that support transparent backgrounds (e.g. GIF or PNG) allows underlying maps to be visible. Furthermore, individual maps can be requested from different servers. The Web Map Service thus enables the creation of a network of distributed map servers from which clients can build customized maps. Illustrative examples of map request URLs and their resulting maps are shown in Annex G.This International Standard applies to a Web Map Service instance that publishes its ability to produce maps rather than its ability to access specific data holdings. A basic WMS classifies its geographic information holdings into “Layers” and offers a finite number of predefined “Styles” in which to display those layers. This International Standard supports only named Layers and Styles, and does not include a mechanism for user-defined symbolization of feature data.NOTE The Open Geospatial Consortium (OGC) Styled Layer Descriptor (SLD) specification [6] defines a mechanism for user-defined symbolization of feature data instead of named Layers and Styles. In brief, an SLD-enabled WMS retrieves feature data from a Web Feature Service [7] and applies explicit styling information provided by the user in order to render a map.","1   ScopeThis International Standard specifies the behaviour of a service that produces spatially referenced maps dynamically from geographic information. It specifies operations to retrieve a description of the maps offered by a server to retrieve a map, and to query a server about features displayed on a map. This International Standard is applicable to pictorial renderings of maps in a graphical format; it is not applicable to retrieval of actual feature data or coverage data values.",ISO 19128:2005(en) -28,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Geographic information — Reference model — Part 2: Imagery,https://www.iso.org/obp/ui/#!iso:std:39983:en,"IntroductionThis Technical Specification provides a reference model for processing of geographic imagery which is frequently done in open distributed manners. The motivating themes addressed in this reference model are given below.In terms of volume, imagery is the dominant form of geographic information.— Stored geographic imagery volume will grow to the order of an exabyte.— National imagery archives are multiple petabytes in size; ingesting a terabyte per day.— Individual application data centers are archiving hundreds of terabytes of imagery.— Tens of thousands of datasets have been catalogued but are not yet online.Large volumes of geographic imagery will not be portrayed directly by humans. Human attention is the scarce resource, and is insufficient to view petabytes of data. Semantic processing will be required: for example, automatic detection of features; data mining based on geographic concepts.Information technology allows the sharing of geographic information products through processing of geographic imagery. Standards are needed to increase creation of products. A number of existing standards are used for the exchange of geographic imagery.Examples of technical, legal, and administrative hurdles to moving imagery online include— technical issues of accessibility — geocoding, geographic access standards,— maintenance of intellectual property rights,— maintenance of individual privacy rights as resolution increases, and— technical issues of compatibility requiring standards.Governments have been the predominant suppliers of remotely sensed data in the past. This is changing with the commercialization of remotely sensed data acquisition. Geographic imagery is a key input to decision support for policy makers.The ultimate challenge is to enable the geographic imagery collected from different sources to become an integrated digital representation of the Earth widely accessible for humanity’s critical decisions.Currently a large number of standards exist that describe imagery data. The processing of imagery across multiple organizations and information technologies (IT) is hampered by the lack of a common abstract architecture. The establishment of a common framework will foster convergence at the framework level. In the future, multiple implementation standards are needed for data format and service interoperability to carry out the architecture defined in this Technical Specification.The objective of this Technical Specification is the coordinated development of standards that allow the benefits of distributed geographic image processing to be realized in an environment of heterogeneous IT resources and multiple organizational domains. An underlying assumption is that uncoordinated standardization activities made without a plan cannot be united under the necessary framework.This Technical Specification provides a reference model for the processing of geographic imagery which is frequently done in open distributed manners. The basis for defining an information system in this Technical Specification is the Reference Model for Open Distributed Processing (RM-ODP) [78]. A brief description of RM-ODP can be referenced in Annex B. The basis for defining geographic information in this specification is the ISO 19100 family of standards.The RM-ODP[78] viewpoints are used in the following fashion:— Typical users and their business activities, and policies to carry out those activities, are addressed in the Enterprise Viewpoint.— Data structures and the progressive addition of value to the resulting products are found in the schemas of the Information Viewpoint.— Individual processing services and the chaining of services are addressed in the Computational Viewpoint.Approaches to deploy the components of the Information and Computational viewpoints to distributed physical locations are addressed in the Engineering Viewpoint.","1   ScopeThis part of ISO 19101 defines a reference model for standardization in the field of geographic imagery processing. This reference model identifies the scope of the standardization activity being undertaken and the context in which it takes place. The reference model includes gridded data with an emphasis on imagery. Although structured in the context of information technology and information technology standards, this Technical Specification is independent of any application development method or technology implementation approach.",ISO/TS 19101-2:2008(en) -29,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.",Information technology — Computer graphics and image processing — Image Processing and Interchange (IPI) — Functional specification — Part 5: Basic Image Interchange Format (BIIF),https://www.iso.org/obp/ui/#!iso:std:27853:en,,"1 ScopeThis part of ISO/IEC 12087 establishes the specification of the Basic Image Interchange Format (BIIF) part of the standard. BIIF is a standard developed to provide a foundation for interoperability in the interchange of imagery and imagery-related data among applications. This part of ISO/IEC 12087 provides a detailed description of the overall structure of the format, as well as specification of the valid data and format for all fields defined with BIIF. Annex C contains a model profile in tables to assist in profile development.As part of the ISO/IEC 12087 family of image processing and interchange standards, BIIF conforms to the architectural and data object specifications of ISO/IEC 12087-1, the Common Architecture for Imaging. BIIF supports a profiling scheme that is a combination of the approaches taken for ISO/IEC 12087-2 (PIKS), ISO/IEC 10918 (JPEG), ISO/IEC 8632 (CGM), and ISO/IEC 9973 (The Procedures for Registration of Graphical Items). It is intended that profiles of the BIIF will be established as an International Standardised Profile (ISP) through the normal ISO processes (ISO/IEC TR 10000).The scope and field of application of this part of ISO/IEC 12087 includes the capability to perpetuate a proven interchange capability in support of commercial and government imagery, Programmer’s Imaging Kernel System Data, and other imagery technology domains in that priority order.This part of ISO/IEC 12087 provides a data format container for image, symbol, and text, along with a mechanism for including image-related support data.This part of ISO/IEC 12087 satisfies the following requirements:— Provides a means whereby diverse applications can share imagery and associated information.— Allows an application to exchange comprehensive information to users with diverse needs or capabilities, allowing each user to select only those data items that correspond to their needs and capabilities.— Minimizes preprocessing and postprocessing of data.— Minimizes formatting overhead, particularly for those applications exchanging only a small amount of data and for bandwidth-limited systems.— Provides a mechanism (Transportable File Structure, TFS) to interchange PIKS image and image-related objects— Provides extensibility to accommodate future data, including objects.When the extensibility of this part of ISO/IEC 12087, or the inherent constraints of the structured format of BIIF, do not meet the needs of a more complex application, the concepts and features of 12087-3 (IlF) should be considered as a more appropriate method of image interchange. For example, the ability to support complex combinations of heterogeneous pixel types, self defining pixel structures, or abstract structures can be done with IIF.",ISO/IEC 12087-5:1998(en) -30,"Polar Scout: The successful execution of this Polar Scout project will result in a Arctic MDA demonstrations that demonstrates SAR missions employing CubeSats to detect and geolocate 406 MHz emergency beacons. The Data Analytics project will provide predictive analytics with the ability to process information from various data sources including space-based, airborne, and ground-based. Additionally, ASAP is an open architecture (e.g., open APIs and data models) that will enable rapid integration of these solution components into Components existing systems across varied DHS missions by leveraging the Integrated Maritime Domain Enterprise (IMDE/CSS) and DOD/J39's Project DataHub.","Geographic information — Imagery sensor models for geopositioning — Part 2: SAR, InSAR, lidar and sonar",https://www.iso.org/obp/ui/#!iso:std:56113:en,"IntroductionThe purpose of this Technical Specification is to specify the geolocation information that an imagery data provider shall supply in order for the user to be able to find the earth location of the data using a detailed physical sensor model for Synthetic Aperture Radar (SAR), Light Detection And Ranging (lidar) and Sound Navigation And Ranging (sonar). The intent is to standardize sensor descriptions and specify the minimum geolocation metadata requirements for data providers and geopositioning imagery systems. Observations in this document are the generic meaning of the word; observations are not in the meaning of ISO 19156 observations.Vast amounts of data from imaging systems have been collected, processed and distributed by government mapping and remote sensing agencies and by commercial data vendors. In order for this data to be useful in extraction of geographic information, further processing of the data are needed. Geopositioning, which determines the ground coordinates of an object from image coordinates, is a fundamental processing step. Because of the diversity of sensor types and the lack of a common sensor model standard, data from different producers may contain different parametric information, lack parameters required to describe the sensor that produces the data, or lack ancillary information necessary for geopositioning and analysing the data. Often, a separate software package must be developed to deal with data from each individual sensor or data producer. Standard sensor models and geolocation metadata allow agencies or vendors to develop generalized software products that are applicable to data from multiple data producers or from multiple sensors. With such standards, different producers can describe the geolocation information of their data in the same way, thus promoting interoperability of data between application systems and facilitating data exchange.Part 1 provided a location model and metadata relevant to all sensors. It also included metadata specific to whiskbroom, pushbroom, and frame sensors, and some metadata for Synthetic Aperture Radar (SAR) sensors. In addition, it provided metadata for functional fit geopositioning, whether the function was part of a correspondence model or a true replacement model. It also provided a schema for these metadata elements. Comments on Part 1 stated that metadata needed to be specified for additional sensors. The technology of such sensors has now become sufficiently mature that standardization is now possible. This Technical Specification extends the specification of the set of metadata elements required for geolocation by providing physical sensor models for LIght Detection And Ranging (lidar) and SOund Navigation And Ranging (sonar), and it presents a more detailed set of elements for SAR. This Technical Specification also defines the metadata needed for the aerial triangulation of airborne and spaceborne images. This Technical Specification also provides a schema for all of these metadata elements.","1   ScopeThis Technical Specification supports exploitation of remotely sensed images. It specifies the sensor models and metadata for geopositioning images remotely sensed by Synthetic Aperture Radar (SAR), Interferometric Synthetic Aperture Radar (InSAR), LIght Detection And Ranging (lidar), and SOund Navigation And Ranging (sonar) sensors. The specification also defines the metadata needed for the aerial triangulation of airborne and spaceborne images.This Technical Specification specifies the detailed information that shall be provided for a sensor description of SAR, InSAR, lidar and sonar sensors with the associated physical and geometric information necessary to rigorously construct a Physical Sensor Model. For the case where precise geoposition information is needed, this Technical Specification identifies the mathematical formulae for rigorously constructing Physical Sensor Models that relate two-dimensional image space to three-dimensional ground space and the calculation of the associated propagated error.This Technical Specification does not specify either how users derive geoposition data or the format or content of the data the users generate.",ISO/TS 19130-2:2014(en) -31,"Polar Scout: The successful execution of this Polar Scout project will result in a Arctic MDA demonstrations that demonstrates SAR missions employing CubeSats to detect and geolocate 406 MHz emergency beacons. The Data Analytics project will provide predictive analytics with the ability to process information from various data sources including space-based, airborne, and ground-based. Additionally, ASAP is an open architecture (e.g., open APIs and data models) that will enable rapid integration of these solution components into Components existing systems across varied DHS missions by leveraging the Integrated Maritime Domain Enterprise (IMDE/CSS) and DOD/J39's Project DataHub.",Geographic information - Imagery sensor models for geopositioning,https://www.iso.org/obp/ui/#!iso:std:51789:en,"IntroductionThe purpose of this Technical Specification is to specify the geolocation information that an imagery data provider shall supply in order for the user to be able to find the earth location of the data using a Physical Sensor Model, a True Replacement Model or a Correspondence Model. Detailed Physical Sensor Models are defined for passive electro-optical visible/infrared (IR) sensors (frame, pushbroom and whiskbroom) and for an active microwave sensing system (Synthetic Aperture Radar). A set of components from which models for other sensors can be constructed is also provided. Metadata required for geopositioning using a True Replacement Model, a Correspondence Model, or ground control points are also specified. The intent is to standardize sensor descriptions and specify the minimum geolocation metadata requirements for data providers and geopositioning imagery systems.Vast amounts of data from imaging systems are collected, processed and distributed by government mapping and remote sensing agencies and commercial data vendors. In order for this data to be useful in extraction of geographic information, it requires further processing. Geopositioning, which determines the ground coordinates of an object from image coordinates, is a fundamental processing step. Because of the diversity of sensor types and the lack of a common sensor model standard, data from different producers can contain different parametric information, lack parameters required to describe the sensor that produces the data, or lack ancillary information necessary for geopositioning and analysing the data. Consequently, a separate software package often has to be developed to deal with data from each individual sensor or data producer. Standard sensor models and geolocation metadata allow agencies or vendors to develop generalized software products that are applicable to data from multiple data producers or from multiple sensors. With such a standard, different producers can describe the geolocation information of their data in the same way, thus promoting interoperability of data between application systems and facilitating data exchange.This Technical Specification defines the set of metadata elements specified for providing sensor model and other geopositioning data to users. For the case where a Physical Sensor Model is provided, it includes a location model and metadata relevant to all sensors; it also includes metadata specific to whiskbroom, pushbroom, frame, and SAR sensors. It also includes metadata for functional fit geopositioning, where the function is part of a Correspondence Model or a True Replacement Model. This Technical Specification also provides a schema for all of these metadata elements.","1   ScopeThis Technical Specification identifies the information required to determine the relationship between the position of a remotely sensed pixel in image coordinates and its geoposition. It supports exploitation of remotely sensed images. It defines the metadata to be distributed with the image to enable user determination of geographic position from the observations.This Technical Specification specifies several ways in which information in support of geopositioning may be provided.a) It may be provided as a sensor description with the associated physical and geometric information necessary to rigorously construct a Physical Sensor Model. For the case where precise geoposition information is needed, this Technical Specification identifies the mathematical formulae for rigorously constructing Physical Sensor Models that relate two-dimensional image space to three-dimensional ground space and the calculation of the associated propagated errors. This Technical Specification provides detailed information for three types of passive electro-optical/infrared (IR) sensors (frame, pushbroom and whiskbroom) and for an active microwave sensing system [Synthetic Aperture Radar (SAR)]. It provides a framework by which these sensor models can be extended to other sensor types.b) It may be provided as a True Replacement Model, using functions whose coefficients are based on a Physical Sensor Model so that they provide information for precise geopositioning, including the calculation of errors, as precisely as the Physical Sensor Model they replace.c) It may be provided as a Correspondence Model that provides a functional fitting based on observed relationships between the geopositions of a set of ground control points and their image coordinates.d) It may be provided as a set of ground control points that can be used to develop a Correspondence Model or to refine a Physical Sensor Model or True Replacement Model.This Technical Specification does not specify either how users derive geoposition data or the format or content of the data the users generate.",ISO/TS 19130:2010(en) -32,"The major components of the ASAP system are listed below. Metric Name Current Capability Threshold Objective Project Objective Current Status 406 MHz Emergency Beacon without GPS Time-to-detection Average via COSPAS-SARSAT: 46 min Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS Time-to-geolocation Average via COSPAS-SARSAT: 90 min Average extrapolated from project T&E: 60 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Time to provide location as a web service: less than 1 minute from geolocation Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS geolocation accuracy Average via COSPAS-SARSAT Doppler method: within 5 km Average via T&E: 10 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Average via T&E: 5 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Waiting on T&E in 2Q and 3Q FY18 Channel 16 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and playback channel 16 transmissions (i) Also automatically identify distress words (e.g., mayday, pan-pan), (ii) Display detection region on CG COP Waiting on T&E in 2Q and 3Q FY18 Channel 70 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and display channel 70 digital selective calling transmissions (i) Display detection region on CG COP (ii) Decode DSC message and display any embedded location information on CG COP Waiting on T&E in 2Q and 3Q FY18 26 September 2016 Page 20 of 22 An open architecture, open APIs, and an open data model will be central to the design of the ASAP processing node. The ASAP processing node will maintain a set of interfaces (APIs) that are meant to ensure interoperability between data systems across the various suite of sensors and sensor types. This open architecture will enable the ASAP software to interoperate with other components existing systems. As mentioned previously, the ASAP open framework will consist of standards for three different levels: Infrastructure Services, Common Services, and Mission Services. o IMDE/CSS is a DHS S&T program that will be leveraged by ASAP and will be part of the ASAP open architecture. IMDE/CSS will demonstrate an enterprise-wide system of maritime nodes providing streams of near real-time sensor data and access to non-sensor data including information, analysis, and archives. This system will access, process, and fuse data from mission feeds and diversified sensor sources and make it available through a web-based portal to all system users. IMDE/CSS is built on a scalable and _pluggable micro-service architecture with robust core services to include logging, identity management, data entitlement, and federated discovery. o ASAP plans to integrate onto IMDE in a later phase of the project. Polar Scout is not planned to integrate onto IMDE, however the Data Analytics does plan to integrate onto IMDE. The timeline (initially or at a later phase) of integrating onto IMDE is still under review. Identification and development of space-based sensor feeds, where the focus is the identification and leveraging of existing commercial and government sensors; and procuring new sensors to fill MDA gaps. There are two variants of CubeSats and SmallSats that are under development by HE360 and USAF ORS. o ORS: DHS S&T has executed an MOU with USAF ORS to collaborate in the demonstration of an on-orbit capability to collect relevant data in support of the DHS mission and the ORS mission to enable rapid low-cost space capability. ORS has developed a flexible, reusable, government-owned design for _6U CubeSats. ORS employs autonomous manufacturing, modular open system architecture, and open standards. ORS will demonstrate autonomous _open manufacturing of low volume, high-value assets and autonomous digital techniques to provide mission assurance. DHS plans to leverage a 2-ball ORS constellation to perform RF signal detection in support of the USCG mission. o HE360: HE360 is a commercial company focused on space-based sensing of radio-frequency (RF) signals and analytic applications of such data sets. The company intends to launch a constellation of satellites (3) able to perform RF signal detection, geolocation, and identification in early 2017. HE360 is under contract with DHS S&T to support on-orbit testing, evaluations, and integration of their systems with Mobile CubeSat Command and Control (MC3) System o MC3 System: The MC3 System is a network of fully autonomous ground stations. ASAP will purchase two MC3 ground stations and is working with the USCGs Rapid Development Program to determine locations where MC3 will be installed. 26 September 2016 Page 21 of 22 MC3 will be integrated into the USCGs Rescue Operations Centers, supporting Arctic MDA including search-and-rescue. Through collaboration with ORS, HE360 and MC3, DHS S&T and USCG will demonstrate, test, and evaluate detecting emergency distress beacons from space utilizing multiple on-orbit constellations of CubeSat systems. The space-based sensor data will be incorporated into predictive analytics and fusion tools to improve the arctic MDA mission area. ",Geographic information — Ubiquitous public access — Reference model,https://www.iso.org/obp/ui/#!iso:std:32572:en,"IntroductionRecent advances of web-based and mobile computing technologies have ushered in an era where the general public are not only consumers of content, but also act as creators or providers of new, enriched content.One sector in particular that is experiencing rapid change and growth is that of geographic information.“Location” in a general sense is one of the basic requirements of all mobile users. In early development, users were only “consuming” location-based content, but with ever increasingly sophisticated mobile hardware devices and the ever expanding extent of telecommunications networking and sensor web enabled infrastructure, mobile users are now able to create many types of geographic data. Creation of content can be on an individual level, using a coordinate location to enable navigation to a new café described in a blog entry, or as a collaborative effort, such as collecting GPS tracks and incorporating them into the Open Street Map project.Smaller devices, embedded systems, wireless communication, and sensor networks (ubiquitous computing technologies) require methods of handling geographic information in terms of both production and consumption. Beyond the previously limited public consumption of geographic information, ubiquitous computing technologies provide the infrastructure for the general public to produce, distribute, and consume geographic information. These concepts are manifested as “seamless access from anywhere and at any time to easy-to-use geographic information and services”. We refer to these concepts as Ubiquitous Public Access to geographic information.The goal of ubiquitous public access to geographic information (UPA-to-GI) is to make the user experience of any “smart” device intuitive to understand, along with being easy to use. To achieve this goal, contextual information that is gathered from varied sources is managed efficiently within the UPA architecture. Therefore, systems or services for UPA to geographic information need to support a delivery mechanism of contextual information.This International Standard defines the requirements of standardization for systems and services supporting ubiquitous public access to geographic information, and describes a comprehensive set of fundamental facets that specify an abstract description of the elements for UPA to geographic information.This International Standard further establishes a series of models comprised as a conceptual framework that, when implemented, will support the development of a set of systems and services for enabling ubiquitous public access to geographic information. In a UPA environment, general users are no longer only passive consumers of geographic information, but rather active participants in several steps of the data and information management lifecycle such as collection, creation and capture, and/or use and dissemination.Ubiquitous public access to geographic information might be thought of as a type of geographic information service. However, the currently available standards used in mobile environments are based on web technologies which are not efficient enough to handle the requirements of UPA. In order to provide relevant geographic information to users, the context of the users is described.The reference model specified here defines a group of models which form a framework that supports methods of extracting geographically explicit context information from varied information sources, such as a lexicon, photos, videos, and others sources. Additional models in the framework specify how geographic data produced and distributed by the general public can be semantically linked to meet the user’s contextual requests, and how heterogeneous geographic content can be seamlessly accessed, integrated, and provided to a user regardless of the kind of device the user operates.","1   ScopeThis International Standard defines a reference model for ubiquitous public access (UPA) to geographic information. This reference model uses standard concepts from both the Open distributed processing — Reference model (RM-ODP) in ISO/IEC 10746-1 and ISO 19101.The reference model specified in this International Standard defines the following:— conceptual models for ubiquitous public access (UPA) to geographic information;— a reference model and framework to support current and future specification development in this area;— the semantics of information and processing within systems and services for the UPA of geographic information;— the architectural relationship between this International Standard and other ISO geographic information standards.This International Standard is applicable to location-based services (LBS), ubiquitous computing environments, linked open data, and other domains that require a seamless public access to geographic information.Although structured in the context of information technology and information technology standards, this International Standard is independent of any application development method or technology implementation approach.",ISO 19154:2014(en) -33,"The major components of the ASAP system are listed below. Metric Name Current Capability Threshold Objective Project Objective Current Status 406 MHz Emergency Beacon without GPS Time-to-detection Average via COSPAS-SARSAT: 46 min Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS Time-to-geolocation Average via COSPAS-SARSAT: 90 min Average extrapolated from project T&E: 60 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Time to provide location as a web service: less than 1 minute from geolocation Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS geolocation accuracy Average via COSPAS-SARSAT Doppler method: within 5 km Average via T&E: 10 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Average via T&E: 5 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Waiting on T&E in 2Q and 3Q FY18 Channel 16 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and playback channel 16 transmissions (i) Also automatically identify distress words (e.g., mayday, pan-pan), (ii) Display detection region on CG COP Waiting on T&E in 2Q and 3Q FY18 Channel 70 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and display channel 70 digital selective calling transmissions (i) Display detection region on CG COP (ii) Decode DSC message and display any embedded location information on CG COP Waiting on T&E in 2Q and 3Q FY18 26 September 2016 Page 20 of 22 An open architecture, open APIs, and an open data model will be central to the design of the ASAP processing node. The ASAP processing node will maintain a set of interfaces (APIs) that are meant to ensure interoperability between data systems across the various suite of sensors and sensor types. This open architecture will enable the ASAP software to interoperate with other components existing systems. As mentioned previously, the ASAP open framework will consist of standards for three different levels: Infrastructure Services, Common Services, and Mission Services. o IMDE/CSS is a DHS S&T program that will be leveraged by ASAP and will be part of the ASAP open architecture. IMDE/CSS will demonstrate an enterprise-wide system of maritime nodes providing streams of near real-time sensor data and access to non-sensor data including information, analysis, and archives. This system will access, process, and fuse data from mission feeds and diversified sensor sources and make it available through a web-based portal to all system users. IMDE/CSS is built on a scalable and _pluggable micro-service architecture with robust core services to include logging, identity management, data entitlement, and federated discovery. o ASAP plans to integrate onto IMDE in a later phase of the project. Polar Scout is not planned to integrate onto IMDE, however the Data Analytics does plan to integrate onto IMDE. The timeline (initially or at a later phase) of integrating onto IMDE is still under review. Identification and development of space-based sensor feeds, where the focus is the identification and leveraging of existing commercial and government sensors; and procuring new sensors to fill MDA gaps. There are two variants of CubeSats and SmallSats that are under development by HE360 and USAF ORS. o ORS: DHS S&T has executed an MOU with USAF ORS to collaborate in the demonstration of an on-orbit capability to collect relevant data in support of the DHS mission and the ORS mission to enable rapid low-cost space capability. ORS has developed a flexible, reusable, government-owned design for _6U CubeSats. ORS employs autonomous manufacturing, modular open system architecture, and open standards. ORS will demonstrate autonomous _open manufacturing of low volume, high-value assets and autonomous digital techniques to provide mission assurance. DHS plans to leverage a 2-ball ORS constellation to perform RF signal detection in support of the USCG mission. o HE360: HE360 is a commercial company focused on space-based sensing of radio-frequency (RF) signals and analytic applications of such data sets. The company intends to launch a constellation of satellites (3) able to perform RF signal detection, geolocation, and identification in early 2017. HE360 is under contract with DHS S&T to support on-orbit testing, evaluations, and integration of their systems with Mobile CubeSat Command and Control (MC3) System o MC3 System: The MC3 System is a network of fully autonomous ground stations. ASAP will purchase two MC3 ground stations and is working with the USCGs Rapid Development Program to determine locations where MC3 will be installed. 26 September 2016 Page 21 of 22 MC3 will be integrated into the USCGs Rescue Operations Centers, supporting Arctic MDA including search-and-rescue. Through collaboration with ORS, HE360 and MC3, DHS S&T and USCG will demonstrate, test, and evaluate detecting emergency distress beacons from space utilizing multiple on-orbit constellations of CubeSat systems. The space-based sensor data will be incorporated into predictive analytics and fusion tools to improve the arctic MDA mission area. ",Information technology — Open data protocol (OData) v4.0 — Part 2: OData JSON Format,https://www.iso.org/obp/ui/#!iso:std:69209:en,,,ISO/IEC 20802-2:2016(en) -34,"The major components of the ASAP system are listed below. Metric Name Current Capability Threshold Objective Project Objective Current Status 406 MHz Emergency Beacon without GPS Time-to-detection Average via COSPAS-SARSAT: 46 min Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS Time-to-geolocation Average via COSPAS-SARSAT: 90 min Average extrapolated from project T&E: 60 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Time to provide location as a web service: less than 1 minute from geolocation Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS geolocation accuracy Average via COSPAS-SARSAT Doppler method: within 5 km Average via T&E: 10 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Average via T&E: 5 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Waiting on T&E in 2Q and 3Q FY18 Channel 16 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and playback channel 16 transmissions (i) Also automatically identify distress words (e.g., mayday, pan-pan), (ii) Display detection region on CG COP Waiting on T&E in 2Q and 3Q FY18 Channel 70 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and display channel 70 digital selective calling transmissions (i) Display detection region on CG COP (ii) Decode DSC message and display any embedded location information on CG COP Waiting on T&E in 2Q and 3Q FY18 26 September 2016 Page 20 of 22 An open architecture, open APIs, and an open data model will be central to the design of the ASAP processing node. The ASAP processing node will maintain a set of interfaces (APIs) that are meant to ensure interoperability between data systems across the various suite of sensors and sensor types. This open architecture will enable the ASAP software to interoperate with other components existing systems. As mentioned previously, the ASAP open framework will consist of standards for three different levels: Infrastructure Services, Common Services, and Mission Services. o IMDE/CSS is a DHS S&T program that will be leveraged by ASAP and will be part of the ASAP open architecture. IMDE/CSS will demonstrate an enterprise-wide system of maritime nodes providing streams of near real-time sensor data and access to non-sensor data including information, analysis, and archives. This system will access, process, and fuse data from mission feeds and diversified sensor sources and make it available through a web-based portal to all system users. IMDE/CSS is built on a scalable and _pluggable micro-service architecture with robust core services to include logging, identity management, data entitlement, and federated discovery. o ASAP plans to integrate onto IMDE in a later phase of the project. Polar Scout is not planned to integrate onto IMDE, however the Data Analytics does plan to integrate onto IMDE. The timeline (initially or at a later phase) of integrating onto IMDE is still under review. Identification and development of space-based sensor feeds, where the focus is the identification and leveraging of existing commercial and government sensors; and procuring new sensors to fill MDA gaps. There are two variants of CubeSats and SmallSats that are under development by HE360 and USAF ORS. o ORS: DHS S&T has executed an MOU with USAF ORS to collaborate in the demonstration of an on-orbit capability to collect relevant data in support of the DHS mission and the ORS mission to enable rapid low-cost space capability. ORS has developed a flexible, reusable, government-owned design for _6U CubeSats. ORS employs autonomous manufacturing, modular open system architecture, and open standards. ORS will demonstrate autonomous _open manufacturing of low volume, high-value assets and autonomous digital techniques to provide mission assurance. DHS plans to leverage a 2-ball ORS constellation to perform RF signal detection in support of the USCG mission. o HE360: HE360 is a commercial company focused on space-based sensing of radio-frequency (RF) signals and analytic applications of such data sets. The company intends to launch a constellation of satellites (3) able to perform RF signal detection, geolocation, and identification in early 2017. HE360 is under contract with DHS S&T to support on-orbit testing, evaluations, and integration of their systems with Mobile CubeSat Command and Control (MC3) System o MC3 System: The MC3 System is a network of fully autonomous ground stations. ASAP will purchase two MC3 ground stations and is working with the USCGs Rapid Development Program to determine locations where MC3 will be installed. 26 September 2016 Page 21 of 22 MC3 will be integrated into the USCGs Rescue Operations Centers, supporting Arctic MDA including search-and-rescue. Through collaboration with ORS, HE360 and MC3, DHS S&T and USCG will demonstrate, test, and evaluate detecting emergency distress beacons from space utilizing multiple on-orbit constellations of CubeSat systems. The space-based sensor data will be incorporated into predictive analytics and fusion tools to improve the arctic MDA mission area. ",Information technology — Security techniques — A framework for identity management — Part 1: Terminology and concepts,https://www.iso.org/obp/ui/#!iso:std:57914:en,"IntroductionData processing systems commonly gather a range of information on their users, be it a person, piece of equipment, or piece of software connected to them, and make decisions based on the gathered information. Such identity-based decisions may concern access to applications or other resources.To address the need to efficiently and effectively implement systems that make identity-based decisions, ISO/IEC 24760 specifies a framework for the issuance, administration, and use of data that serves to characterize individuals, organizations or information technology components which operate on behalf of individuals or organizations.For many organizations the proper management of identity information is crucial to maintain security of the organizational processes. For individuals, correct identity management is important to protect privacy.ISO/IEC 24760 specifies fundamental concepts and operational structures of identity management with the purpose to realize information system management so that information systems can meet business, contractual, regulatory and legal obligations.This part of ISO/IEC 24760 specifies the terminology and concepts for identity management, to promote a common understanding in the field of identity management. It also provides a bibliography of documents related to standardization of various aspects of identity management.","1   ScopeThis part of ISO/IEC 24760— defines terms for identity management, and— specifies core concepts of identity and identity management and their relationships.This part of ISO/IEC 24760 is applicable to any information system that processes identity information.A bibliography of documents describing various aspects of identity information management is provided.",ISO/IEC 24760-1:2011(en) -35,"The major components of the ASAP system are listed below. Metric Name Current Capability Threshold Objective Project Objective Current Status 406 MHz Emergency Beacon without GPS Time-to-detection Average via COSPAS-SARSAT: 46 min Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS Time-to-geolocation Average via COSPAS-SARSAT: 90 min Average extrapolated from project T&E: 60 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Time to provide location as a web service: less than 1 minute from geolocation Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS geolocation accuracy Average via COSPAS-SARSAT Doppler method: within 5 km Average via T&E: 10 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Average via T&E: 5 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Waiting on T&E in 2Q and 3Q FY18 Channel 16 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and playback channel 16 transmissions (i) Also automatically identify distress words (e.g., mayday, pan-pan), (ii) Display detection region on CG COP Waiting on T&E in 2Q and 3Q FY18 Channel 70 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and display channel 70 digital selective calling transmissions (i) Display detection region on CG COP (ii) Decode DSC message and display any embedded location information on CG COP Waiting on T&E in 2Q and 3Q FY18 26 September 2016 Page 20 of 22 An open architecture, open APIs, and an open data model will be central to the design of the ASAP processing node. The ASAP processing node will maintain a set of interfaces (APIs) that are meant to ensure interoperability between data systems across the various suite of sensors and sensor types. This open architecture will enable the ASAP software to interoperate with other components existing systems. As mentioned previously, the ASAP open framework will consist of standards for three different levels: Infrastructure Services, Common Services, and Mission Services. o IMDE/CSS is a DHS S&T program that will be leveraged by ASAP and will be part of the ASAP open architecture. IMDE/CSS will demonstrate an enterprise-wide system of maritime nodes providing streams of near real-time sensor data and access to non-sensor data including information, analysis, and archives. This system will access, process, and fuse data from mission feeds and diversified sensor sources and make it available through a web-based portal to all system users. IMDE/CSS is built on a scalable and _pluggable micro-service architecture with robust core services to include logging, identity management, data entitlement, and federated discovery. o ASAP plans to integrate onto IMDE in a later phase of the project. Polar Scout is not planned to integrate onto IMDE, however the Data Analytics does plan to integrate onto IMDE. The timeline (initially or at a later phase) of integrating onto IMDE is still under review. Identification and development of space-based sensor feeds, where the focus is the identification and leveraging of existing commercial and government sensors; and procuring new sensors to fill MDA gaps. There are two variants of CubeSats and SmallSats that are under development by HE360 and USAF ORS. o ORS: DHS S&T has executed an MOU with USAF ORS to collaborate in the demonstration of an on-orbit capability to collect relevant data in support of the DHS mission and the ORS mission to enable rapid low-cost space capability. ORS has developed a flexible, reusable, government-owned design for _6U CubeSats. ORS employs autonomous manufacturing, modular open system architecture, and open standards. ORS will demonstrate autonomous _open manufacturing of low volume, high-value assets and autonomous digital techniques to provide mission assurance. DHS plans to leverage a 2-ball ORS constellation to perform RF signal detection in support of the USCG mission. o HE360: HE360 is a commercial company focused on space-based sensing of radio-frequency (RF) signals and analytic applications of such data sets. The company intends to launch a constellation of satellites (3) able to perform RF signal detection, geolocation, and identification in early 2017. HE360 is under contract with DHS S&T to support on-orbit testing, evaluations, and integration of their systems with Mobile CubeSat Command and Control (MC3) System o MC3 System: The MC3 System is a network of fully autonomous ground stations. ASAP will purchase two MC3 ground stations and is working with the USCGs Rapid Development Program to determine locations where MC3 will be installed. 26 September 2016 Page 21 of 22 MC3 will be integrated into the USCGs Rescue Operations Centers, supporting Arctic MDA including search-and-rescue. Through collaboration with ORS, HE360 and MC3, DHS S&T and USCG will demonstrate, test, and evaluate detecting emergency distress beacons from space utilizing multiple on-orbit constellations of CubeSat systems. The space-based sensor data will be incorporated into predictive analytics and fusion tools to improve the arctic MDA mission area. ",Information technology — Security techniques — A framework for identity management — Part 2: Reference architecture and requirements,https://www.iso.org/obp/ui/#!iso:std:57915:en,"IntroductionData processing systems commonly gather a range of information on its users be it a person, piece of equipment, or piece of software connected to it and make decisions based on the gathered information. Such identity-based decisions may concern access to applications or other resources.To address the need to efficiently and effectively implement systems that make identity-based decisions, this part of ISO/IEC 24760 specifies a framework for the issuance, administration, and use of data that serves to characterize individuals, organizations, or information technology components, which operate on behalf of individuals or organizations.For many organizations, the proper management of identity information is crucial to maintain security of the organizational processes. For individuals, correct identity management is important to protect privacy.ISO/IEC 24760 specifies fundamental concepts and operational structures of identity management with the purpose to realize information system management so that information systems can meet business, contractual, regulatory, and legal obligations.This part of ISO/IEC 24760 defines a reference architecture for an identity management system that includes key architectural elements and their interrelationships. These architectural elements are described in respect to identity management deployments models. This part of ISO/IEC 24760 specifies requirements for the design and implementation of an identity management system so that it can meet the objectives of stakeholders involved in the deployment and operation of that system.This part of ISO/IEC 24760 is intended to provide a foundation for the implementation of other International Standards related to identity information processing such as— ISO/IEC 29100, Information technology ─ Security techniques ─ Privacy framework,— ISO/IEC 29101, Information technology ─ Security techniques ─ Privacy reference architecture,— ISO/IEC 29115, Information technology ─ Security techniques ─ Entity authentication assurance framework, and— ISO/IEC 29146, Information technology ─ Security techniques ─ A framework for access management.","1   ScopeThis part of ISO/IEC 24760— provides guidelines for the implementation of systems for the management of identity information, and— specifies requirements for the implementation and operation of a framework for identity management.This part of ISO/IEC 24760 is applicable to any information system where information relating to identity is processed or stored.",ISO/IEC 24760-2:2015(en) -36,"The major components of the ASAP system are listed below. Metric Name Current Capability Threshold Objective Project Objective Current Status 406 MHz Emergency Beacon without GPS Time-to-detection Average via COSPAS-SARSAT: 46 min Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS Time-to-geolocation Average via COSPAS-SARSAT: 90 min Average extrapolated from project T&E: 60 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Time to provide location as a web service: less than 1 minute from geolocation Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS geolocation accuracy Average via COSPAS-SARSAT Doppler method: within 5 km Average via T&E: 10 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Average via T&E: 5 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Waiting on T&E in 2Q and 3Q FY18 Channel 16 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and playback channel 16 transmissions (i) Also automatically identify distress words (e.g., mayday, pan-pan), (ii) Display detection region on CG COP Waiting on T&E in 2Q and 3Q FY18 Channel 70 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and display channel 70 digital selective calling transmissions (i) Display detection region on CG COP (ii) Decode DSC message and display any embedded location information on CG COP Waiting on T&E in 2Q and 3Q FY18 26 September 2016 Page 20 of 22 An open architecture, open APIs, and an open data model will be central to the design of the ASAP processing node. The ASAP processing node will maintain a set of interfaces (APIs) that are meant to ensure interoperability between data systems across the various suite of sensors and sensor types. This open architecture will enable the ASAP software to interoperate with other components existing systems. As mentioned previously, the ASAP open framework will consist of standards for three different levels: Infrastructure Services, Common Services, and Mission Services. o IMDE/CSS is a DHS S&T program that will be leveraged by ASAP and will be part of the ASAP open architecture. IMDE/CSS will demonstrate an enterprise-wide system of maritime nodes providing streams of near real-time sensor data and access to non-sensor data including information, analysis, and archives. This system will access, process, and fuse data from mission feeds and diversified sensor sources and make it available through a web-based portal to all system users. IMDE/CSS is built on a scalable and _pluggable micro-service architecture with robust core services to include logging, identity management, data entitlement, and federated discovery. o ASAP plans to integrate onto IMDE in a later phase of the project. Polar Scout is not planned to integrate onto IMDE, however the Data Analytics does plan to integrate onto IMDE. The timeline (initially or at a later phase) of integrating onto IMDE is still under review. Identification and development of space-based sensor feeds, where the focus is the identification and leveraging of existing commercial and government sensors; and procuring new sensors to fill MDA gaps. There are two variants of CubeSats and SmallSats that are under development by HE360 and USAF ORS. o ORS: DHS S&T has executed an MOU with USAF ORS to collaborate in the demonstration of an on-orbit capability to collect relevant data in support of the DHS mission and the ORS mission to enable rapid low-cost space capability. ORS has developed a flexible, reusable, government-owned design for _6U CubeSats. ORS employs autonomous manufacturing, modular open system architecture, and open standards. ORS will demonstrate autonomous _open manufacturing of low volume, high-value assets and autonomous digital techniques to provide mission assurance. DHS plans to leverage a 2-ball ORS constellation to perform RF signal detection in support of the USCG mission. o HE360: HE360 is a commercial company focused on space-based sensing of radio-frequency (RF) signals and analytic applications of such data sets. The company intends to launch a constellation of satellites (3) able to perform RF signal detection, geolocation, and identification in early 2017. HE360 is under contract with DHS S&T to support on-orbit testing, evaluations, and integration of their systems with Mobile CubeSat Command and Control (MC3) System o MC3 System: The MC3 System is a network of fully autonomous ground stations. ASAP will purchase two MC3 ground stations and is working with the USCGs Rapid Development Program to determine locations where MC3 will be installed. 26 September 2016 Page 21 of 22 MC3 will be integrated into the USCGs Rescue Operations Centers, supporting Arctic MDA including search-and-rescue. Through collaboration with ORS, HE360 and MC3, DHS S&T and USCG will demonstrate, test, and evaluate detecting emergency distress beacons from space utilizing multiple on-orbit constellations of CubeSat systems. The space-based sensor data will be incorporated into predictive analytics and fusion tools to improve the arctic MDA mission area. ",Information technology — Security techniques — A framework for identity management — Part 3: Practice,https://www.iso.org/obp/ui/#!iso:std:57916:en,"IntroductionData processing systems commonly gather a range of information on their users, be it a person, piece of equipment, or piece of software connected to it and make decisions based on the gathered information. Such identity-based decisions may concern access to applications or other resources.To address the need to efficiently and effectively implement systems that make identity-based decisions, ISO/IEC 24760 specifies a framework for the issuance, administration, and use of data that serves to characterize individuals, organizations or information technology components, which operate on behalf of individuals or organizations.For many organizations, the proper management of identity information is crucial to maintain security of the organizational processes. For individuals, correct identity management is important to protect privacy.This part of ISO/IEC 24760 specifies fundamental concepts and operational structures of identity management with the purpose to realize information system management, so that information systems can meet business, contractual, regulatory and legal obligations.This part of ISO/IEC 24760 presents practices for identity management. These practices cover assurance in controlling identity information use, controlling the access to identity information and other resources based on identity information, and controlling objectives that should be implemented when establishing and maintaining an identity management system.This part of ISO/IEC 24760 consists of the following parts:— ISO/IEC 24760-1: Terminology and concepts;— ISO/IEC 24760-2: Reference architecture and requirements;— ISO/IEC 24760-3: Practice.ISO/IEC 24760 is intended to provide foundations for other identity management related International Standards including the following:— ISO/IEC 29100, Privacy framework;— ISO/IEC 29101, Privacy reference architecture;— ISO/IEC 29115, Entity authentication assurance framework;— ISO/IEC 29146, A framework for access management.","1   ScopeThis part of ISO/IEC 24760 provides guidance for the management of identity information and for ensuring that an identity management system conforms to ISO/IEC 24760-1 and ISO/IEC 24760-2.This part of ISO/IEC 24760 is applicable to an identity management system where identifiers or PII relating to entities are acquired, processed, stored, transferred or used for the purposes of identifying or authenticating entities and/or for the purpose of decision making using attributes of entities. Practices for identity management can also be addressed in other standards.",ISO/IEC 24760-3:2016(en) -37,"The major components of the ASAP system are listed below. Metric Name Current Capability Threshold Objective Project Objective Current Status 406 MHz Emergency Beacon without GPS Time-to-detection Average via COSPAS-SARSAT: 46 min Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS Time-to-geolocation Average via COSPAS-SARSAT: 90 min Average extrapolated from project T&E: 60 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Time to provide location as a web service: less than 1 minute from geolocation Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS geolocation accuracy Average via COSPAS-SARSAT Doppler method: within 5 km Average via T&E: 10 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Average via T&E: 5 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Waiting on T&E in 2Q and 3Q FY18 Channel 16 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and playback channel 16 transmissions (i) Also automatically identify distress words (e.g., mayday, pan-pan), (ii) Display detection region on CG COP Waiting on T&E in 2Q and 3Q FY18 Channel 70 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and display channel 70 digital selective calling transmissions (i) Display detection region on CG COP (ii) Decode DSC message and display any embedded location information on CG COP Waiting on T&E in 2Q and 3Q FY18 26 September 2016 Page 20 of 22 An open architecture, open APIs, and an open data model will be central to the design of the ASAP processing node. The ASAP processing node will maintain a set of interfaces (APIs) that are meant to ensure interoperability between data systems across the various suite of sensors and sensor types. This open architecture will enable the ASAP software to interoperate with other components existing systems. As mentioned previously, the ASAP open framework will consist of standards for three different levels: Infrastructure Services, Common Services, and Mission Services. o IMDE/CSS is a DHS S&T program that will be leveraged by ASAP and will be part of the ASAP open architecture. IMDE/CSS will demonstrate an enterprise-wide system of maritime nodes providing streams of near real-time sensor data and access to non-sensor data including information, analysis, and archives. This system will access, process, and fuse data from mission feeds and diversified sensor sources and make it available through a web-based portal to all system users. IMDE/CSS is built on a scalable and _pluggable micro-service architecture with robust core services to include logging, identity management, data entitlement, and federated discovery. o ASAP plans to integrate onto IMDE in a later phase of the project. Polar Scout is not planned to integrate onto IMDE, however the Data Analytics does plan to integrate onto IMDE. The timeline (initially or at a later phase) of integrating onto IMDE is still under review. Identification and development of space-based sensor feeds, where the focus is the identification and leveraging of existing commercial and government sensors; and procuring new sensors to fill MDA gaps. There are two variants of CubeSats and SmallSats that are under development by HE360 and USAF ORS. o ORS: DHS S&T has executed an MOU with USAF ORS to collaborate in the demonstration of an on-orbit capability to collect relevant data in support of the DHS mission and the ORS mission to enable rapid low-cost space capability. ORS has developed a flexible, reusable, government-owned design for _6U CubeSats. ORS employs autonomous manufacturing, modular open system architecture, and open standards. ORS will demonstrate autonomous _open manufacturing of low volume, high-value assets and autonomous digital techniques to provide mission assurance. DHS plans to leverage a 2-ball ORS constellation to perform RF signal detection in support of the USCG mission. o HE360: HE360 is a commercial company focused on space-based sensing of radio-frequency (RF) signals and analytic applications of such data sets. The company intends to launch a constellation of satellites (3) able to perform RF signal detection, geolocation, and identification in early 2017. HE360 is under contract with DHS S&T to support on-orbit testing, evaluations, and integration of their systems with Mobile CubeSat Command and Control (MC3) System o MC3 System: The MC3 System is a network of fully autonomous ground stations. ASAP will purchase two MC3 ground stations and is working with the USCGs Rapid Development Program to determine locations where MC3 will be installed. 26 September 2016 Page 21 of 22 MC3 will be integrated into the USCGs Rescue Operations Centers, supporting Arctic MDA including search-and-rescue. Through collaboration with ORS, HE360 and MC3, DHS S&T and USCG will demonstrate, test, and evaluate detecting emergency distress beacons from space utilizing multiple on-orbit constellations of CubeSat systems. The space-based sensor data will be incorporated into predictive analytics and fusion tools to improve the arctic MDA mission area. ",Information technology — Biometrics — The use of biometric technology in commercial Identity Management applications and processes,https://www.iso.org/obp/ui/#!iso:std:45167:en,"IntroductionThis Technical Report provides support for the further development of ISO/IEC biometric standards in the context of cross-jurisdictional and societal applications of biometrics, including standardization of both existing and future technologies.The contents of this Technical Report are recommended practices and guidelines and they are not mandatory. Legal requirements of the respective countries take precedence and biometric data should be obtained in accordance with local norms of behaviour. This Technical Report does not reduce any rights or obligations provided by applicable laws. Compliance with any recommendations in the Technical Report does not, in itself, confer immunity from legal obligations.Examples of the benefits to be gained by following the recommendations and guidelines in this Technical Report are— enhanced acceptance by subjects of systems using biometric technology,— improved public perception and understanding of these systems,— smoother introduction and operation of these systems,— potential long-term cost reduction (whole life costs),— adoption of commonly approved good privacy practice,— interoperability both domestically and internationally, and— implemented solutions having a greater degree of vendor independence.The primary stakeholders are identified as— users – those who use the results of the biometric data,— developers of technical standards,— subjects – those who provide the biometric sample,— writers of system specifications, system architects, and IT designers, and— public policy makers.","1   Scope1.1   In scopeThis Technical Report will discuss— concepts and considerations for the use of biometrics in a commercial Identity Management Solutions,— items that need to be considered when integrating biometrics into a commercial Identity Management Solutions, and— implementation Issues when implementing biometrics into commercial Identity Management Solutions.1.2   ExclusionsThis Technical Report will not— define an architecture and framework for IDM,— discuss any specification or assessment of government policy,— discuss the business need for a biometric database or process,— discuss the specific biometrics and which ones are to be used in particular systems,— consider the legality and acceptability in particular jurisdictions and cultures,— analyse the general structure of identifiers and the global identification of objects (e.g. object identifiers), and— discuss technical specifications in relation to the use of trusted biometric hardware and software.",ISO/IEC TR 29144:2014(en) -38,"3.3.1 Polar Scout Trade Space Analysis Four broad range of solutions were considered in the ASAP trade space analysis: terrestrial, maritime, airborne, and space-based. To assess the alternatives, the trade study examined a 200 by 200 NMI area 100 NM north of Barrow, Alaska, and the entire Juneau Alaska region. Each option was assessed by its ability to provide continuous coverage (24 hours per day, seven days per week) and provide a minimum of a 30 minute revisit time. Each alternative was assessed in the following areas: Platform acquisition cost Access to area of interest Technical maturity/feasibility 3.3.1.1 Preferred Alternative Within each solution category (terrestrial, maritime, airborne, and space-based) many potential configurations were constructed and assessed. The space-based solutions using CubeSats proved to be the optimal solution in the ability to provide a 30-minute revisit and were the least expensive alternatives. The best land-based, airborne, and maritime solutions were cost-prohibitive or had insufficient range when compared to the CubeSat space-based solution. 3.3.1.2 Logistics Considerations Logistics were not taken into consideration in the trade space analysis since other factors disqualified the non-CubeSat alternatives due to their high cost of acquiring the asset, access to coverage area, and technical maturity. 3.3.1.3 Polar Scout Technical Approach 3.3.1.3.1 Design, Development, and Integration Approach Polar Scout is leveraging design and development activities performed under other government or commercial contracts. The 6U CubeSats have been under development for approximately 5 years by ORS. When DHS decided to leverage the ORS 6U CubeSats, the CubeSats had already passed their CDR milestone approximately two years prior. The milestones 26 September 2016 Page 23 of 22 monitored by DHS will be bus and payload integration activities, bus and payload test activities (e.g. thermal, environmental, etc) and ground processing activities. DHS is leveraging a payload design (by Rincon) that is currently in operations on another CubeSat. This payload will be integrated into the 6U CubeSats. The milestones monitored by DHS will be payload fabrication, payload and bus integration, payload test activities (e.g. thermal, environmental, etc), and payload processing activities. The ASAP Program Manager has decision authority of all 6U flight build, payload integration and test activities, and deviations that are directly related to the operations of the 6U CubeSats. Polar Scout is leveraging the HE360 commercial development effort to acquire additional EPIRB data. For the HE360 contract, the ASAP Program Manager has decision authority for only those design, development, and test activities related to the collection and processing of EPRIB data. A portion of the Analytics contract (RadiantBlue/HumanGeo) will be for RadiantBlue/HumanGeo to perform as the ground integrator for Polar Scout. RadiantBlue/HumanGeo will integrate the EPIRB data from both HE360 and the 6U and provide that data to the USCG and NOAA as agreed upon. To reduce cost and to further separate the Polar Scout and Analytics efforts, the ASAP project is also investigating the possibility of having Rincon integrate the EPRIB data from both the 6Us and HE360. 3.3.1.3.2 Communication Approach The ASAP Program Manager has stood up several IPTs to monitor the Polar Scout activities. Stakeholders for the 6U CubeSat effort meet weekly in the Technical IPT and the Ground IPT. Through these two IPTs, the Polar Scout Program Manager gains insight into the status, issues, risks, and resolution of challenges. The ASAP Program Manager also has a bi-weekly technical and budget meeting with the 6U prime contractor. In addition the ASAP Program Manager conducts a status meeting with Aerospace to review project status, actions, risks, and open items. For the HE360 contract, HE360 provides monthly status and budget reports. TEMs are held approximately monthly to review the status, issues, risks, and resolution of challenges. 3.3.2 Analytics For the RadiantBlue/HumanGeo contract, the Program Manager meets with the team bi-weekly to review the status, issues, risks, and resolution of challenges. These meeting just began during the month of March 2017. ",Space systems — Structural components and assemblies,https://www.iso.org/obp/ui/#!iso:std:46099:en,"IntroductionStructures are the backbones of all spaceflight systems. A structural failure could cause the loss of human lives for manned space systems or could jeopardize the intended mission for unmanned space systems. Currently, there is no International Standard that covers all the aspects that can be used for spaceflight structural items such as spacecraft platforms, interstage adaptors, launch vehicle buses and rocket motor cases.The purpose of this International Standard is to establish general requirements for structures. It provides the uniform requirements necessary to minimize the duplication of effort and the differences between approaches taken by the participating nations and their commercial space communities in developing structures. In addition, the use of agreed-upon standards will facilitate cooperation and communication among space progammes.","1   ScopeThis International Standard establishes requirements for the design; material selection and characterization; fabrication; testing and inspection of all structural items in space systems, including expendable and reusable launch vehicles, satellites and their payloads. This International Standard, when implemented for a particular space system, will assure high confidence in achieving safe and reliable operation in all phases of its planned mission.This International Standard applies specifically to all structural items, including fracture-critical hardware used in space systems during all phases of the mission, with the following exceptions: adaptive structures, engines and thermal protection systems.",ISO 10786:2011(en) -39,"Algorithm data package refers to computer software, executable on a Linux, Unix, or Windows-based computer system, that implements the APID algorithm and contains: o An executable binary file that contains the applications main entry point and any code that was statically linked to the application target; o Resource files and software libraries necessary for the execution of the executable file; and o Computer software documentation corresponding to the use, operation, and maintenance of the application. Application Program Interface refers to computer software documentation describing how software components may interact with other software components. It details, in human-readable format, the expected behavior of software libraries. It may contain the set of public methods, variables used as arguments, and return values for public methods. It shall contain a set of protocols, routines, and tools necessary to build application software interacting with the computer software for which the API was written. ",Systems and software engineering — Requirements for designers and developers of user documentation,https://www.iso.org/obp/ui/#!iso:std:43073:en,"IntroductionAnyone who uses application software needs accurate information about how the software will help the user accomplish a task. The documentation may be the first tangible item that the user sees and therefore influences the user’s first impressions of the software product. If the information is supplied in a convenient form and is easy to find and understand, the user can quickly become proficient at using the product. Hence, well-designed documentation not only assists the user and helps to reduce the cost of training and support, but also enhances the reputation of the product, its producer, and its suppliers.Although software developers aim to design user interfaces that behave so intuitively that very little separate documentation is needed, this is rarely possible. Today’s software offers increasingly robust functionality, not only within applications, but also across applications that intelligently exchange information with one another. Further, most software designs include underlying rules and calculations, or algorithms, that affect the results a user can obtain when using the software. Such underlying programming mechanics are discernable by users, but only through laborious testing. For these reasons and more, user documentation remains an essential component of usable software products.Documentation is often regarded as something done after the software has been implemented. However, for high-quality software documentation, its development should be regarded as an integral part of the software life cycle process. If done properly, documentation or information management is a big enough job to require process planning in its own right.This International Standard was developed to assist users of ISO/IEC 15288:2008, Systems and software engineering — System life cycle processes, or ISO/IEC 12207:2008, Systems and software engineering — Software life cycle processes, to design and develop documentation as part of the software life cycle processes. It defines the documentation process from the documentation developer's standpoint.NOTE Other International Standards in the ISO/IEC 265NN family are in preparation or planned to address the documentation and information management processes from the viewpoints of managers, assessors and testers, and acquirers and suppliers.In addition to defining a standard process, this International Standard also covers the documentation product. This International Standard specifies the structure, content, and format for documentation, and also provides informative guidance for user documentation style.Earlier standards tended to view the results of the documentation process as a single book or multivolume set: a one-time deliverable. Increasingly, documentation designers recognize that most user documentation is now produced from managed re-use of previously developed information (single-source documentation), adapted for new software versions or presentation in various on-screen and printed media. While this International Standard does not describe how to set up a content management system (CMS), it is applicable for documentation organizations practicing single-source documentation.This International Standard is independent of the software tools that may be used to produce documentation, and applies to both printed documentation and on-screen documentation. Much of its guidance is applicable to user documentation for systems including hardware as well as software user documentation.This International Standard conforms to ISO/IEC 12207:2008 as an implementation of subclause 7.2.1, Software Documentation Management Process, for software user documentation. This International Standard may be used as a conformance or a guidance document for documentation products, projects, and organizations claiming conformance to ISO/IEC 15288:2008 or to ISO/IEC 12207:2008.The primary sources for this International Standard are previous standards IEEE Std 1063-2001, IEEE standard for software user documentation, and ISO/IEC 18019:2004, Software and system engineering — Guidelines for the design and preparation of user documentation for application software.","1   ScopeThis clause presents the scope, purpose, organization, and candidate uses of this International Standard.This International Standard supports the interest of software users in consistent, complete, accurate, and usable documentation. It includes both approaches to standardization: a) process standards, which specify the way in which documentation products are to be developed; and b) documentation product standards, which specify the characteristics and functional requirements of the documentation.The first part of this International Standard covers the user documentation process for designers and developers of documentation. It describes how to establish what information users need, how to determine the way in which that information should be presented to the users, and how to prepare the information and make it available. It is not limited to the design and development phase of the life cycle, but includes activities throughout the information management and documentation processes.The second part of this International Standard provides minimum requirements for the structure, information content, and format of user documentation, including both printed and on-screen documents used in the work environment by users of systems containing software. It applies to printed user manuals, online help, tutorials, and user reference documentation.This International Standard neither encourages nor discourages the use of either printed or electronic (on-screen) media for documentation, or of particular documentation development or management tools or methodologies.This International Standard may be helpful for developing the following types of documentation, although it does not cover all aspects of them:• documentation of products other than software;• multimedia systems using animation, video, and sound;• computer-based training (CBT) packages and specialized course materials intended primarily for use in formal training programs;• documentation produced for installers, computer operators, or system administrators who are not end users;• maintenance documentation describing the internal operation of systems software;• documentation incorporated into the user interface itself.This International Standard is applicable to documentation designers and developers, including a variety of specialists:• information designers and architects who plan the structure and format of documentation products in a documentation set;• usability specialists and business analysts who identify the tasks that the intended users will perform with the software;• those who develop and edit the written content for user documentation;• graphic designers with expertise in electronic media;• user interface designers and ergonomics experts working together to design the presentation of the documentation on the screen.This International Standard may also be consulted by those with other roles and interests in the documentation process:• managers of the software development process or the documentation process;• acquirers of documentation prepared by suppliers;• usability testers, documentation reviewers, subject-matter experts;• developers of tools for creating on-screen documentation;• human-factors experts who identify principles for making documentation more accessible and easily used.This International Standard is intended for use in all types of organizations, whether or not a dedicated documentation department is present, and may be used as a basis for local standards and procedures. Readers are assumed to have experience or knowledge of software development or documentation development processes.Users of this International Standard should adopt a style manual for use within their own organizations to complement the guidance provided in the annexes to this International Standard, or adopt an industry-recognized style guide. Annex A provides guidance for the content of a style guide, and Annexes B and C provide guidance on style.The order of clauses in this International Standard does not imply that the documentation should be developed in this order or presented to the user in this order.In each clause, the requirements are media-independent, as far as possible. Requirements specific to either print or electronic media are identified as such, particularly in Clause 12. Annex D provides guidance for the design of printed documentation.The checklists in Annex E may be used at each phase of the documentation process to check that the appropriate steps have been carried out and that the finished documentation satisfies quality criteria.The checklists in Annexes F and G may be used to track conformance with the requirements of this International Standard for documentation processes and products.The bibliography lists works that provide guidance on the processes of managing, preparing, and testing user documentation.",ISO/IEC 26514:2008(en) -40,"Algorithm data package refers to computer software, executable on a Linux, Unix, or Windows-based computer system, that implements the APID algorithm and contains: o An executable binary file that contains the applications main entry point and any code that was statically linked to the application target; o Resource files and software libraries necessary for the execution of the executable file; and o Computer software documentation corresponding to the use, operation, and maintenance of the application. Application Program Interface refers to computer software documentation describing how software components may interact with other software components. It details, in human-readable format, the expected behavior of software libraries. It may contain the set of public methods, variables used as arguments, and return values for public methods. It shall contain a set of protocols, routines, and tools necessary to build application software interacting with the computer software for which the API was written. ",Systems and software engineering — Requirements for managers of user documentation,https://www.iso.org/obp/ui/#!iso:std:43070:en,"IntroductionEffective management of the software user documentation tasks is essential in order to ensure that documentation is usable, accurate, delivered when needed by the users, produced efficiently, and maintained consistent with the software. This International Standard addresses the management of user documentation in relation to both initial development and subsequent releases of the software and user documentation.Anyone who uses application software needs accurate information about how the software will help the user accomplish a task. The documentation can be the first tangible item that the user sees, and if so, it can influence the user’s first impressions of the product. If the information is supplied in a convenient form and is easy to find and understand, the users can quickly become proficient at using the product. Hence, a well-managed documentation process not only assists the user and helps to reduce the cost of training and support, but also enhances the reputation of the product, its producer, and its suppliers.Although many software designers aim to have user interfaces that behave so intuitively that very little separate documentation is needed, this approach is rarely possible in practice. User documentation is an essential component of usable software products.Documentation is often regarded as something done after the software has been implemented. However, for quality software documentation, its development should be regarded as an integral part of the software life-cycle process from the planning and design stages onwards. If done properly, documentation or information management is a big enough job to require process planning in its own right.This International Standard was developed to assist users of ISO/IEC 15288:2008 (IEEE Std 15288-2008), Systems and software engineering — System life cycle processes, or ISO/IEC 12207:2008 (IEEE Std 12207-2008), Systems and software engineering — Software life cycle processes, to manage software user documentation as part of the software life cycle. This International Standard defines the documentation process from the manager's standpoint. It was developed to assist those who provide input to, perform, and evaluate user documentation management.NOTE: Other International Standards in the ISO/IEC 265NN family address the documentation and information management processes from the viewpoint of documentation designers/developers, testers and reviewers, and acquirers and suppliers.This International Standard applies to people or organizations producing suites of documentation, to those undertaking a single documentation project, and for documentation produced internally as well as to documentation contracted to outside service organizations. Beyond the development and production of a user manual, help system, or set of documentation for a single software product, it applies to a broader range of documentation management situations, including user documentation for those who install, implement, administer, and operate software for end users. Frequently, user documentation managers are responsible for the development and reuse of information (content management) for:• multiple updates of user documentation as the software version is updated;• multiple reuses or adaptations of information to support related software products;• multiple translated or localized versions of user documentation;• a portfolio of unrelated documentation projects being managed concurrently within an organization.This International Standard is not intended to advocate the use of either printed or electronic (on-screen) media for documentation, or of any particular information management, content management, documentation testing, or project management tools or protocols. The requirements are media-independent, as far as possible. This International Standard may be applied to user documentation for systems including software as well as to software user documentation.","1   ScopeThis International Standard supports the needs of software users for consistent, complete, accurate, and usable documentation. It provides requirements for strategy, planning, performance, and control for documentation managers. It specifies procedures for managing user documentation throughout the software life cycle. It also includes requirements for key documents produced for user documentation management, including documentation plans and documentation management plans.This International Standard provides an overview of the software documentation and information management processes which are specialized for user documentation in this International Standard. It also presents aspects of portfolio planning and content management for user documentation. Specifically, it addresses the following:• management requirements in starting a project, including setting up procedures and specifications, establishing infrastructure, and building a team, with examples of roles needed on a user documentation team;• measurements and estimates needed for management control;• the application of management control to user documentation work;• the use of supporting processes such as change management, schedule and cost control, resource management, quality management and process improvement.The works listed in the Bibliography provide guidance on the processes of managing, preparing, and testing user documentation.NOTE 1: Related standards of value to documentation managers and others involved in the process include ISO/IEC 26514:2008, Systems and software engineering — Requirements for designers and developers of user documentation (also available as IEEE Std 26514-2010, IEEE Standard for Adoption of ISO/IEC 26514:2008, Systems and Software Engineering — Requirements for Designers and Developers of User Documentation); ISO/IEC 26513:2009, Systems and software engineering — Requirements for testers and reviewers of user documentation (also available as IEEE Std 26513-2010, IEEE Standard for Adoption of ISO/IEC 26513:2009, Systems and Software Engineering — Requirements for Testers and Reviewers of User Documentation); and ISO/IEC/IEEE 26512:2011, Systems and software engineering — Requirements for acquirers and suppliers of user documentation.This International Standard is applicable for use by managers of user documentation projects or organizations with information designers and documentation developers. This International Standard may also be consulted by those with other roles and interests in the documentation process:• managers of the software development process;• acquirers of documentation prepared by suppliers;• experienced writers who develop the written content for user documentation;• developers of tools for creating on-screen documentation;• human-factors experts who identify principles for making documentation more accessible and easily used;• graphic designers with expertise in electronic media;• user interface designers and ergonomics experts working together to design the presentation of the documentation on the screen.This International Standard may be applied to manage the following types of documentation, although it does not cover all aspects of them:• documentation for user assistance, training, marketing, and systems documentation for product design and development, based on reuse of user documentation topics;• documentation of products other than software;• multimedia marketing presentations using animation, video, and sound;• computer-based training (CBT) packages and specialized course materials intended primarily for use in formal training programs;• maintenance documentation describing the internal operation of systems software.NOTE 2: ISO/IEC/IEEE 15289:2011 provides more detailed content for life-cycle process information items (documentation).",ISO/IEC/IEEE 26511:2011(en) -41,"Algorithm data package refers to computer software, executable on a Linux, Unix, or Windows-based computer system, that implements the APID algorithm and contains: o An executable binary file that contains the applications main entry point and any code that was statically linked to the application target; o Resource files and software libraries necessary for the execution of the executable file; and o Computer software documentation corresponding to the use, operation, and maintenance of the application. Application Program Interface refers to computer software documentation describing how software components may interact with other software components. It details, in human-readable format, the expected behavior of software libraries. It may contain the set of public methods, variables used as arguments, and return values for public methods. It shall contain a set of protocols, routines, and tools necessary to build application software interacting with the computer software for which the API was written. ","Systems and software engineering — Content management for product life-cycle, user and service management documentation",https://www.iso.org/obp/ui/#!iso:std:43090:en,,,ISO/IEC/IEEE 26531:2015(en) -42,"Algorithm data package refers to computer software, executable on a Linux, Unix, or Windows-based computer system, that implements the APID algorithm and contains: o An executable binary file that contains the applications main entry point and any code that was statically linked to the application target; o Resource files and software libraries necessary for the execution of the executable file; and o Computer software documentation corresponding to the use, operation, and maintenance of the application. Application Program Interface refers to computer software documentation describing how software components may interact with other software components. It details, in human-readable format, the expected behavior of software libraries. It may contain the set of public methods, variables used as arguments, and return values for public methods. It shall contain a set of protocols, routines, and tools necessary to build application software interacting with the computer software for which the API was written. ",Systems and software engineering — Requirements for acquirers and suppliers of user documentation,https://www.iso.org/obp/ui/#!iso:std:43071:en,"IntroductionThis International Standard was developed to assist users of ISO/IEC 15288:2008 (IEEE Std 15288-2008) or ISO/IEC 12207:2008 (IEEE Std 12207-2008) to acquire or supply software user documentation and documentation services as part of the software life cycle processes. It defines the documentation process from the acquirer’s standpoint and the supplier’s standpoint. The accurate description of the requirements for user documentation is essential in order to ensure that the documentation meets the needs of its users. This International Standard addresses the identification, definition, and fulfillment of user documentation requirements as part of the acquisition and supply processes.This International Standard covers the requirements for information items used in the acquisition of user documentation products: the Acquisition Plan, Document Specification, Statement of Work, Request for Proposals, and the Proposal. It also discusses the use of a Documentation Management Plan and a Document Plan as they arise in the acquisition and supply processes.This International Standard is independent of the software tools that can be used to produce documentation, and applies to both printed documentation and on-screen documentation. Much of its guidance is applicable to user documentation for systems including hardware as well as software.Earlier standards tended to view the results of the documentation process as a single book or multi-volume set: a one-time deliverable. Increasingly, documentation acquirers and suppliers recognize that most user documentation is now produced from managed re-use of previously developed information (single-source documentation) adapted for new software versions, or presentation in various on-screen and printed media. While this International Standard does not describe how to set up a content management system, it is applicable for documentation organizations practising single-source documentation, as well as for acquirers and suppliers of one-time deliverables.Anyone who uses application software needs accurate information about how the software will help the user accomplish a task. The documentation can be the first tangible item that the user sees, and so influences the user’s first impressions of the software product. If the information is supplied in a convenient form and is easy to find and understand, the user can quickly become proficient at using the product. Therefore, well-designed documentation not only assists the user and helps to reduce the cost of training and support, but also enhances the reputation of the product, its producer, and its suppliers.Although software developers intend to design user interfaces that behave so intuitively that very little separate documentation is needed, this is rarely possible. Today’s software offers increasingly robust functionality, not only within applications, but also across applications which intelligently exchange information with one another. Further, most software includes underlying rules and calculations, or algorithms that affect the results a user can obtain when using the software. These underlying programming mechanics are discernable by users, but only through laborious testing. For these and other reasons, user documentation remains an essential component of usable software products.Documentation is often regarded as something done after the software has been implemented. However, for high-quality software documentation, its development needs to be regarded as an integral part of the software life cycle. In fact, quality documentation or information management services are important enough to require specific planning.Related standards for those acquiring and supplying software user documentation include ISO/IEC 26514:2008 (IEEE Std 26514-2010), Systems and software engineering — Requirements for designers and developers of user documentation, and ISO/IEC 26513:2009 (IEEE Std 26513-2010), Systems and software engineering — Requirements for testers and reviewers of user documentation. Other International Standards are in preparation or planned to address the documentation and information management processes from the viewpoint of managers and agile projects.This International Standard is consistent with ISO/IEC 12207:2008 (IEEE Std 12207-2008) as an implementation of the Acquisition and Supply processes, which comprise the Agreement processes, and of the Information Management and Software Documentation Management Processes.This International Standard is intended for use in all types of organizations, whether they have a dedicated documentation department or not. It can be used as a basis for local standards and procedures. Readers are assumed to have experience or knowledge of general agreement processes for acquisition and supply of products and services.The order of clauses in this International Standard does not imply that the acquisition activities need to be performed in this order, nor that documentation needs to be developed in this order or presented to the user in this order.In each clause, the requirements are media-independent, as far as possible.The checklists in Annexes A and B can be used to track conformance with the requirements of this International Standard for acquirers and suppliers of documentation products.The Bibliography contains references to source material used in the development of this International Standard, as well as sources of additional information that might be useful to acquirers and suppliers.","1   ScopeThis International Standard supports the interest of software users in having consistent, complete, accurate, and usable documentation. It addresses both available approaches to standardization: a) process standards, which specify the way that documentation products are to be acquired and supplied; and b) documentation product standards, which specify the characteristics and functional requirements of the documentation.As defined in ISO/IEC 12207:2008 (IEEE Std 12207-2008) and ISO/IEC 15288:2008 (IEEE Std 15288-2008), the acquisition and supply activities comprise the agreement processes of the software life cycle. Acquisition and supply of user documentation and user documentation services are specializations of those processes. User documentation services can be acquired and supplied for any part of the software documentation management or information management process, such as:• documentation or information management;• information design and development;• documentation editing and review coordination;• documentation testing, particularly usability testing;• documentation production and packaging;• documentation distribution and delivery;• advice on the selection and implementation of documentation tools and supporting systems;• documentation process improvement.This International Standard provides an overview of the software user documentation and information management processes which may require acquisition and supply of software user documentation products and services. It applies the Agreement processes (acquisition and supply) to software user documentation, and addresses the preparation of requirements for software user documentation. These requirements are central to the user documentation specification and Statement of Work discussed in this International Standard. This International Standard also addresses requirements for primary document outputs of the acquisition and supply process: the Request for Proposal and the Proposal for user documentation products and services.This International Standard is intended for use in acquiring or supplying either printed or electronic (on-screen) documentation. It is independent of documentation development or management tools or methodologies.This International Standard might be helpful for acquiring and supplying the following types of documentation, although it does not cover all aspects of them:• documentation of products other than software;• multimedia systems using animation, video, and sound;• computer-based training (CBT) packages and specialized course materials intended primarily for use in formal training programs;• maintenance documentation describing the internal operation of systems software;• documentation incorporated into the user interface.This International Standard is applicable to acquirers and suppliers of user documentation, including a variety of specialists:• business analysts who identify the tasks that the intended users will perform with the software;• managers of the software development process or the documentation process;• managers of the acquisition process, and those who authorize and approve acquisitions;• managers and authors involved in proposal preparation.It can also be consulted by those with other roles and interests in the documentation process:• information designers and architects who plan the structure, format, and content requirements of documentation products in a documentation set or web-accessible suite;• experienced authors and editors who develop the written content for user documentation;• graphic designers with expertise in electronic media;• user interface designers and ergonomics experts working together to design the presentation of the documentation on the screen;• usability testers, documentation reviewers, subject matter experts;• developers of tools for creating on-screen documentation.",ISO/IEC/IEEE 26512:2011(en) -43,"Algorithm data package refers to computer software, executable on a Linux, Unix, or Windows-based computer system, that implements the APID algorithm and contains: o An executable binary file that contains the applications main entry point and any code that was statically linked to the application target; o Resource files and software libraries necessary for the execution of the executable file; and o Computer software documentation corresponding to the use, operation, and maintenance of the application. Application Program Interface refers to computer software documentation describing how software components may interact with other software components. It details, in human-readable format, the expected behavior of software libraries. It may contain the set of public methods, variables used as arguments, and return values for public methods. It shall contain a set of protocols, routines, and tools necessary to build application software interacting with the computer software for which the API was written. ",Information technology — Programming languages — Ada,https://www.iso.org/obp/ui/#!iso:std:61507:en,"IntroductionDesign GoalsAda was originally designed with three overriding concerns: program reliability and maintenance, programming as a human activity, and efficiency. The 1995 revision to the language was designed to provide greater flexibility and extensibility, additional control over storage management and synchronization, and standardized packages oriented toward supporting important application areas, while at the same time retaining the original emphasis on reliability, maintainability, and efficiency. This third edition provides further flexibility and adds more standardized packages within the framework provided by the 1995 revision.The need for languages that promote reliability and simplify maintenance is well established. Hence emphasis was placed on program readability over ease of writing. For example, the rules of the language require that program variables be explicitly declared and that their type be specified. Since the type of a variable is invariant, compilers can ensure that operations on variables are compatible with the properties intended for objects of the type. Furthermore, error-prone notations have been avoided, and the syntax of the language avoids the use of encoded forms in favor of more English-like constructs. Finally, the language offers support for separate compilation of program units in a way that facilitates program development and maintenance, and which provides the same degree of checking between units as within a unit.Concern for the human programmer was also stressed during the design. Above all, an attempt was made to keep to a relatively small number of underlying concepts integrated in a consistent and systematic way while continuing to avoid the pitfalls of excessive involution. The design especially aims to provide language constructs that correspond intuitively to the normal expectations of users.Like many other human activities, the development of programs is becoming ever more decentralized and distributed. Consequently, the ability to assemble a program from independently produced software components continues to be a central idea in the design. The concepts of packages, of private types, and of generic units are directly related to this idea, which has ramifications in many other aspects of the language. An allied concern is the maintenance of programs to match changing requirements; type extension and the hierarchical library enable a program to be modified while minimizing disturbance to existing tested and trusted components.No language can avoid the problem of efficiency. Languages that require over-elaborate compilers, or that lead to the inefficient use of storage or execution time, force these inefficiencies on all machines and on all programs. Every construct of the language was examined in the light of present implementation techniques. Any proposed construct whose implementation was unclear or that required excessive machine resources was rejected.Language SummaryAn Ada program is composed of one or more program units. Program units may be subprograms (which define executable algorithms), packages (which define collections of entities), task units (which define concurrent computations), protected units (which define operations for the coordinated sharing of data between tasks), or generic units (which define parameterized forms of packages and subprograms). Each program unit normally consists of two parts: a specification, containing the information that must be visible to other units, and a body, containing the implementation details, which need not be visible to other units. Most program units can be compiled separately.This distinction of the specification and body, and the ability to compile units separately, allows a program to be designed, written, and tested as a set of largely independent software components.An Ada program will normally make use of a library of program units of general utility. The language provides means whereby individual organizations can construct their own libraries. All libraries are structured in a hierarchical manner; this enables the logical decomposition of a subsystem into individual components. The text of a separately compiled program unit must name the library units it requires.Program UnitsA subprogram is the basic unit for expressing an algorithm. There are two kinds of subprograms: procedures and functions. A procedure is the means of invoking a series of actions. For example, it may read data, update variables, or produce some output. It may have parameters, to provide a controlled means of passing information between the procedure and the point of call. A function is the means of invoking the computation of a value. It is similar to a procedure, but in addition will return a result.A package is the basic unit for defining a collection of logically related entities. For example, a package can be used to define a set of type declarations and associated operations. Portions of a package can be hidden from the user, thus allowing access only to the logical properties expressed by the package specification.Subprogram and package units may be compiled separately and arranged in hierarchies of parent and child units giving fine control over visibility of the logical properties and their detailed implementation.A task unit is the basic unit for defining a task whose sequence of actions may be executed concurrently with those of other tasks. Such tasks may be implemented on multicomputers, multiprocessors, or with interleaved execution on a single processor. A task unit may define either a single executing task or a task type permitting the creation of any number of similar tasks.A protected unit is the basic unit for defining protected operations for the coordinated use of data shared between tasks. Simple mutual exclusion is provided automatically, and more elaborate sharing protocols can be defined. A protected operation can either be a subprogram or an entry. A protected entry specifies a Boolean expression (an entry barrier) that must be True before the body of the entry is executed. A protected unit may define a single protected object or a protected type permitting the creation of several similar objects.Declarations and StatementsThe body of a program unit generally contains two parts: a declarative part, which defines the logical entities to be used in the program unit, and a sequence of statements, which defines the execution of the program unit.The declarative part associates names with declared entities. For example, a name may denote a type, a constant, a variable, or an exception. A declarative part also introduces the names and parameters of other nested subprograms, packages, task units, protected units, and generic units to be used in the program unit.The sequence of statements describes a sequence of actions that are to be performed. The statements are executed in succession (unless a transfer of control causes execution to continue from another place).An assignment statement changes the value of a variable. A procedure call invokes execution of a procedure after associating any actual parameters provided at the call with the corresponding formal parameters.Case statements and if statements allow the selection of an enclosed sequence of statements based on the value of an expression or on the value of a condition.The loop statement provides the basic iterative mechanism in the language. A loop statement specifies that a sequence of statements is to be executed repeatedly as directed by an iteration scheme, or until an exit statement is encountered.A block statement comprises a sequence of statements preceded by the declaration of local entities used by the statements.Certain statements are associated with concurrent execution. A delay statement delays the execution of a task for a specified duration or until a specified time. An entry call statement is written as a procedure call statement; it requests an operation on a task or on a protected object, blocking the caller until the operation can be performed. A called task may accept an entry call by executing a corresponding accept statement, which specifies the actions then to be performed as part of the rendezvous with the calling task. An entry call on a protected object is processed when the corresponding entry barrier evaluates to true, whereupon the body of the entry is executed. The requeue statement permits the provision of a service as a number of related activities with preference control. One form of the select statement allows a selective wait for one of several alternative rendezvous. Other forms of the select statement allow conditional or timed entry calls and the asynchronous transfer of control in response to some triggering event.Execution of a program unit may encounter error situations in which normal program execution cannot continue. For example, an arithmetic computation may exceed the maximum allowed value of a number, or an attempt may be made to access an array component by using an incorrect index value. To deal with such error situations, the statements of a program unit can be textually followed by exception handlers that specify the actions to be taken when the error situation arises. Exceptions can be raised explicitly by a raise statement.Data TypesEvery object in the language has a type, which characterizes a set of values and a set of applicable operations. The main classes of types are elementary types (comprising enumeration, numeric, and access types) and composite types (including array and record types).An enumeration type defines an ordered set of distinct enumeration literals, for example a list of states or an alphabet of characters. The enumeration types Boolean, Character, Wide_Character, and Wide_Wide_Character are predefined.Numeric types provide a means of performing exact or approximate numerical computations. Exact computations use integer types, which denote sets of consecutive integers. Approximate computations use either fixed point types, with absolute bounds on the error, or floating point types, with relative bounds on the error. The numeric types Integer, Float, and Duration are predefined.Composite types allow definitions of structured objects with related components. The composite types in the language include arrays and records. An array is an object with indexed components of the same type. A record is an object with named components of possibly different types. Task and protected types are also forms of composite types. The array types String, Wide_String, and Wide_Wide_String are predefined.Record, task, and protected types may have special components called discriminants which parameterize the type. Variant record structures that depend on the values of discriminants can be defined within a record type.Access types allow the construction of linked data structures. A value of an access type represents a reference to an object declared as aliased or to an object created by the evaluation of an allocator. Several variables of an access type may designate the same object, and components of one object may designate the same or other objects. Both the elements in such linked data structures and their relation to other elements can be altered during program execution. Access types also permit references to subprograms to be stored, passed as parameters, and ultimately dereferenced as part of an indirect call.Private types permit restricted views of a type. A private type can be defined in a package so that only the logically necessary properties are made visible to the users of the type. The full structural details that are externally irrelevant are then only available within the package and any child units.From any type a new type may be defined by derivation. A type, together with its derivatives (both direct and indirect) form a derivation class. Class-wide operations may be defined that accept as a parameter an operand of any type in a derivation class. For record and private types, the derivatives may be extensions of the parent type. Types that support these object-oriented capabilities of class-wide operations and type extension must be tagged, so that the specific type of an operand within a derivation class can be identified at run time. When an operation of a tagged type is applied to an operand whose specific type is not known until run time, implicit dispatching is performed based on the tag of the operand.Interface types provide abstract models from which other interfaces and types may be composed and derived. This provides a reliable form of multiple inheritance. Interface types may also be implemented by task types and protected types thereby enabling concurrent programming and inheritance to be merged.The concept of a type is further refined by the concept of a subtype, whereby a user can constrain the set of allowed values of a type. Subtypes can be used to define subranges of scalar types, arrays with a limited set of index values, and records and private types with particular discriminant values.Other FacilitiesAspect clauses can be used to specify the mapping between types and features of an underlying machine. For example, the user can specify that objects of a given type must be represented with a given number of bits, or that the components of a record are to be represented using a given storage layout. Other features allow the controlled use of low level, nonportable, or implementation-dependent aspects, including the direct insertion of machine code.The predefined environment of the language provides for input-output and other capabilities by means of standard library packages. Input-output is supported for values of user-defined as well as of predefined types. Standard means of representing values in display form are also provided.The predefined standard library packages provide facilities such as string manipulation, containers of various kinds (vectors, lists, maps, etc.), mathematical functions, random number generation, and access to the execution environment.The specialized annexes define further predefined library packages and facilities with emphasis on areas such as real-time scheduling, interrupt handling, distributed systems, numerical computation, and high-integrity systems.Finally, the language provides a powerful means of parameterization of program units, called generic program units. The generic parameters can be types and subprograms (as well as objects and packages) and so allow general algorithms and data structures to be defined that are applicable to all types of a given class.Language ChangesThis International Standard replaces the second edition of 1995. It modifies the previous edition by making changes and additions that improve the capability of the language and the reliability of programs written in the language. This edition incorporates the changes from Amendment 1 (ISO/IEC 8652:1995:AMD 1:2007), which were designed to improve the portability of programs, interfacing to other languages, and both the object-oriented and real-time capabilities.Significant changes originating in Amendment 1 are incorporated:• Support for program text is extended to cover the entire ISO/IEC 10646:2003 repertoire. Execution support now includes the 32-bit character set. See subclauses 2.1, 3.5.2, 3.6.3, A.1, A.3, and A.4.• The object-oriented model has been improved by the addition of an interface facility which provides multiple inheritance and additional flexibility for type extensions. See subclauses 3.4, 3.9, and 7.3. An alternative notation for calling operations more akin to that used in other languages has also been added. See subclause 4.1.3.• Access types have been further extended to unify properties such as the ability to access constants and to exclude null values. See clause 3.10. Anonymous access types are now permitted more freely and anonymous access-to-subprogram types are introduced. See subclauses 3.3, 3.6, 3.10, and 8.5.1.• The control of structure and visibility has been enhanced to permit mutually dependent references between units and finer control over access from the private part of a package. See subclauses 3.10.1 and 10.1.2. In addition, limited types have been made more useful by the provision of aggregates, constants, and constructor functions. See subclauses 4.3, 6.5, and 7.5.• The predefined environment has been extended to include additional time and calendar operations, improved string handling, a comprehensive container library, file and directory management, and access to environment variables. See subclauses 9.6.1, A.4, A.16, A.17, and A.18.• Two of the Specialized Needs Annexes have been considerably enhanced:• The Real-Time Systems Annex now includes the Ravenscar profile for high-integrity systems, further dispatching policies such as Round Robin and Earliest Deadline First, support for timing events, and support for control of CPU time utilization. See subclauses D.2, D.13, D.14, and D.15.• The Numerics Annex now includes support for real and complex vectors and matrices as previously defined in ISO/IEC 13813:1997 plus further basic operations for linear algebra. See subclause G.3.• The overall reliability of the language has been enhanced by a number of improvements. These include new syntax which detects accidental overloading, as well as pragmas for making assertions and giving better control over the suppression of checks. See subclauses 6.1, 11.4.2, and 11.5.In addition, this third edition makes enhancements to address two important issues, namely, the particular problems of multiprocessor architectures, and the need to further increase the capabilities regarding assertions for correctness. It also makes additional changes and additions that improve the capability of the language and the reliability of programs written in the language.The following significant changes with respect to the 1995 edition as amended by Amendment 1 are incorporated:• New syntax (the aspect specification) is introduced to enable properties to be specified for various entities in a more structured manner than through pragmas. See subclause 13.1.1.• The concept of assertions introduced in the 2005 edition is extended with the ability to specify preconditions and postconditions for subprograms, and invariants for private types. The concept of constraints in defining subtypes is supplemented with subtype predicates that enable subsets to be specified other than as simple ranges. These properties are all indicated using aspect specifications. See subclauses 3.2.4, 6.1.1, and 7.3.2.• New forms of expressions are introduced. These are if expressions, case expressions, quantified expressions, and expression functions. As well as being useful for programming in general by avoiding the introduction of unnecessary assignments, they are especially valuable in conditions and invariants since they avoid the need to introduce auxiliary functions. See subclauses 4.5.7, 4.5.8, and 6.8. Membership tests are also made more flexible. See subclauses 4.4 and 4.5.2.• A number of changes are made to subprogram parameters. Functions may now have parameters of all modes. In order to mitigate consequent (and indeed existing) problems of inadvertent order dependence, rules are introduced to reduce aliasing. A parameter may now be explicitly marked as aliased and the type of a parameter may be incomplete in certain circumstances. See subclauses 3.10.1, 6.1, and 6.4.1.• The use of access types is now more flexible. The rules for accessibility and certain conversions are improved. See subclauses 3.10.2, 4.5.2, 4.6, and 8.6. Furthermore, better control of storage pools is provided. See subclause 13.11.4.• The Real-Time Systems Annex now includes facilities for defining domains of processors and assigning tasks to them. Improvements are made to scheduling and budgeting facilities. See subclauses D.10.1, D.14, and D.16.• A number of important improvements are made to the standard library. These include packages for conversions between strings and UTF encodings, and classification functions for wide and wide wide characters. Internationalization is catered for by a package giving locale information. See subclauses A.3, A.4.11, and A.19. The container library is extended to include bounded forms of the existing containers and new containers for indefinite objects, multiway trees, and queues. See subclause A.18.• Finally, certain features are added primarily to ease the use of containers, such as the ability to iterate over all elements in a container without having to encode the iteration. These can also be used for iteration over arrays, and within quantified expressions. See subclauses 4.1.5, 4.1.6, 5.5.1, and 5.5.2.Instructions for Comment SubmissionInformal comments on this International Standard may be sent via e-mail to ada-comment@adaauth.org. If appropriate, the Project Editor will initiate the defect correction procedure.Comments should use the following format: !topic Title summarizing comment !reference Ada 2012 RMss.ss(pp) !from Author Name yy-mm-dd !keywords keywords related to topic !discussion     text of discussionwhere ss.ss is the clause or subclause number, pp is the paragraph number where applicable, and yy-mm-dd is the date the comment was sent. The date is optional, as is the !keywords line.Please use a descriptive “Subject” in your e-mail message, and limit each message to a single comment.When correcting typographical errors or making minor wording suggestions, please put the correction directly as the topic of the comment; use square brackets [ ] to indicate text to be omitted and curly braces { } to indicate text to be added, and provide enough context to make the nature of the suggestion self-evident or put additional information in the body of the comment, for example: !topic [c]{C}haracter  -!topic it[']s meaning is not definedFormal requests for interpretations and for reporting defects in this International Standard may be made in accordance with the ISO/IEC JTC 1 Directives and the ISO/IEC JTC 1/SC 22 policy for interpretations. National Bodies may submit a Defect Report to ISO/IEC JTC 1/SC 22 for resolution under the JTC 1 procedures. A response will be provided and, if appropriate, a Technical Corrigendum will be issued in accordance with the procedures.",,ISO/IEC 8652:2012(en) -44,"DHS S&T EXD is interested in high-impact approaches which can be retrofitted into existing EDS baselines as well as innovations in EDS concept development. Recent technological developments which are expected to impact critical metrics such as probability of detection (Pd) and probability of false alarm (Pfa) include new improvised explosive threat signature technology, compressive measurement, coded apertures, new or innovative sources and detectors including advanced detection, and novel classification and reconstruction algorithms. The work outlined here focuses on information theoretic analysis of security data which implements high impact approaches, as well as applying the tools of optimal detection, estimation, pattern recognition, machine learning, and information theory.",Printing specifications for optical character recognition,https://www.iso.org/obp/ui/#!iso:std:6480:en,,"1   Scope and field of applicationThis International Standard contains the basic definitions, measurement requirements, specifications and recommendations for OCR paper and print.Three major parameters of a printed document for OCR media are covered. These are :- the optical properties of the paper to be used;- the optical and dimensional properties of the ink patterns forming OCR characters;- the basic requirements related to the position of OCR characters on the paper.The major factors of each of these areas pertinent to OCR are identified. Definitions of these items are given and bases for measurements are established.Basic specifications applicable to all OCR materials are imposed and recommendations for the implementation of an OCR system are made.",ISO 1831:1980(en) -45,"DHS S&T EXD is interested in high-impact approaches which can be retrofitted into existing EDS baselines as well as innovations in EDS concept development. Recent technological developments which are expected to impact critical metrics such as probability of detection (Pd) and probability of false alarm (Pfa) include new improvised explosive threat signature technology, compressive measurement, coded apertures, new or innovative sources and detectors including advanced detection, and novel classification and reconstruction algorithms. The work outlined here focuses on information theoretic analysis of security data which implements high impact approaches, as well as applying the tools of optimal detection, estimation, pattern recognition, machine learning, and information theory.",Information technology — Biometric data interchange formats — Part 8: Finger pattern skeletal data,https://www.iso.org/obp/ui/#!iso:std:40715:en,"IntroductionWith the interest of implementing interoperable personal biometric recognition systems, this part of ISO/IEC 19794 establishes a data interchange format for pattern-based skeletal fingerprint recognition algorithms. Pattern-based algorithms process sections of biometric images. Pattern-based algorithms have been shown to work well with the demanding, but commercially driven, fingerprint sensor formats such as small-area and swipe sensors.The exchange format defined in this part of ISO/IEC 19794 describes all characteristics of a fingerprint in a small data record. Thus it allows for the extraction of both spectral information (orientation, frequency, phase, etc.) and features (minutiae, core, ridge count, etc.). Transformations like translation and rotation can also be accommodated by the format defined herein.With this part of ISO/IEC 19794 for pattern-based skeletal representation of fingerprints— interoperability among fingerprint recognition vendors based on a small data record is allowed;— proliferation of low-cost commercial fingerprint sensors with limited coverage, dynamic range, or resolution is supported;— a data record that can be used to store biometric information on a variety a storage media (including but not limited to, portable devices and smart cards) is defined;— adoption of biometrics in applications requiring interoperability is encouraged.It is recommended that biometric data protection techniques in ANSI/X9 X9.84 or ISO/IEC 15408 are used to safeguard the biometric data defined herein for confidentiality, integrity and availability.","1   ScopeThis part of ISO/IEC 19794 specifies the interchange format for the exchange of pattern-based skeletal fingerprint recognition data. The data format is generic, in that it may be applied and used in a wide range of application areas where automated fingerprint recognition is involved.",ISO/IEC 19794-8:2006(en) -46,"DHS S&T EXD is interested in high-impact approaches which can be retrofitted into existing EDS baselines as well as innovations in EDS concept development. Recent technological developments which are expected to impact critical metrics such as probability of detection (Pd) and probability of false alarm (Pfa) include new improvised explosive threat signature technology, compressive measurement, coded apertures, new or innovative sources and detectors including advanced detection, and novel classification and reconstruction algorithms. The work outlined here focuses on information theoretic analysis of security data which implements high impact approaches, as well as applying the tools of optimal detection, estimation, pattern recognition, machine learning, and information theory.",Information technology — Automatic identification and data capture techniques — Code 39 bar code symbology specification,https://www.iso.org/obp/ui/#!iso:std:43897:en,"IntroductionThe technology of bar coding is based on the recognition of patterns encoded in bars and spaces of defined dimensions. There are numerous methods of encoding information in bar code form, known as symbologies. Code 39 is one such symbology. The rules defining the translation of characters into bar and space patterns and other essential features are known as the symbology specification.In the past, symbology specifications were developed and published by a number of organizations, resulting in certain instances in conflicting requirements for certain symbologies.Manufacturers of bar code equipment and users of bar code technology require publicly available standard symbology specifications to which they can refer when developing equipment and application standards.","1   ScopeThis International Standard specifies the requirements for the bar code symbology known as Code 39; it specifies Code 39 symbology characteristics, data character encodation, dimensions, tolerances, decoding algorithms and parameters to be defined by applications. It specifies the Symbology Identifier prefix strings for Code 39 symbols.",ISO/IEC 16388:2007(en) -47,"DHS S&T EXD is interested in high-impact approaches which can be retrofitted into existing EDS baselines as well as innovations in EDS concept development. Recent technological developments which are expected to impact critical metrics such as probability of detection (Pd) and probability of false alarm (Pfa) include new improvised explosive threat signature technology, compressive measurement, coded apertures, new or innovative sources and detectors including advanced detection, and novel classification and reconstruction algorithms. The work outlined here focuses on information theoretic analysis of security data which implements high impact approaches, as well as applying the tools of optimal detection, estimation, pattern recognition, machine learning, and information theory.",Ergonomics of human-system interaction — Part 210: Human-centred design for interactive systems,https://www.iso.org/obp/ui/#!iso:std:52075:en,"IntroductionHuman-centred design is an approach to interactive systems development that aims to make systems usable and useful by focusing on the users, their needs and requirements, and by applying human factors/ergonomics, and usability knowledge and techniques. This approach enhances effectiveness and efficiency, improves human well-being, user satisfaction, accessibility and sustainability; and counteracts possible adverse effects of use on human health, safety and performance.There is a substantial body of human factors/ergonomics and usability knowledge about how human-centred design can be organized and used effectively. This part of ISO 9241 aims to make this information available to help those responsible for managing hardware and software design and re-design processes to identify and plan effective and timely human-centred design activities.The human-centred approach to design described in this part of ISO 9241 complements existing systems design approaches. It can be incorporated in approaches as diverse as object-oriented, waterfall and rapid application development.The principles of human-centred design and the related activities have not changed substantially since ISO 13407 was produced and have been validated by ten years of application. This part of ISO 9241 reflects this by making requirements as well as recommendations.","1   ScopeThis part of ISO 9241 provides requirements and recommendations for human-centred design principles and activities throughout the life cycle of computer-based interactive systems. It is intended to be used by those managing design processes, and is concerned with ways in which both hardware and software components of interactive systems can enhance human–system interaction.NOTE 1 Computer-based interactive systems vary in scale and complexity. Examples include off-the-shelf (shrink-wrap) software products, custom office systems, process control systems, automated banking systems, Web sites and applications, and consumer products such as vending machines, mobile phones and digital television. Throughout this part of ISO 9241, such systems are generally referred to as products, systems or services although, for simplicity, sometimes only one term is used.This part of ISO 9241 provides an overview of human-centred design activities. It does not provide detailed coverage of the methods and techniques required for human-centred design, nor does it address health or safety aspects in detail. Although it addresses the planning and management of human-centred design, it does not address all aspects of project management.The information in this part of ISO 9241 is intended for use by those responsible for planning and managing projects that design and develop interactive systems. It therefore addresses technical human factors and ergonomics issues only to the extent necessary to allow such individuals to understand their relevance and importance in the design process as a whole. It also provides a framework for human factors and usability professionals involved in human-centred design. Detailed human factors/ergonomics, usability and accessibility issues are dealt with more fully in a number of standards including other parts of ISO 9241 (see Annex A) and ISO 6385, which sets out the broad principles of ergonomics.The requirements and recommendations in this part of ISO 9241 can benefit all parties involved in human-centred design and development. Annex B provides a checklist that can be used to support claims of conformance with this part of ISO 9241.NOTE 2 Annex A and the Bibliography contain information about relevant related standards.",ISO 9241-210:2010(en) -48,"Preliminary Design Summary _ The contractor shall proceed with the development of a preliminary design based on the outcome of the System Concept Review. The contractor shall begin to refine the system specifications down to the software module level. All software modules shall be described functionally with clearly defined inputs and outputs. The contractor shall complete a preliminary design and hold a Preliminary Design Review (PDR) within six (6) months of the contract award date. Subtask 2.1 _ System Concept Review (SCR) _ At the beginning of the contract the contractor shall have a requirements review with the DHS COR to establish the set of weapons to focus on for the algorithm development and to establish detection and false alarm goals. The contractor shall provide the prototype algorithm results at the time of the SCR review so that the decision of weapon priorities can factor in how difficult each weapon is to detect. The contractor shall coordinate with DHS to schedule a SCR meeting. The contractor shall prepare and submit to the DHS COR the proposed agenda and preliminary algorithm results ten (10) business days prior to the meeting and an update at the meeting. The contractor shall prepare and submit the minutes of the meeting to the DHS S&T COR within five (5) business days after the meeting. Subtask 2.2 _ Data Collection Subtask 2.2.1 _ Obtain Items _ Based on the discussion with DHS from the system concept review subtask, a list of prohibited items to be used for data collection will be defined. The items will be purchased by the contractor for scanning at Transportation Security Laboratory (TSL) in Atlantic City, NJ or an alternate site. Subtask 2.2.2 _ Data Collection Plan _ Based on the discussion with DHS from the system concept review subtasks, the contractor shall prepare a data collection plan. This plan shall include key image features that are to be collected as well as the methodology for scanning each prohibited item. This includes planned concealment strategies and bag configurations. The contractor shall also prepare an outline for the data collection report describing data to be provided after the data collection subtasks (subtasks 2.2.3, 2.2.4, 2.2.5) have been completed. Subtask 2.2.3 _ Collect Data _ The contractor will conduct the data collection at the contractor site and offsite as necessary per the data collection plan. Offsite collection is assumed at the TSL. The offsite data collection is planned for one week. The contractor shall ship any necessary equipment, install it for one week of use, and de-install and return the equipment to the contractors facilities at the conclusion of data collection. Subtask 2.2.4 _ Data Truthing _ The contractor shall review the collected data to identify and mark the threat items. Subtask 2.2.5 _ Prepare and Transmit Data Collection Report _ The Contractor shall document the items scanned and the bag, concealment, and content information. This report shall be delivered electronically to the DHS COR. Subtask 2.3 _ Image Analysis and Feature Identification _ The images collected will be scored using the current algorithm. The images where the threat is not detected will be examined to identify their unique features and to determine the potential strategies for detection. Subtask 2.4 _ PDR _ The contractor shall hold a Preliminary Design Review (PDR), within six (6) months of contract award. PDR materials shall be delivered ten (10) business days prior to PDR to the DHS S&T COR along with specifications and drawings. Approval of the PDR deliverables by the DHS S&T COR will be required prior to PDR. As part of the PDR deliverables, the contractor shall propose a system prototype baseline to include: ",Information technology — Security techniques — Cryptographic algorithms and security mechanisms conformance testing,https://www.iso.org/obp/ui/#!iso:std:62286:en,"IntroductionThis document describes cryptographic algorithms and security mechanisms conformance testing methods.The purpose of this document is to address conformance testing methods of cryptographic algorithms and security mechanisms implemented in a cryptographic module. This will allow a complete security evaluation of both the cryptographic module and the implemented cryptographic algorithms and security mechanisms.This document is related to ISO/IEC 19790 and ISO/IEC 24759. ISO/IEC 19790 specifies the security requirements for cryptographic modules. At a minimum, a cryptographic module implements at least one approved security function (i.e., cryptographic algorithm or security mechanism). ISO/IEC 24759 addresses the test requirements for each of the security requirements in ISO/IEC 19790. However, ISO/IEC 24759 does not address test methods for cryptographic algorithms and security mechanisms conformance testing.","1   ScopeThis document gives guidelines for cryptographic algorithms and security mechanisms conformance testing methods.Conformance testing assures that an implementation of a cryptographic algorithm or security mechanism is correct whether implemented in hardware, software or firmware. It also confirms that it runs correctly in a specific operating environment. Testing can consist of known-answer or Monte Carlo testing, or a combination of test methods. Testing can be performed on the actual implementation or modelled in a simulation environment.This document does not include the efficiency of the algorithms or security mechanisms nor the intrinsic performance. This document focuses on the correctness of the implementation.",ISO/IEC 18367:2016(en) -49,"Preliminary Design Summary _ The contractor shall proceed with the development of a preliminary design based on the outcome of the System Concept Review. The contractor shall begin to refine the system specifications down to the software module level. All software modules shall be described functionally with clearly defined inputs and outputs. The contractor shall complete a preliminary design and hold a Preliminary Design Review (PDR) within six (6) months of the contract award date. Subtask 2.1 _ System Concept Review (SCR) _ At the beginning of the contract the contractor shall have a requirements review with the DHS COR to establish the set of weapons to focus on for the algorithm development and to establish detection and false alarm goals. The contractor shall provide the prototype algorithm results at the time of the SCR review so that the decision of weapon priorities can factor in how difficult each weapon is to detect. The contractor shall coordinate with DHS to schedule a SCR meeting. The contractor shall prepare and submit to the DHS COR the proposed agenda and preliminary algorithm results ten (10) business days prior to the meeting and an update at the meeting. The contractor shall prepare and submit the minutes of the meeting to the DHS S&T COR within five (5) business days after the meeting. Subtask 2.2 _ Data Collection Subtask 2.2.1 _ Obtain Items _ Based on the discussion with DHS from the system concept review subtask, a list of prohibited items to be used for data collection will be defined. The items will be purchased by the contractor for scanning at Transportation Security Laboratory (TSL) in Atlantic City, NJ or an alternate site. Subtask 2.2.2 _ Data Collection Plan _ Based on the discussion with DHS from the system concept review subtasks, the contractor shall prepare a data collection plan. This plan shall include key image features that are to be collected as well as the methodology for scanning each prohibited item. This includes planned concealment strategies and bag configurations. The contractor shall also prepare an outline for the data collection report describing data to be provided after the data collection subtasks (subtasks 2.2.3, 2.2.4, 2.2.5) have been completed. Subtask 2.2.3 _ Collect Data _ The contractor will conduct the data collection at the contractor site and offsite as necessary per the data collection plan. Offsite collection is assumed at the TSL. The offsite data collection is planned for one week. The contractor shall ship any necessary equipment, install it for one week of use, and de-install and return the equipment to the contractors facilities at the conclusion of data collection. Subtask 2.2.4 _ Data Truthing _ The contractor shall review the collected data to identify and mark the threat items. Subtask 2.2.5 _ Prepare and Transmit Data Collection Report _ The Contractor shall document the items scanned and the bag, concealment, and content information. This report shall be delivered electronically to the DHS COR. Subtask 2.3 _ Image Analysis and Feature Identification _ The images collected will be scored using the current algorithm. The images where the threat is not detected will be examined to identify their unique features and to determine the potential strategies for detection. Subtask 2.4 _ PDR _ The contractor shall hold a Preliminary Design Review (PDR), within six (6) months of contract award. PDR materials shall be delivered ten (10) business days prior to PDR to the DHS S&T COR along with specifications and drawings. Approval of the PDR deliverables by the DHS S&T COR will be required prior to PDR. As part of the PDR deliverables, the contractor shall propose a system prototype baseline to include: ",Banking and related financial services — Triple DEA — Modes of operation — Implementation guidelines,https://www.iso.org/obp/ui/#!iso:std:33733:en,"IntroductionIn order to significantly strengthen DEA (Data Encryption Algorithm) and extend its useful lifetime, the use of Triple Data Encryption Algorithm (TDEA) modes of operation has been recommended. These TDEA modes of operation not only provide greatly increased cryptographic protection, but because they are based on DEA, the TDEA learning curve for users and vendors is reduced. Since certain TDEA modes of operation can be made backward compatible with existing DEA modes of operation, the financial community may leverage its investment in standard DEA technology by using TDEA to extend its secure lifetime.Each mode of operation provides different benefits and has different characteristics. The selection, implementation and use of a particular mode of operation is dependent upon the security requirements, risk acceptance posture, and operational needs of the financial institution and are beyond the scope of this Technical Report. This Technical Report is necessary to provide the basis for interoperability between different parties using any of the TDEA modes specified herein, provided that they use the same mode of operation and share the same secret cryptographic key(s).This Technical Report does not replace the Data Encryption Algorithm Standard nor the Triple Data Encryption Algorithm specified in ISO/IEC 18033. DEA is the basis for the TDEA modes of operation. TDEA provides increased security in keeping with advances in computing technology and cryptanalytic techniques. TDEA may be implemented in hardware, software or a combination of hardware and software.This Technical Report provides implementation guidelines for the modes of operation specified in ISO/IEC 10116.It is the responsibility of the financial institution to put overall security procedures in place with the necessary controls to ensure that the process is implemented in a secure manner. Furthermore, the process should be audited to ensure compliance with the procedures.",1   ScopeThis Technical Report provides the user with technical support and details for the safe and efficient implementation of the Triple Data Encryption Algorithm (TDEA) modes of operation for the enhanced cryptographic protection of digital data. The modes of operation described herein are specified for both enciphering and deciphering operations. The modes described in this Technical Report are implementations of the block cipher modes of operation specified in ISO/IEC 10116 using the Triple DEA algorithm (TDEA) specified in ISO/IEC 18033-3.The TDEA modes of operation may be used in both wholesale and retail financial applications. The use of this Technical Report provides the basis for the interoperability of products and facilitates the development of application standards that use the TDEA modes of operation. This Technical Report is intended for use with other ISO standards using DEA.,ISO/TR 19038:2005(en) -50,"Preliminary Design Summary _ The contractor shall proceed with the development of a preliminary design based on the outcome of the System Concept Review. The contractor shall begin to refine the system specifications down to the software module level. All software modules shall be described functionally with clearly defined inputs and outputs. The contractor shall complete a preliminary design and hold a Preliminary Design Review (PDR) within six (6) months of the contract award date. Subtask 2.1 _ System Concept Review (SCR) _ At the beginning of the contract the contractor shall have a requirements review with the DHS COR to establish the set of weapons to focus on for the algorithm development and to establish detection and false alarm goals. The contractor shall provide the prototype algorithm results at the time of the SCR review so that the decision of weapon priorities can factor in how difficult each weapon is to detect. The contractor shall coordinate with DHS to schedule a SCR meeting. The contractor shall prepare and submit to the DHS COR the proposed agenda and preliminary algorithm results ten (10) business days prior to the meeting and an update at the meeting. The contractor shall prepare and submit the minutes of the meeting to the DHS S&T COR within five (5) business days after the meeting. Subtask 2.2 _ Data Collection Subtask 2.2.1 _ Obtain Items _ Based on the discussion with DHS from the system concept review subtask, a list of prohibited items to be used for data collection will be defined. The items will be purchased by the contractor for scanning at Transportation Security Laboratory (TSL) in Atlantic City, NJ or an alternate site. Subtask 2.2.2 _ Data Collection Plan _ Based on the discussion with DHS from the system concept review subtasks, the contractor shall prepare a data collection plan. This plan shall include key image features that are to be collected as well as the methodology for scanning each prohibited item. This includes planned concealment strategies and bag configurations. The contractor shall also prepare an outline for the data collection report describing data to be provided after the data collection subtasks (subtasks 2.2.3, 2.2.4, 2.2.5) have been completed. Subtask 2.2.3 _ Collect Data _ The contractor will conduct the data collection at the contractor site and offsite as necessary per the data collection plan. Offsite collection is assumed at the TSL. The offsite data collection is planned for one week. The contractor shall ship any necessary equipment, install it for one week of use, and de-install and return the equipment to the contractors facilities at the conclusion of data collection. Subtask 2.2.4 _ Data Truthing _ The contractor shall review the collected data to identify and mark the threat items. Subtask 2.2.5 _ Prepare and Transmit Data Collection Report _ The Contractor shall document the items scanned and the bag, concealment, and content information. This report shall be delivered electronically to the DHS COR. Subtask 2.3 _ Image Analysis and Feature Identification _ The images collected will be scored using the current algorithm. The images where the threat is not detected will be examined to identify their unique features and to determine the potential strategies for detection. Subtask 2.4 _ PDR _ The contractor shall hold a Preliminary Design Review (PDR), within six (6) months of contract award. PDR materials shall be delivered ten (10) business days prior to PDR to the DHS S&T COR along with specifications and drawings. Approval of the PDR deliverables by the DHS S&T COR will be required prior to PDR. As part of the PDR deliverables, the contractor shall propose a system prototype baseline to include: ",Information technology — Biometric performance testing and reporting — Part 2: Testing methodologies for technology and scenario evaluation,https://www.iso.org/obp/ui/#!iso:std:41448:en,"IntroductionThis part of ISO/IEC 19795 addresses two specific biometric performance testing methodologies: technology and scenario evaluation. The large majority of biometric tests are of one of these two generic evaluation types. Technology evaluations evaluate enrolment and comparison algorithms by means of previously collected corpuses, while scenario evaluations evaluate sensors and algorithms by processing of samples collected from Test Subjects in real time. The former is intended for generation of large volumes of comparison scores and candidate lists indicative of the fundamental discriminating power of an algorithm. The latter is intended for measurement of performance in modeled environments, inclusive of Test Subject-system interactions.This part of ISO/IEC 19795 builds on requirements and best practices specified in ISO/IEC 19795-1, which addresses specific philosophies and principles that can be applied over a broad range of test conditions.This part of ISO/IEC 19795 is meant to provide biometric system developers, deployers and end users with mechanisms for design, execution and reporting of biometric performance tests in a fashion that allows meaningful benchmarking of biometric performance within and across technologies, usage scenarios and environments.","1   ScopeThis part of ISO/IEC 19795 provides requirements and recommendations on data collection, analysis and reporting specific to two primary types of evaluation: technology evaluation and scenario evaluation.This part of ISO/IEC 19795 specifies requirements in the following areas:— development and full description of protocols for technology and scenario evaluations;— execution and reporting of biometric evaluations reflective of the parameters associated with biometric evaluation types.",ISO/IEC 19795-2:2007(en) -51,"Preliminary Design Summary _ The contractor shall proceed with the development of a preliminary design based on the outcome of the System Concept Review. The contractor shall begin to refine the system specifications down to the software module level. All software modules shall be described functionally with clearly defined inputs and outputs. The contractor shall complete a preliminary design and hold a Preliminary Design Review (PDR) within six (6) months of the contract award date. Subtask 2.1 _ System Concept Review (SCR) _ At the beginning of the contract the contractor shall have a requirements review with the DHS COR to establish the set of weapons to focus on for the algorithm development and to establish detection and false alarm goals. The contractor shall provide the prototype algorithm results at the time of the SCR review so that the decision of weapon priorities can factor in how difficult each weapon is to detect. The contractor shall coordinate with DHS to schedule a SCR meeting. The contractor shall prepare and submit to the DHS COR the proposed agenda and preliminary algorithm results ten (10) business days prior to the meeting and an update at the meeting. The contractor shall prepare and submit the minutes of the meeting to the DHS S&T COR within five (5) business days after the meeting. Subtask 2.2 _ Data Collection Subtask 2.2.1 _ Obtain Items _ Based on the discussion with DHS from the system concept review subtask, a list of prohibited items to be used for data collection will be defined. The items will be purchased by the contractor for scanning at Transportation Security Laboratory (TSL) in Atlantic City, NJ or an alternate site. Subtask 2.2.2 _ Data Collection Plan _ Based on the discussion with DHS from the system concept review subtasks, the contractor shall prepare a data collection plan. This plan shall include key image features that are to be collected as well as the methodology for scanning each prohibited item. This includes planned concealment strategies and bag configurations. The contractor shall also prepare an outline for the data collection report describing data to be provided after the data collection subtasks (subtasks 2.2.3, 2.2.4, 2.2.5) have been completed. Subtask 2.2.3 _ Collect Data _ The contractor will conduct the data collection at the contractor site and offsite as necessary per the data collection plan. Offsite collection is assumed at the TSL. The offsite data collection is planned for one week. The contractor shall ship any necessary equipment, install it for one week of use, and de-install and return the equipment to the contractors facilities at the conclusion of data collection. Subtask 2.2.4 _ Data Truthing _ The contractor shall review the collected data to identify and mark the threat items. Subtask 2.2.5 _ Prepare and Transmit Data Collection Report _ The Contractor shall document the items scanned and the bag, concealment, and content information. This report shall be delivered electronically to the DHS COR. Subtask 2.3 _ Image Analysis and Feature Identification _ The images collected will be scored using the current algorithm. The images where the threat is not detected will be examined to identify their unique features and to determine the potential strategies for detection. Subtask 2.4 _ PDR _ The contractor shall hold a Preliminary Design Review (PDR), within six (6) months of contract award. PDR materials shall be delivered ten (10) business days prior to PDR to the DHS S&T COR along with specifications and drawings. Approval of the PDR deliverables by the DHS S&T COR will be required prior to PDR. As part of the PDR deliverables, the contractor shall propose a system prototype baseline to include: ",Systems and software engineering — Information technology project performance benchmarking framework — Part 4: Guidance for data collection and maintenance,https://www.iso.org/obp/ui/#!iso:std:63700:en,"IntroductionBenchmarking is an activity of comparing “objects of interest” to each other or against a benchmark to evaluate characteristic(s). In the context of the ISO/IEC 29155 series, the “object of interest” is the performance of information technology (IT) project, and the characteristic is a particular aspect of an IT project such as productivity.Benchmarking is one of the fastest-growing techniques in the area of IT project management. Instances of IT project performance benchmarking are initiated and conducted for various reasons. Among the most common reasons are the following:a) the need to compare project productivity between similar industries;b) the need to compare productivity between different project types and technologies;c) the need to find the most effective targets for IT development process improvement;d) the need to compare productivity between different suppliers;e) the need to improve project management maturity;f) the need to improve project estimation capability.Much has been written regarding the trials of establishing IT project performance benchmarking, and statistics bear witness to the high failure rate of measurement and benchmarking programs. The most probable causes for failure have been disappointment in the benchmarking outcomes due to a lack of alignment between the selected measurements and business goals, and the misunderstanding of project level measurements in relation to program and portfolio management levels. When there is no alignment between executed measurements and provided outcomes, unnecessary effort is required from the IT project teams collecting the project data. The result is decreased motivation to continue and institutionalize benchmarking.As is shown in Figure 1, the ISO/IEC 29155 series consists of multiple parts.— ISO/IEC 29155-1 provides the overall framework model for IT project performance benchmarking. It consists of activities and components that are necessary to successfully identify, define, select, apply, and improve benchmarking.— ISO/IEC 29155-2 prescribes the required tasks in individual benchmarking activities that are necessary to execute various activities to conduct and/or support successful benchmarking in an organization.— ISO/IEC 29155-3 prescribes the guidance for reporting processes and contents of typical reports.— ISO/IEC 29155-4 provides guidance for the activities to collect data of IT projects to be entered into and maintained in a benchmarking repository.Further parts might follow.Figure 1 -— -IT project performance benchmarking standards overview","1   ScopeThis document provides general requirements and guidance for collecting and maintaining data of information technology (IT) projects and for delivering the benchmarking repository within benchmarking activities of “the IT project performance benchmarking framework” by prescribing the following:a) requirements and guidance for data element definitions;b) requirements and guidance for the data collection and maintenance processes within the benchmarking framework;c) requirements and guidance for maintaining benchmarking repository product and issued benchmarks.This document mainly focuses on three major activities, which are “maintain repository”, “submit IT project data”, and “measure IT project” activities.This document is intended for use by stakeholder(s) of IT project performance benchmarking (e.g. benchmarking user, benchmark provider, benchmarking service provider, and IT project team).NOTE The following are examples of how this document can be used:— by a benchmark provider, to define data elements, collect and maintain IT project data, and provide benchmarking repository product or issued benchmarks;— by a benchmarking analyst, to use benchmarking repository product and/or benchmarks for executing an instance of benchmarking;— by a benchmarking service provider, to utilize benchmarking repository product and/or benchmarks for providing benchmarking services;— by an IT service provider, to define data elements to be measured and/or to be submitted to repository owner.It is out of the scope of this document to prescribe a particular set of data element definitions, formats or contents of the benchmarking repository.",ISO/IEC 29155-4:2016(en) -52,"Preliminary Design Summary _ The contractor shall proceed with the development of a preliminary design based on the outcome of the System Concept Review. The contractor shall begin to refine the system specifications down to the software module level. All software modules shall be described functionally with clearly defined inputs and outputs. The contractor shall complete a preliminary design and hold a Preliminary Design Review (PDR) within six (6) months of the contract award date. Subtask 2.1 _ System Concept Review (SCR) _ At the beginning of the contract the contractor shall have a requirements review with the DHS COR to establish the set of weapons to focus on for the algorithm development and to establish detection and false alarm goals. The contractor shall provide the prototype algorithm results at the time of the SCR review so that the decision of weapon priorities can factor in how difficult each weapon is to detect. The contractor shall coordinate with DHS to schedule a SCR meeting. The contractor shall prepare and submit to the DHS COR the proposed agenda and preliminary algorithm results ten (10) business days prior to the meeting and an update at the meeting. The contractor shall prepare and submit the minutes of the meeting to the DHS S&T COR within five (5) business days after the meeting. Subtask 2.2 _ Data Collection Subtask 2.2.1 _ Obtain Items _ Based on the discussion with DHS from the system concept review subtask, a list of prohibited items to be used for data collection will be defined. The items will be purchased by the contractor for scanning at Transportation Security Laboratory (TSL) in Atlantic City, NJ or an alternate site. Subtask 2.2.2 _ Data Collection Plan _ Based on the discussion with DHS from the system concept review subtasks, the contractor shall prepare a data collection plan. This plan shall include key image features that are to be collected as well as the methodology for scanning each prohibited item. This includes planned concealment strategies and bag configurations. The contractor shall also prepare an outline for the data collection report describing data to be provided after the data collection subtasks (subtasks 2.2.3, 2.2.4, 2.2.5) have been completed. Subtask 2.2.3 _ Collect Data _ The contractor will conduct the data collection at the contractor site and offsite as necessary per the data collection plan. Offsite collection is assumed at the TSL. The offsite data collection is planned for one week. The contractor shall ship any necessary equipment, install it for one week of use, and de-install and return the equipment to the contractors facilities at the conclusion of data collection. Subtask 2.2.4 _ Data Truthing _ The contractor shall review the collected data to identify and mark the threat items. Subtask 2.2.5 _ Prepare and Transmit Data Collection Report _ The Contractor shall document the items scanned and the bag, concealment, and content information. This report shall be delivered electronically to the DHS COR. Subtask 2.3 _ Image Analysis and Feature Identification _ The images collected will be scored using the current algorithm. The images where the threat is not detected will be examined to identify their unique features and to determine the potential strategies for detection. Subtask 2.4 _ PDR _ The contractor shall hold a Preliminary Design Review (PDR), within six (6) months of contract award. PDR materials shall be delivered ten (10) business days prior to PDR to the DHS S&T COR along with specifications and drawings. Approval of the PDR deliverables by the DHS S&T COR will be required prior to PDR. As part of the PDR deliverables, the contractor shall propose a system prototype baseline to include: ",Software engineering — Software product Quality Requirements and Evaluation (SQuaRE) — Common Industry Format (CIF) for usability test reports,https://www.iso.org/obp/ui/#!iso:std:43046:en,"IntroductionUsability of software is a key factor in predicting successful deployment of that soft­ware. Software manufacturers subject software to usability testing at various stages in a product’s development; some companies that purchase software also test prod­ucts for usability before making purchasing decisions. Testing often involves (1) sub­jects who are representative of the target population of users of the software, (2) representative tasks, and (3) measures of efficiency, effectiveness and subjective satisfaction. When this type of experimental situation exists, the testing is termed summative, i.e., the results can be expressed as statistically meaningful measures of central tendency (e.g. mean or median) and variability (e.g. standard deviation). The Common Industry Format (CIF) for Usability Test Reports is intended for use by usability professionals to report the results of summative usability testing.The CIF standardizes the types of information that are captured about testing with users. The level of detail allows the same or another organization to replicate the test procedure. The major variables are user demographics, task descriptions, context of the test, including the equipment used, the environment in which the test is conduct­ed, and the protocol by which the subjects and the test administrator(s) interact, as well as the particular metrics chosen to code the findings of the study.The CIF is intended to replace the proprietary formats employed by companies that perform usability testing, both vendors and purchasers of software. Until now there has been no standard format for reporting usability testing results. Advantages of us­ing a standardized reporting format include (1) a reduction in training time for usabili­ty staff since an individual only needs to learn to use one form regardless of how many companies he works for and (2) enhanced potential for increased communi­cation between vendors and purchasing organizations since readers of CIF-compli­ant reports will share a common language and expectations.The purpose of this International Standard is to facilitate incorporation of usability as part of the procurement decision-making process for interactive software products so that it is easier to judge whether a product meets usability goals. Exam­ples of decisions include purchasing, upgrading and automating. It provides a com­mon format for human factors engineers and usability professionals in supplier companies to report the methods and results of usability tests to customer organiza­tions.AudienceThe Common Industry Format (CIF) is meant to be used by usability professionals within supplier organizations to generate reports that can be used by customer orga­nizations in the CIF report. The CIF is also meant to be used by customer organiza­tions to verify that a particular report is CIF-compliant. The Usability Test Report itself is intended for two types of readers:— Usability professionals in customer organizations who are evaluating both the technical merit of usability tests and the usability of the products; and— Other technical professionals and managers who are using the test results to make business decisions.The CIF may also be used within a single organization if a formal report of a summative usability test needs to be generated. In this case additional material such as a list of detailed findings may be included.The report is in two main sections, an Executive Summary and a main body. The main body contains the Methods and Results sections and is aimed at the first audi­ence above. These sections (1) describe the test methodology and results in sufficient tech­nical detail to allow replication by another organization if the test is repeated, and (2) support application of test data to questions about the product’s expected costs and benefits. Understanding and interpreting these sections will require technical back­ground in human factors or usability engineering for optimal use. The second audi­ence is directed to the Introduction, which provides summary information for non-usability professionals and managers. The Introduction may also be of general inter­est to other computing professionals. Decision makers without usability engineering expertise may find the information in the main body to be useful but should rely on expert interpretation when necessary.OrganizationClause 1 describes the scope of this specification and the conformance criteria. Clause 4 provides definitions of the terms used throughout the document. Clause 5 is the main description of the specification.Additional InformationAnnex A provides a checklist that can be used to ensure inclusion of required and recommended information. A glossary is provided in Annex B to define terminology used in the report format description. A Word template for report production can be found at: http://www.ncits.org/ref-docs/CIF/CIF_template.dot. A printed version of the template can be found in Annex C. An example is provided in Annex D illustrating how the format is used followed by an informative bibliography.","1   ScopeThis International Standard is intended to be used to report the measures obtained from a test of usability as defined in ISO 9241-11: effectiveness, efficiency and satisfaction in a specified context of use.NOTE Metrics for other more-detailed usability requirements can be found in ISO/IEC 9126 parts 2 and 3.This International Standard is intended to be used by:— usability professionals within supplier organizations to generate reports that can be used by customer organizations;— customer organizations to verify that a particular report conforms to this International Standard;— human factors or other usability professionals in customer organizations who are evaluating both the technical merit of usability tests and the usability of the products; and— other technical professionals and managers in the customer organization who are using the test results to make business decisions about product suitability and purchase.The Executive Summary and Introduction in 5.2 and 5.3 provide summary information for nonusability professionals and managers.Subclauses 5.4 and 5.5 describe the test methodology and results in technical detail suitable for replication, and also support application of test data to questions about the product’s expected costs and benefits. Understanding and interpreting these sections will require technical background in human factors or usability engineering for optimal use.The report format assumes sound practice [1, 2] has been followed in the design and execution of the test. Test procedures which produce measures that summarize usability should be used, i.e. the test is summative in nature. Some usability evaluation methods, such as formative tests, are intended to identify problems rather than produce measures; the format is not structured to support the results of such testing methods.",ISO/IEC 25062:2006(en) -53,"Preliminary Design Summary _ The contractor shall proceed with the development of a preliminary design based on the outcome of the System Concept Review. The contractor shall begin to refine the system specifications down to the software module level. All software modules shall be described functionally with clearly defined inputs and outputs. The contractor shall complete a preliminary design and hold a Preliminary Design Review (PDR) within six (6) months of the contract award date. Subtask 2.1 _ System Concept Review (SCR) _ At the beginning of the contract the contractor shall have a requirements review with the DHS COR to establish the set of weapons to focus on for the algorithm development and to establish detection and false alarm goals. The contractor shall provide the prototype algorithm results at the time of the SCR review so that the decision of weapon priorities can factor in how difficult each weapon is to detect. The contractor shall coordinate with DHS to schedule a SCR meeting. The contractor shall prepare and submit to the DHS COR the proposed agenda and preliminary algorithm results ten (10) business days prior to the meeting and an update at the meeting. The contractor shall prepare and submit the minutes of the meeting to the DHS S&T COR within five (5) business days after the meeting. Subtask 2.2 _ Data Collection Subtask 2.2.1 _ Obtain Items _ Based on the discussion with DHS from the system concept review subtask, a list of prohibited items to be used for data collection will be defined. The items will be purchased by the contractor for scanning at Transportation Security Laboratory (TSL) in Atlantic City, NJ or an alternate site. Subtask 2.2.2 _ Data Collection Plan _ Based on the discussion with DHS from the system concept review subtasks, the contractor shall prepare a data collection plan. This plan shall include key image features that are to be collected as well as the methodology for scanning each prohibited item. This includes planned concealment strategies and bag configurations. The contractor shall also prepare an outline for the data collection report describing data to be provided after the data collection subtasks (subtasks 2.2.3, 2.2.4, 2.2.5) have been completed. Subtask 2.2.3 _ Collect Data _ The contractor will conduct the data collection at the contractor site and offsite as necessary per the data collection plan. Offsite collection is assumed at the TSL. The offsite data collection is planned for one week. The contractor shall ship any necessary equipment, install it for one week of use, and de-install and return the equipment to the contractors facilities at the conclusion of data collection. Subtask 2.2.4 _ Data Truthing _ The contractor shall review the collected data to identify and mark the threat items. Subtask 2.2.5 _ Prepare and Transmit Data Collection Report _ The Contractor shall document the items scanned and the bag, concealment, and content information. This report shall be delivered electronically to the DHS COR. Subtask 2.3 _ Image Analysis and Feature Identification _ The images collected will be scored using the current algorithm. The images where the threat is not detected will be examined to identify their unique features and to determine the potential strategies for detection. Subtask 2.4 _ PDR _ The contractor shall hold a Preliminary Design Review (PDR), within six (6) months of contract award. PDR materials shall be delivered ten (10) business days prior to PDR to the DHS S&T COR along with specifications and drawings. Approval of the PDR deliverables by the DHS S&T COR will be required prior to PDR. As part of the PDR deliverables, the contractor shall propose a system prototype baseline to include: ",Systems and software engineering — Information technology project performance benchmarking framework — Part 1: Concepts and definitions,https://www.iso.org/obp/ui/#!iso:std:54993:en,"IntroductionThis part of ISO/IEC 29155 identifies a framework which consists of activities and components that are necessary to successfully identify, define, select, apply, and improve benchmarking for information technology (IT) project performance. It also provides definitions for IT project performance benchmarking terms.This part of ISO/IEC 29155 is intended to provide a framework about issues and considerations for data selection and comparison in information technology (IT) project performance benchmarking.The starting point for this part of ISO/IEC 29155 and the ISO/IEC 29155 series was the concept outlined by the draft ISBSG (International Software Benchmarking Standards Group) benchmarking standard. IT project performance benchmarking is a combination of several different advanced technologies and practices in the area of quantitative analysis and management. Thus the framework introduced in this part of ISO/IEC 29155 can be built on the basis of various standardized key technologies such as:— project management (e.g. PMBOK Guide and ISO 10006),— systems and software measurements (e.g. ISO/IEC 15939),— software life cycle processes (e.g. ISO/IEC 12207),— systems life cycle processes (e.g. ISO/IEC 15288),— functional size measurement (e.g. ISO/IEC 14143 series and related methods),— systems and software quality evaluations (e.g. ISO/IEC 25000 family and ISO/IEC 9126 series).This part of ISO/IEC 29155 is designed to conform to the concepts within ISO/IEC 12207 (software life cycle processes), ISO/IEC 15288 (systems life cycle processes), the ISO/IEC 14143 series (functional size measurement), the ISO/IEC 15504 series (process assessment), ISO/IEC TR 12182 (categorization of software), or ISO/IEC 14764 (maintenance of software life cycle processes).IT project performance benchmarking instances are initiated and conducted for various reasons. Among the most common reasons are:a) need to improve project management maturity,b) need to improve project estimation capability,c) need to compare productivity between different project types and technologies,d) need to compare project productivity between similar industries,e) need to find the most effective targets for IT development process improvement.Much has been written regarding the trials of establishing an IT project benchmarking framework, and statistics bear witness to the high failure rate of measurement programs. The most probable causes for failure have been disappointment in the benchmarking outcome due to a lack of alignment between the selected measurements and business goals, and the misunderstanding of project level measurements in relation to program and portfolio management levels.This part of ISO/IEC 29155 is developed as the first of multiple parts which will complete the IT project performance benchmarking framework as is shown in Figure 1. This part of ISO/IEC 29155 is the concept standard; it contains no mandatory requirements. The requirements for the benchmarking process will be specified subsequent to the standardization of the concepts and definitions. Then, the guidelines for the quality and quantity of different inputs and benchmarking outputs will be drafted, together with the domain-specific control needs.Figure 1 -— -IT project performance benchmarking framework overview","1   ScopeThis part of ISO/IEC 29155 identifies a framework for information technology (IT) project performance benchmarking (e.g. development or maintenance productivity) and related aspects (e.g. data collection and software classification).The framework consists of activities and components that are necessary to successfully identify, define, select, apply, and improve benchmarking for IT project performance. It also provides definitions for IT project performance benchmarking terms.The target audience of this part of ISO/IEC 29155 are stakeholders of IT project performance benchmarking.NOTE The following are examples of how this part of ISO/IEC 29155 can be used:— by a Benchmarking service provider who wants to align their benchmarking process to be consistent with this part of ISO/IEC 29155;— by a Benchmarking user (or third-party agents) for evaluating the performance of an IT project;— by an organization internally to answer specific information needs.This part of ISO/IEC 29155 does not prescribe how to organize benchmarking. It is out of the scope of this part of ISO/IEC 29155 to prescribe the name, format, or explicit content of the documentation to be produced from the benchmarking process.",ISO/IEC 29155-1:2011(en) -54,"Current airport screening protocols rely on identification cards such as drivers licenses to perform identity verification at TSA checkpoints. In the future, ensuring identity could be even more important if a substantial fraction of the flying public goes through an expedited screening protocol based on information (e.g., travel patterns) associated with passenger identity. In addition, more adaptive security protocols, in which checked or carry-on baggage screening protocols are closely linked to passenger risk, would require mechanisms for high-confidence association between passengers and their bags. In this task, AF-MIT/LL will conduct a study of existing and feasible near-term identity verification and correlation methods in order to assess advantages and projected vulnerabilities with respect to potential _screening at speed checkpoint protocols. Components that will be considered include credential authentication technologies, standoff biometrics, scan-able unique identifiers, and the underlying software architecture and databases required to manage identity-related information. AF-MIT/LL will perform limited implementation to support the analysis; for instance, evaluation of low-fidelity face matching to verify identity across multiple passenger visits to the same airport may require some testing with actual face images extracted from surveillance video at a range of resolutions. The output of this task will be a set of recommendations for the use of identity verification and correlation mechanisms, and an identification of near-term development efforts required to fill capability gaps. ",Information technology — Biometric data interchange formats — Part 5: Face image data,https://www.iso.org/obp/ui/#!iso:std:50867:en,"IntroductionFace images, also commonly referred to as displayed portraits, have been used for many decades to verify the identity of persons. In recent years, digital face images are used in many applications including human examination as well as computer automated face recognition. Although photographic formats have been standardized in some cases such as for passports and driver licenses, there is a need to define a standard data format of digital face images to allow interoperability among vendors.This part of ISO/IEC 19794 is intended to provide a face image format for face recognition applications requiring exchange of face image data. The typical applications are1) human examination of facial images with sufficient resolution to allow a human examiner to ascertain small features such as moles and scars that might be used to verify identity,2) human verification of identity by comparison of persons against facial images,3) computer automated face biometric identification (one-to-many searching), and4) computer automated face biometric verification (one-to-one comparison).To enable many applications on a variety of devices, including devices that have limited resources available for data storage, and to improve face recognition accuracy, this part of ISO/IEC 19794 specifies not only a data format, but also scene constraints (lighting, pose, expression, etc.), photographic properties (positioning, camera focus, etc.) and digital image attributes (image resolution, image size, etc.).Several face image types are introduced to define categories that satisfy requirements of some applications:• Basic: This is the fundamental Face Image Type that specifies a record format including header and representation data. All Face Image Types adhere to the properties of this type. No mandatory scene, photographic and digital requirements are specified for this image type.• Frontal: A Basic Face Image Type that adheres to additional requirements appropriate for frontal face recognition and/or human examination. Two types of Frontal Face Image Types are defined in this part of ISO/IEC 19794, Full Frontal and Token Frontal (or simply Token).• Full Frontal: A Face Image Type that specifies frontal images with sufficient resolution for human examination as well as reliable computer face recognition. This type of Face Image Type includes the full head with all hair in most cases, as well as neck and shoulders. This image type is suitable for permanent storage of the face information, and it is applicable to portraits for passport, driver license, and “mugshot” images.• Token Frontal: A Face Image Type that specifies frontal images with a specific geometric size and eye positioning based on the width and height of the image. This image type is suitable for minimizing the storage requirements for computer face recognition tasks such as verification while still offering vendor independence and human verification (versus human examination which requires more detail) capabilities.• Post-processed Frontal: Applying digital post-processing to a captured image can modify this image in a way that it is more suitable for automatic face recognition. The Post-processed Frontal Face Image Type is thought of as the interchange format for these kinds of facial images.• Basic 3D: The Basic 3D Image Type is the base Image Type of all 3D Face Image Types. All 3D Face Image Types obey normative requirements of this image type.• Full Frontal 3D: The Full Frontal 3D Image Type combines a Full Frontal 2D image with additional 3D information.• Token Frontal 3D: The Token Frontal 3D Image Type combines a Token Frontal 2D image with additional 3D information.Table 1 shows the relationships between Face Image Types using the notion of inheritance. For example, Frontal inherits properties from Basic, which means that all normative clauses that apply to Basic also apply to Frontal.Table 1 -— -Inheritance of Face Image TypesFace Image TypeInherits fromNormative clausesInformative annexesBasicNone1, 2, 3, 4, 5, 6B.1FrontalBasic7B.2Full FrontalFrontal8B.3Token FrontalFrontal9B.4Post-processed FrontalFrontal10 Figure 1 gives a general overview of the scene, photographic, digitization, and format requirements for the face image types specified in this part of ISO/IEC 19794.Figure 1 -— -The types of imaging requirements specified in this part of ISO/IEC 19794. The Basic Face Image Type has no scene, photographic, or digital requirementsRequirementsScenePhotographicDigitalFormat -Lighting - -Image and Subject - -Positioning - - -Camera Attributes - -Digital Camera - - -Analogue to Digital - - -Image Scanning - -Digital Specifications - - -Record Format and Organization -Clauses:Clauses:Clauses:Clauses:Basic FaceNoneBasic FaceNoneBasic FaceNoneBasic Face5       6.2       6.3       6.4Frontal Face7.2Frontal Face7.3Frontal Face7.4Frontal Face7.5Full Frontal Face8.2Full Frontal Face8.3Full Frontal Face8.4Full Frontal Face8.5    Token Face9.2Token Face9.3      Post-processed10.3      Frontal Face This is a revision of ISO/IEC 19794-5:2005. The structure of the data format is not compatible with the previous version.NOTE This part of ISO/IEC 19794 relies on other ISO International Standards.","1   ScopeThis part of ISO/IEC 19794— specifies a record format for storing, recording, and transmitting the information from one or more facial images or a short video stream of facial images,— specifies scene constraints of the facial images,— specifies photographic properties of the facial images,— specifies digital image attributes of the facial images,— provides best practices for the photography of faces.",ISO/IEC 19794-5:2011(en) -55,"Current airport screening protocols rely on identification cards such as drivers licenses to perform identity verification at TSA checkpoints. In the future, ensuring identity could be even more important if a substantial fraction of the flying public goes through an expedited screening protocol based on information (e.g., travel patterns) associated with passenger identity. In addition, more adaptive security protocols, in which checked or carry-on baggage screening protocols are closely linked to passenger risk, would require mechanisms for high-confidence association between passengers and their bags. In this task, AF-MIT/LL will conduct a study of existing and feasible near-term identity verification and correlation methods in order to assess advantages and projected vulnerabilities with respect to potential _screening at speed checkpoint protocols. Components that will be considered include credential authentication technologies, standoff biometrics, scan-able unique identifiers, and the underlying software architecture and databases required to manage identity-related information. AF-MIT/LL will perform limited implementation to support the analysis; for instance, evaluation of low-fidelity face matching to verify identity across multiple passenger visits to the same airport may require some testing with actual face images extracted from surveillance video at a range of resolutions. The output of this task will be a set of recommendations for the use of identity verification and correlation mechanisms, and an identification of near-term development efforts required to fill capability gaps. ",Information technology — Advanced image coding and evaluation — Part 1: Guidelines for image coding system evaluation,https://www.iso.org/obp/ui/#!iso:std:63637:en,"IntroductionThis document provides a framework and best practices to evaluate image compression algorithms. This document provides a selection of evaluation tools that allow testing multiple features, including objective metric image quality, subjective metric image quality and codec algorithmic complexity. Which features of codecs should be tested and pass-fail criteria is beyond the scope of this document.","1   ScopeThis document recommends best practices for coding system evaluation of images and image sequences. This document defines a common vocabulary of terms for coding system evaluation and divides evaluation methods into three broad categories:a) subjective assessment;b) objective assessment;c) computational assessment.In addition to these broad assessment categories, this document discusses special care that is given for coding unusual imagery, e.g. high dynamic range or high colour depth.A fourth assessment category, hardware complexity, is often important for real-time or computationally complex applications; however, it is outside the scope of this document.",ISO/IEC TR 29170-1:2017(en) -56,"DHS S&T is has a variety of projects supporting the development of next-generation aviation security capabilities as part of its APEX Screening-at-Speed program. Several of those efforts will utilize an open architecture and allow integration with 3rd-party party capabilities. DHS S&T is seeking the following from Sandia OTAP project to further its APEX program: 1. Further Development of OPSL to support AIT modularization to include third-party algorithms supporting threat detection (including ATR Reconstruction algorithms). 2. Development of a standardized data format to structure data from AIT scans. The intent of the formatting effort is to ensure that third-parties have a standardized, non-proprietary way to access all levels of data from AIT scans as opposed to being limited to post-reconstruction, proprietary data. a. (Optional) Accelerate the development of an _A-A data format for CT machines to enable greater access to pre-reconstruction data. The technical lessons learned and progress from the CT effort already underway with the OTAP project will directly inform and facilitate the AIT data format effort. 3. Support further development of the MRAD algorithm development environment to support rapid test and evaluation (T&E) of AIT ATR algorithms. a. (Optional) Accelerate the development of third-party CT ATR and Reconstruction algorithms on the OTAP program to mature the ATR development and T&E of AIT algorithms. ",Information technology — Programming languages — Guidance to avoiding vulnerabilities in programming languages through language selection and use,https://www.iso.org/obp/ui/#!iso:std:61457:en,"IntroductionAll programming languages contain constructs that are incompletely specified, exhibit undefined behaviour, are implementation-dependent, or are difficult to use correctly. The use of those constructs may therefore give rise to vulnerabilities, as a result of which, software programs can execute differently than intended by the writer. In some cases, these vulnerabilities can compromise the safety of a system or be exploited by attackers to compromise the security or privacy of a system.This Technical Report is intended to provide guidance spanning multiple programming languages, so that application developers will be better able to avoid the programming constructs that lead to vulnerabilities in software written in their chosen language and their attendant consequences. This guidance can also be used by developers to select source code evaluation tools that can discover and eliminate some constructs that could lead to vulnerabilities in their software or to select a programming language that avoids anticipated problems.It should be noted that this Technical Report is inherently incomplete. It is not possible to provide a complete list of programming language vulnerabilities because new weaknesses are discovered continually. Any such report can only describe those that have been found, characterized, and determined to have sufficient probability and consequence.Furthermore, to focus its limited resources, the working group developing this report decided to defer comprehensive treatment of several subject areas until future editions of the report. These subject areas include:• Object-oriented language features (although some simple issues related to inheritance are described in 6.43 Inheritance [RIP])• Numerical analysis (although some simple items regarding the use of floating point are described in 6.5 Floating-point Arithmetic [PLF])• Inter-language operability","1.   ScopeThis Technical Report specifies software programming language vulnerabilities to be avoided in the development of systems where assured behaviour is required for security, safety, mission-critical and business-critical software. In general, this guidance is applicable to the software developed, reviewed, or maintained for any application.Vulnerabilities are described in a generic manner that is applicable to a broad range of programming languages.",ISO/IEC TR 24772:2013(en) -57,"DHS S&T is has a variety of projects supporting the development of next-generation aviation security capabilities as part of its APEX Screening-at-Speed program. Several of those efforts will utilize an open architecture and allow integration with 3rd-party party capabilities. DHS S&T is seeking the following from Sandia OTAP project to further its APEX program: 1. Further Development of OPSL to support AIT modularization to include third-party algorithms supporting threat detection (including ATR Reconstruction algorithms). 2. Development of a standardized data format to structure data from AIT scans. The intent of the formatting effort is to ensure that third-parties have a standardized, non-proprietary way to access all levels of data from AIT scans as opposed to being limited to post-reconstruction, proprietary data. a. (Optional) Accelerate the development of an _A-A data format for CT machines to enable greater access to pre-reconstruction data. The technical lessons learned and progress from the CT effort already underway with the OTAP project will directly inform and facilitate the AIT data format effort. 3. Support further development of the MRAD algorithm development environment to support rapid test and evaluation (T&E) of AIT ATR algorithms. a. (Optional) Accelerate the development of third-party CT ATR and Reconstruction algorithms on the OTAP program to mature the ATR development and T&E of AIT algorithms. ","Information technology — Programming languages, their environments and system software interfaces — Technical Report on C++ Performance",https://www.iso.org/obp/ui/#!iso:std:43351:en,"Introduction“Performance” has many aspects - execution speed, code size, data size, and memory footprint at run-time, or time and space consumed by the edit/compile/link process. It could even refer to the time necessary to find and fix code defects. Most people are primarily concerned with execution speed, although program footprint and memory usage can be critical for small embedded systems where the program is stored in ROM, or where ROM and RAM are combined on a single chip.Efficiency has been a major design goal for C++ from the beginning, as has the principle of “zero overhead” for any feature that is not used in a program. It has been a guiding principle from the earliest days of C++ that “you don’t pay for what you don’t use”.Language features that are never used in a program should not have a cost in extra code size, memory size, or run-time. If there are places where C++ cannot guarantee zero overhead for unused features, this Technical Report will attempt to document them. It will also discuss ways in which compiler writers, library vendors, and programmers can minimize or eliminate performance penalties, and will discuss the trade-offs among different methods of implementation.Programming for resource-constrained environments is another focus of this Technical Report Typically, programs that run into resource limits of some kind are either very large or very small. Very large programs, such as database servers, may run into limits of disk space or virtual memory. At the other extreme, an embedded application may be constrained to run in the ROM and RAM space provided by a single chip, perhaps a total of 64K of memory, or even smaller.Apart from the issues of resource limits, some programs must interface with system hardware at a very low level. Historically the interfaces to hardware have been implemented as proprietary extensions to the compiler (often as macros). This has led to the situation that code has not been portable, even for programs written for a given environment, because each compiler for that environment has implemented different sets of extensions.","1   ScopeThe aim of this Technical Report is:• to give the reader a model of time and space overheads implied by use of various C++ language and library features,• to debunk widespread myths about performance problems,• to present techniques for use of C++ in applications where performance matters, and• to present techniques for implementing C++ Standard language and library facilities to yield efficient code.As far as run-time and space performance are concerned, if you can afford to use C for an application, you can afford to use C++ in a style that uses C++’s facilities appropriately for that application.This Technical Report first discusses areas where performance issues matter, such as various forms of embedded systems programming and high-performance numerical computation. After that, the main body of the Technical Report considers the basic cost of using language and library facilities, techniques for writing efficient code, and the special needs of embedded systems programming.Performance implications of object-oriented programming are presented. This discussion rests on measurements of key language facilities supporting OOP, such as classes, class member functions, class hierarchies, virtual functions, multiple inheritance, and run-time type information (RTTI). It is demonstrated that, with the exception of RTTI, current C++ implementations can match hand-written low-level code for equivalent tasks. Similarly, the performance implications of generic programming using templates are discussed. Here, however, the emphasis is on techniques for effective use. Error handling using exceptions is discussed based on another set of measurements. Both time and space overheads are discussed. In addition, the predictability of performance of a given operation is considered.The performance implications of IOStreams and Locales are examined in some detail and many generally useful techniques for time and space optimizations are discussed.The special needs of embedded systems programming are presented, including ROMability and predictability. A separate chapter presents general C and C++ interfaces to the basic hardware facilities of embedded systems.Additional research is continuing into techniques for producing efficient C++ libraries and programs. Please see the WG21 web site at www.open-std.org/jtc1/sc22/wg21 for example code from this Technical Report and pointers to other sites with relevant information.",ISO/IEC TR 18015:2006(en) -58,"DHS S&T is has a variety of projects supporting the development of next-generation aviation security capabilities as part of its APEX Screening-at-Speed program. Several of those efforts will utilize an open architecture and allow integration with 3rd-party party capabilities. DHS S&T is seeking the following from Sandia OTAP project to further its APEX program: 1. Further Development of OPSL to support AIT modularization to include third-party algorithms supporting threat detection (including ATR Reconstruction algorithms). 2. Development of a standardized data format to structure data from AIT scans. The intent of the formatting effort is to ensure that third-parties have a standardized, non-proprietary way to access all levels of data from AIT scans as opposed to being limited to post-reconstruction, proprietary data. a. (Optional) Accelerate the development of an _A-A data format for CT machines to enable greater access to pre-reconstruction data. The technical lessons learned and progress from the CT effort already underway with the OTAP project will directly inform and facilitate the AIT data format effort. 3. Support further development of the MRAD algorithm development environment to support rapid test and evaluation (T&E) of AIT ATR algorithms. a. (Optional) Accelerate the development of third-party CT ATR and Reconstruction algorithms on the OTAP program to mature the ATR development and T&E of AIT algorithms. ",Software Engineering — Guide to the software engineering body of knowledge (SWEBOK),https://www.iso.org/obp/ui/#!iso:std:67604:en,"IntroductionThe purpose of the Guide to the Software Engineering Body of Knowledge is to provide a consensually validated characterization of the bounds of the software engineering discipline and to provide a topical access to the Body of Knowledge supporting that discipline. The Body of Knowledge is subdivided into fifteen software engineering Knowledge Areas (KA) providing an outline of topics. The descriptions in the KAs are designed to discriminate among the various important concepts, permitting readers to find their way quickly to subjects of interest. Upon finding a subject, readers are referred to key papers or books selected because they succinctly present the knowledge.Publication of the 2004 version of this Guide to the Software Engineering Body of Knowledge (SWEBOK 2004)—adopted as ISO/IEC TR 19759:2005—was a major milestone in establishing software engineering as a recognized engineering discipline. The goal in developing this update to SWEBOK is to improve the currency, readability, consistency, and usability of the Guide. All knowledge areas (KAs) have been updated to reflect changes in software engineering since publication of SWEBOK 2004. Four new foundation KAs and a Software Engineering Professional Practices KA have been added. The Software Engineering Tools and Methods KA has been revised as Software Engineering Models and Methods. Software engineering tools is now a topic in each of the KAs. Three appendices provide the specifications for the KA description, an annotated set of relevant standards for each KA, and a listing of the references cited in the Guide.An emphasis on engineering practice leads the Guide toward a strong relationship with the normative literature. Most of the computer science, information technology and software engineering literature provides information useful to software engineers, but a relatively small portion is normative. A normative document prescribes what an engineer should do in a specified situation rather than providing information that might be helpful. The normative literature is validated by consensus formed among practitioners and is concentrated in standards and related documents. From the beginning, the SWEBOK project was conceived as having a strong relationship to the normative literature of software engineering. The two major standards bodies for software engineering (IEEE Computer Society Software and Systems Engineering Standards Committee and ISO/IEC JTC1/SC7) cooperated in the project.The Guide is oriented toward a variety of audiences, all over the world. It aims to serve public and private organizations in need of a consistent view of software engineering for defining education and training requirements, classifying jobs, developing performance evaluation policies or specifying software development tasks. It also addresses practicing, or managing, software engineers and the officials responsible for making public policy regarding licensing and professional guidelines. In addition, professional societies and educators defining the certification rules, accreditation policies for university curricula, and guidelines for professional practice will benefit from the SWEBOK Guide, as well as the students learning the software engineering profession and educators and trainers engaged in defining curricula and course content.",1   ScopeThis Technical report characterizes the boundaries of the software engineering discipline and provides topical access to the literature supporting that discipline.,ISO/IEC TR 19759:2015(en) -59,"DHS S&T is has a variety of projects supporting the development of next-generation aviation security capabilities as part of its APEX Screening-at-Speed program. Several of those efforts will utilize an open architecture and allow integration with 3rd-party party capabilities. DHS S&T is seeking the following from Sandia OTAP project to further its APEX program: 1. Further Development of OPSL to support AIT modularization to include third-party algorithms supporting threat detection (including ATR Reconstruction algorithms). 2. Development of a standardized data format to structure data from AIT scans. The intent of the formatting effort is to ensure that third-parties have a standardized, non-proprietary way to access all levels of data from AIT scans as opposed to being limited to post-reconstruction, proprietary data. a. (Optional) Accelerate the development of an _A-A data format for CT machines to enable greater access to pre-reconstruction data. The technical lessons learned and progress from the CT effort already underway with the OTAP project will directly inform and facilitate the AIT data format effort. 3. Support further development of the MRAD algorithm development environment to support rapid test and evaluation (T&E) of AIT ATR algorithms. a. (Optional) Accelerate the development of third-party CT ATR and Reconstruction algorithms on the OTAP program to mature the ATR development and T&E of AIT algorithms. ","Information and documentation - Qualitative conditions and basic statistics for library buildings — Space, function and design",https://www.iso.org/obp/ui/#!iso:std:50251:en,"IntroductionThis Technical Report provides guidance for the planning of library buildings by identifying requirements of space and technical equipment. It supports decision making for librarians, architects and financing institutions.This Technical Report considers planning, both for new buildings and for the reconstruction of existing library buildings or the conversion of other buildings for library use.In order to plan new or reconstructed buildings, libraries need reliable data that can help them to calculate their space requirements and to define the respective technical building equipment for housing the collections, as well as for offering adequate user areas and background areas for the internal library operations. Such data are not yet available in International Standards.This Technical Report includes data and specifications for all types of libraries, but especially for academic and public libraries. Its main topics are space requirements for:— user areas (user places, reference and information services, lending services, user training, recreation and communication areas, meeting and exhibition areas);— collection storage areas (including non-book materials);— library operations (media processing, bindery, computing and management).This Technical Report also covers technical aspects like security and safety systems, floor loading, transport systems, acoustic conditions, lighting systems and wiring and the issues of barrier-free construction and sustainability.Annex A gives an overview of issues to consider when planning to reconstruct or reorganize existing buildings for library purposes. Annex B provides a list of functional areas and rooms to be used when checking the completeness of the plans.Several clauses of this Technical Report are partly based on References [13] and [18].","1   ScopeThis Technical Report specifies data for the planning of library buildings. It also provides guidance on the selection of technical building equipment for the different functional areas of libraries.This Technical Report is applicable to all types of libraries in all countries, but especially to academic and public libraries.It does not include details on national, regional or local regulations that can affect the planning of library buildings.",ISO/TR 11219:2012(en) -60,"DHS S&T is has a variety of projects supporting the development of next-generation aviation security capabilities as part of its APEX Screening-at-Speed program. Several of those efforts will utilize an open architecture and allow integration with 3rd-party party capabilities. DHS S&T is seeking the following from Sandia OTAP project to further its APEX program: 1. Further Development of OPSL to support AIT modularization to include third-party algorithms supporting threat detection (including ATR Reconstruction algorithms). 2. Development of a standardized data format to structure data from AIT scans. The intent of the formatting effort is to ensure that third-parties have a standardized, non-proprietary way to access all levels of data from AIT scans as opposed to being limited to post-reconstruction, proprietary data. a. (Optional) Accelerate the development of an _A-A data format for CT machines to enable greater access to pre-reconstruction data. The technical lessons learned and progress from the CT effort already underway with the OTAP project will directly inform and facilitate the AIT data format effort. 3. Support further development of the MRAD algorithm development environment to support rapid test and evaluation (T&E) of AIT ATR algorithms. a. (Optional) Accelerate the development of third-party CT ATR and Reconstruction algorithms on the OTAP program to mature the ATR development and T&E of AIT algorithms. ",Information technology — Common Language Infrastructure (CLI),https://www.iso.org/obp/ui/#!iso:std:58046:en,,"I.1   ScopeThis International Standard defines the Common Language Infrastructure (CLI) in which applications written in multiple high-level languages can be executed in different system environments without the need to rewrite those applications to take into consideration the unique characteristics of those environments. This International Standard consists of the following parts:● Partition I: Concepts and Architecture — Describes the overall architecture of the CLI, and provides the normative description of the Common Type System (CTS), the Virtual Execution System (VES), and the Common Language Specification (CLS). It also provides an informative description of the metadata.● Partition II: Metadata Definition and Semantics — Provides the normative description of the metadata: its physical layout (as a file format), its logical contents (as a set of tables and their relationships), and its semantics (as seen from a hypothetical assembler, ilasm).● Partition III: CIL Instruction Set — Describes the Common Intermediate Language (CIL) instruction set.● Partition IV: Profiles and Libraries — Provides an overview of the CLI Libraries, and a specification of their factoring into Profiles and Libraries. A companion file, CLILibrary.xml, considered to be part of this Partition, but distributed in XML format, provides details of each class, value type, and interface in the CLI Libraries.● Partition V: Debug Interchange Format — Describes a standard way to interchange debugging information between CLI producers and consumers.● Partition VI: Annexes — Contains some sample programs written in CIL Assembly Language (ILAsm), information about a particular implementation of an assembler, a machine-readable description of the CIL instruction set which can be used to derive parts of the grammar used by this assembler as well as other tools that manipulate CIL, a set of guidelines used in the design of the libraries of Partition IV. and portability considerations.",ISO/IEC 23271:2012(en) -61,"DHS S&T is has a variety of projects supporting the development of next-generation aviation security capabilities as part of its APEX Screening-at-Speed program. Several of those efforts will utilize an open architecture and allow integration with 3rd-party party capabilities. DHS S&T is seeking the following from Sandia OTAP project to further its APEX program: 1. Further Development of OPSL to support AIT modularization to include third-party algorithms supporting threat detection (including ATR Reconstruction algorithms). 2. Development of a standardized data format to structure data from AIT scans. The intent of the formatting effort is to ensure that third-parties have a standardized, non-proprietary way to access all levels of data from AIT scans as opposed to being limited to post-reconstruction, proprietary data. a. (Optional) Accelerate the development of an _A-A data format for CT machines to enable greater access to pre-reconstruction data. The technical lessons learned and progress from the CT effort already underway with the OTAP project will directly inform and facilitate the AIT data format effort. 3. Support further development of the MRAD algorithm development environment to support rapid test and evaluation (T&E) of AIT ATR algorithms. a. (Optional) Accelerate the development of third-party CT ATR and Reconstruction algorithms on the OTAP program to mature the ATR development and T&E of AIT algorithms. ",Health informatics — Digital imaging and communication in medicine (DICOM) including workflow and data management,https://www.iso.org/obp/ui/#!iso:std:72941:en,"0 IntroductionDigital Imaging and Communications in Medicine (DICOM) is the standard for the communication and management of medical imaging information and related data.0.1 HistoryWith the introduction of computed tomography (CT) followed by other digital diagnostic imaging modalities in the 1970s, and the increasing use of computers in clinical applications, the American College of Radiology (ACR) and the National Electrical Manufacturers Association (NEMA) recognized the emerging need for a standard method for transferring images and associated information between devices manufactured by various vendors. These devices produce a variety of digital image formats.The American College of Radiology (ACR) and the National Electrical Manufacturers Association (NEMA) formed a joint committee in 1983 to develop a standard to:— promote communication of digital image information, regardless of device manufacturer;— facilitate the development and expansion of picture archiving and communication systems (PACS) that can also interface with other systems of hospital information;— allow the creation of diagnostic information databases that can be interrogated by a wide variety of devices distributed geographically.ACR-NEMA standards Publication No. 300-1985, published in 1985, was designated version 1.0. The standard was followed by two revisions: No. 1, dated October 1986 and No. 2, dated January 1988. These standards publications specified a hardware interface, a minimum set of software commands, and a consistent set of data formats.ACR-NEMA standards Publication No. 300-1988, published in 1988, was designated version 2.0. It included version 1.0, the published revisions, and additional revisions. It also included new material to provide command support for display devices, to introduce a new hierarchy scheme to identify an image, and to add data elements for increased specificity when describing an image.In 1993, ACR-NEMA/Standard 300 was substantially revised and replaced by this document, designated Digital Imaging and Communications in Medicine (DICOM). It embodies a number of major enhancements to previous versions of the ACR-NEMA standard, as listed below.— It is applicable to a networked environment. The ACR-NEMA standard was applicable in a point-to-point environment only; for operation in a networked environment, a Network Interface Unit (NIU) was required. DICOM supports operation in a networked environment using the industry standard networking protocol TCP/IP.— It is applicable to offline media exchange. The ACR-NEMA standard did not specify a file format or choice of physical media or logical filesystem. DICOM supports operation in an offline media environment using industry standard media such as CD-R, DVD-R and USB and common file systems.— It is a service-oriented protocol, specifying the semantics of commands and associated data, and how devices claiming conformance to the DICOM standard react to commands and data being exchanged. Specified services include support for management of the workflow of an imaging department. The ACR-NEMA standard was confined to the transfer of data with only implicit service requirements.— It specifies levels of conformance. The ACR-NEMA standard specified a minimum level of conformance. DICOM explicitly describes how an implementor must structure a Conformance Statement to select specific options.In 1995, with the addition of DICOM capabilities for cardiology imaging supported by the American College of Cardiology, the ACR-NEMA Joint Committee was reorganized as the DICOM Standards Committee, a broad collaboration of stakeholders across all medical imaging specialities.0.2 Principles0.2.1 Global applicability and localizationDICOM is a world-wide standard that can be used in every locale. It provides mechanisms to handle data that support cultural requirements, such as different writing systems, character sets, languages, and structures for addresses and person names. It supports the variety of workflows, processes and policies used for biomedical imaging in different geographic regions, medical specialities and local practices.Localization to meet the requirements of national or local health and workflow policies can be done without deviating from the DICOM standard. Such localization may include specifying code sets (e.g. procedure codes) or profiling data element usage (both specifying locally-allowed values, and making elements that are optional in the DICOM standard mandatory for local use).Localization and profiling can be specified in a number of mechanisms outside the purview of the DICOM standard. One such mechanism is Integration Profiles from the Integrating the Healthcare Enterprise (IHE) organization. It is important that Profiling adhere to the concept of non-contradiction. A Profile can add requirements but should not contradict DICOM requirements, as that would make it impossible to comply with both DICOM and the Profile.0.2.2 Continuous maintenanceThe DICOM standard is an evolving standard and it is maintained in accordance with the Procedures of the DICOM Standards Committee. Proposals for enhancements are welcome from all users of the DICOM standard and may be submitted to the Secretariat. Supplements and corrections to the DICOM standard are balloted and approved several times a year. When approved as Final Text, each change becomes official, is published separately, and goes into effect immediately. At intervals, all of the approved Final Text changes are consolidated and published in an updated edition of the DICOM standard. Once changes are consolidated into an updated edition of the DICOM standard, the individual change documents are not maintained; readers are directed to use the consolidated edition of the DICOM standard.A requirement in updating the DICOM standard is to maintain effective compatibility with previous editions.The maintenance process may involve retirement of sections of the DICOM standard.Retirement does not imply that these features cannot be used. However, the DICOM Standards Committee will not maintain the documentation of retired features. The reader is referred to earlier editions of the DICOM standard.The use of the retired features is discouraged for new implementations, in favour of those alternatives remaining in the DICOM standard.0.2.3 Information objects and unique object identificationMany DICOM services involve the exchange of persistent information objects, such as images. An instance of such an information object may be exchanged across many systems and many organizational contexts, and over time. While minor changes may be made to the attributes of an instance to facilitate its handling within a particular organization (e.g. by coercing a Patient ID to the value used in a local context), the semantic content of an instance does not change.Each instance is identified by a globally unique object identifier, which persists with the instance across all exchanges. Changes to the semantic content of an instance are defined to create a new instance, which is assigned a new globally unique object identifier.0.2.4 ConformanceConformance to the DICOM standard is stated in terms of Service-Object Pair (SOP) Classes, which represent Services (such as Storage using network, media, or web) operating on types of Information Objects (such as CT or MR images).SOP Class specifications in the DICOM standard are only changed in a manner that is intended to be forward and backward compatible for all editions of the DICOM standard. Conformance requirements and conformance claims are therefore referenced to the identifier of the SOP Class, and never referenced to an edition of the DICOM standard.Each implementation is required to provide a Conformance Statement, in accordance with a consistent pro forma structure, facilitating comparison of products for interoperability.0.2.5 Consistency of information modelA large number of information objects defined in the DICOM standard follow a common composite information model with information entities representing Patient, Study, Series, Equipment, Frame of Reference, and the specific instance data type. This information model is a simplification of the real world concepts and activities of medical imaging; for acquisition modalities, a Study is approximately equivalent to an ordered procedure, and a Series is approximately equivalent to a performed data acquisition protocol element. In other domains, such as Radiotherapy, the Study and Series are less clearly related to real world entities or activities, but are still required for consistency. This simplified model is sufficient for the pragmatic needs of managing imaging and related data collected in routine practice.New information objects defined in DICOM will typically conform to this existing common information model, allowing reuse of implementations with minimal changes to support the new objects.","1   ScopeThis document, within the field of health informatics, addresses the exchange of digital images and information related to the production and management of those images, between both medical imaging equipment and systems concerned with the management and communication of that information.This document facilitates interoperability of medical imaging equipment by specifying:— for network communications, a set of protocols to be followed by devices claiming conformance to this document;— the syntax and semantics of Commands and associated information which can be exchanged using these protocols;— for media communication, a set of media storage services to be followed by devices claiming conformance to this document, as well as a File Format and a medical directory structure to facilitate access to the images and related information stored on interchange media;— information that is to be supplied with an implementation for which conformance to this document is claimed.This document does not specify:— the implementation details of any features of the DICOM standard on a device claiming conformance;— the overall set of features and functions to be expected from a system implemented by integrating a group of devices each claiming conformance to this document;— a testing/validation procedure to assess an implementation's conformance to this document.This document pertains to the field of medical informatics. Within that field, it addresses the exchange of digital information between medical imaging equipment and other systems. Because such equipment may interoperate with other medical devices and information systems, the scope of this document needs to overlap with other areas of medical informatics. However, this document does not address the full breadth of this field.This document has been developed with an emphasis on diagnostic medical imaging as practiced in radiology, cardiology, pathology, dentistry, ophthalmology and related disciplines, and image-based therapies such as interventional radiology, radiotherapy and surgery. However, it is also applicable to a wide range of image and non-image related information exchanged in clinical, research, veterinary, and other medical environments.This document facilitates interoperability of systems claiming conformance in a multi-vendor environment, but does not, by itself, guarantee interoperability.",ISO 12052:2017(en) -62,"As a result, Cyber.gov is creating a robust, innovative and holistic cyber security architecture design that mitigates modern threats (Asset Management, Configuration Management, Phishing, DDoS, Ransomware, Mobile, Cloud issues and more) by leveraging best practices and implementable solutions with minimal impact to workforce efficiency. It will not only addresses some of the issues of perimeter based defense, but also brings new technologies such as Software Defined Perimeter (SDP) tailored to the .Gov domain, while guiding CIOs and CISOs in selecting and implementing current best practices for 34 cyber security components. Cyber.gov will significantly improve the security and resiliency across the D/As. ",Information technology — Security techniques — Guidelines for cybersecurity,https://www.iso.org/obp/ui/#!iso:std:44375:en,"IntroductionThe Cyberspace is a complex environment resulting from the interaction of people, software and services on the Internet, supported by worldwide distributed physical information and communications technology (ICT) devices and connected networks. However there are security issues that are not covered by current information security, Internet security, network security and ICT security best practices as there are gaps between these domains, as well as a lack of communication between organizations and providers in the Cyberspace. This is because the devices and connected networks that have supported the Cyberspace have multiple owners, each with their own business, operational and regulatory concerns. The different focus placed by each organization and provider in the Cyberspace on relevant security domains where little or no input is taken from another organization or provider has resulted in a fragmented state of security for the Cyberspace.As such, the first area of focus of this International Standard is to address Cyberspace security or Cybersecurity issues which concentrate on bridging the gaps between the different security domains in the Cyberspace. In particular this International Standard provides technical guidance for addressing common Cybersecurity risks, including:— social engineering attacks;— hacking;— the proliferation of malicious software (“malware”);— spyware; and— other potentially unwanted software.The technical guidance provides controls for addressing these risks, including controls for:— preparing for attacks by, for example, malware, individual miscreants, or criminal organizations on the Internet;— detecting and monitoring attacks; and— responding to attacks.The second area of focus of this International Standard is collaboration, as there is a need for efficient and effective information sharing, coordination and incident handling amongst stakeholders in the Cyberspace. This collaboration must be in a secure and reliable manner that also protects the privacy of the individuals concerned. Many of these stakeholders can reside in different geographical locations and time zones, and are likely to be governed by different regulatory requirements. Stakeholders include:— consumers, which can be various types of organizations or individuals; and— providers, which include service providers.Thus, this International Standard also provides a framework for— information sharing,— coordination, and— incident handling.The framework includes— key elements of considerations for establishing trust,— necessary processes for collaboration and information exchange and sharing, as well as— technical requirements for systems integration and interoperability between different stakeholders.Given the scope of this International Standard, the controls provided are necessarily at a high level. Detailed technical specification standards and guidelines applicable to each area are referenced within this International Standard for further guidance.","1   ScopeThis International Standard provides guidance for improving the state of Cybersecurity, drawing out the unique aspects of that activity and its dependencies on other security domains, in particular:— information security,— network security,— internet security, and— critical information infrastructure protection (CIIP).It covers the baseline security practices for stakeholders in the Cyberspace. This International Standard provides:— an overview of Cybersecurity,— an explanation of the relationship between Cybersecurity and other types of security,— a definition of stakeholders and a description of their roles in Cybersecurity,— guidance for addressing common Cybersecurity issues, and— a framework to enable stakeholders to collaborate on resolving Cybersecurity issues.",ISO/IEC 27032:2012(en) -63,"As a result, Cyber.gov is creating a robust, innovative and holistic cyber security architecture design that mitigates modern threats (Asset Management, Configuration Management, Phishing, DDoS, Ransomware, Mobile, Cloud issues and more) by leveraging best practices and implementable solutions with minimal impact to workforce efficiency. It will not only addresses some of the issues of perimeter based defense, but also brings new technologies such as Software Defined Perimeter (SDP) tailored to the .Gov domain, while guiding CIOs and CISOs in selecting and implementing current best practices for 34 cyber security components. Cyber.gov will significantly improve the security and resiliency across the D/As. ","Information technology — Security techniques — Selection, deployment and operations of intrusion detection systems (IDPS)",https://www.iso.org/obp/ui/#!iso:std:56889:en,"IntroductionOrganizations should not only know when, if, and how an intrusion of their network, system, or application occurs. They also should know what vulnerability was exploited and what safeguards or appropriate risk treatment options (i.e. risk modification, risk retention, risk avoidance, risk sharing) should be implemented to prevent similar intrusions in the future. Organizations should also recognize and deter cyber-based intrusions. This requires an analysis of host and network traffic and/or audit trails for attack signatures or specific patterns that usually indicate malicious or suspicious intent. In the mid-1990s, organizations began to use intrusion detection and prevention systems (IDPS) to fulfil these needs. The general use of IDPS continues to expand with a wider range of IDPS products being made available to satisfy an increasing level of organizational demands for advanced intrusion detection capability.In order for an organization to derive the maximum benefits from IDPS, the process of IDPS selection, deployment, and operations should be carefully planned and implemented by properly trained and experienced personnel. In the case where this process is achieved, then IDPS products can assist an organization in obtaining intrusion information and can serve as an important security device within the overall information and communications technology (ICT) infrastructure.This International Standard provides guidelines for effective IDPS selection, deployment, and operation, as well as fundamental knowledge about IDPS. It is also applicable to those organizations that are considering outsourcing their intrusion detection capabilities. Information about outsourcing service level agreements can be found in the IT service management (ITSM) processes based on ISO/IEC 20000 Series.This International Standard is intended to be helpful to: a) An organization in satisfying the following requirements of ISO/IEC 27001:— The organization shall implement procedures and other controls capable of enabling prompt detection of and response to security incidents;— The organization shall execute monitoring and review procedures and other controls to properly identify attempted and successful security breaches and incidents.b) An organization in implementing controls that meet the following security objectives of ISO/IEC 27002:— To detect unauthorized information processing activities;— Systems should be monitored and information security events should be recorded. Operator logs and fault logging should be used to ensure information system problems are identified;— An organization should comply with all relevant legal requirements applicable to its monitoring and logging activities;— System monitoring should be used to check the effectiveness of controls adopted and to verify conformity to an access policy model.An organization should recognize that deploying IDPS is not a sole and/or exhaustive solution to satisfy or meet the above-cited requirements. Furthermore, this International Standard is not intended as criteria for any kind of conformity assessments, e.g., information security management system (ISMS) certification, IDPS services or products certification.","1   ScopeThis International Standard provides guidelines to assist organizations in preparing to deploy intrusion detection and prevention systems (IDPS). In particular, it addresses the selection, deployment, and operations of IDPS. It also provides background information from which these guidelines are derived.",ISO/IEC 27039:2015(en) -64,"As a result, Cyber.gov is creating a robust, innovative and holistic cyber security architecture design that mitigates modern threats (Asset Management, Configuration Management, Phishing, DDoS, Ransomware, Mobile, Cloud issues and more) by leveraging best practices and implementable solutions with minimal impact to workforce efficiency. It will not only addresses some of the issues of perimeter based defense, but also brings new technologies such as Software Defined Perimeter (SDP) tailored to the .Gov domain, while guiding CIOs and CISOs in selecting and implementing current best practices for 34 cyber security components. Cyber.gov will significantly improve the security and resiliency across the D/As. ",Information technology — Security techniques — Information security risk management,https://www.iso.org/obp/ui/#!iso:std:56742:en,"IntroductionThis International Standard provides guidelines for information security risk management in an organization, supporting in particular the requirements of an information security management (ISMS) according to ISO/IEC 27001. However, this International Standard does not provide any specific method for information security risk management. It is up to the organization to define their approach to risk management, depending for example on the scope of the ISMS, context of risk management, or industry sector. A number of existing methodologies can be used under the framework described in this International Standard to implement the requirements of an ISMS.This International Standard is relevant to managers and staff concerned with information security risk management within an organization and, where appropriate, external parties supporting such activities.","1   ScopeThis International Standard provides guidelines for information security risk management.This International Standard supports the general concepts specified in ISO/IEC 27001 and is designed to assist the satisfactory implementation of information security based on a risk management approach.Knowledge of the concepts, models, processes and terminologies described in ISO/IEC 27001 and ISO/IEC 27002 is important for a complete understanding of this International Standard.This International Standard is applicable to all types of organizations (e.g. commercial enterprises, government agencies, non-profit organizations) which intend to manage risks that could compromise the organization’s information security.",ISO/IEC 27005:2011(en) -65,"As a result, Cyber.gov is creating a robust, innovative and holistic cyber security architecture design that mitigates modern threats (Asset Management, Configuration Management, Phishing, DDoS, Ransomware, Mobile, Cloud issues and more) by leveraging best practices and implementable solutions with minimal impact to workforce efficiency. It will not only addresses some of the issues of perimeter based defense, but also brings new technologies such as Software Defined Perimeter (SDP) tailored to the .Gov domain, while guiding CIOs and CISOs in selecting and implementing current best practices for 34 cyber security components. Cyber.gov will significantly improve the security and resiliency across the D/As. ",Information technology — Security techniques — Vulnerability disclosure,https://www.iso.org/obp/ui/#!iso:std:45170:en,"IntroductionA vulnerability is a weakness of software, hardware, or online service that can be exploited. An exploitation of vulnerabilities results in a disruption of the confidentiality, integrity, or availability of the ICT system or related information assets, which may cause a breach of data privacy, interruption of operation of mission critical systems, and so on.Vulnerabilities can be caused by both software or hardware design and programming flaws. Poor administrative processes and a lack of user awareness and education can also be a source of vulnerabilities, as can unforeseen changes in operating environments. Regardless of the cause, an exploitation of such vulnerabilities may result in real threats to mission-critical information systems. Individuals and organizations, including businesses and governments, rely heavily on hardware and software components used in operating systems, applications, networks, and critical national infrastructure. Vulnerabilities in these components increase risk to the information residing on them, thus increasing risks to users and owners of the information. In addition, the lack of awareness about these vulnerabilities also increases risk.Inappropriate disclosure of a vulnerability could not only delay the deployment of the vulnerability resolution but also give attackers hints to exploit it. That is why vulnerability disclosure should be carried out appropriately.Vulnerability disclosure is a process through which vendors and vulnerability finders may work cooperatively in finding solutions that reduce the risks associated with a vulnerability. It encompasses actions such as reporting, coordinating, and publishing information about a vulnerability and its resolution.The goals of vulnerability disclosure include the following:a) ensuring that identified vulnerabilities are addressed;b) minimizing the risk from vulnerabilities;c) providing users with sufficient information to evaluate risks from vulnerabilities to their systems; d) setting expectations to promote positive communication and coordination among involved parties.This International Standard provides guidelines for vendors to be included in their business processes when receiving information about potential vulnerabilities and distributing vulnerability resolution information.","1   ScopeThis International Standard gives guidelines for the disclosure of potential vulnerabilities in products and online services. This International Standard details the methods a vendor should use to address issues related to vulnerability disclosure. This International Standarda) provides guidelines for vendors on how to receive information about potential vulnerabilities in their products or online services,b) provides guidelines for vendors on how to disseminate resolution information about vulnerabilities in their products or online services,c) provides the information items that should be produced through the implementation of a vendor’s vulnerability disclosure process, andd) provides examples of content that should be included in the information items.This International Standard is applicable to vendors who respond to external reports of vulnerabilities in their products or online services.",ISO/IEC 29147:2014(en) -66,"As a result, Cyber.gov is creating a robust, innovative and holistic cyber security architecture design that mitigates modern threats (Asset Management, Configuration Management, Phishing, DDoS, Ransomware, Mobile, Cloud issues and more) by leveraging best practices and implementable solutions with minimal impact to workforce efficiency. It will not only addresses some of the issues of perimeter based defense, but also brings new technologies such as Software Defined Perimeter (SDP) tailored to the .Gov domain, while guiding CIOs and CISOs in selecting and implementing current best practices for 34 cyber security components. Cyber.gov will significantly improve the security and resiliency across the D/As. ",Information technology — Security techniques — Code of practice for information security controls,https://www.iso.org/obp/ui/#!iso:std:54533:en,"0 Introduction0.1 Background and contextThis International Standard is designed for organizations to use as a reference for selecting controls within the process of implementing an Information Security Management System (ISMS) based on ISO/IEC 27001[10] or as a guidance document for organizations implementing commonly accepted information security controls. This standard is also intended for use in developing industry- and organization-specific information security management guidelines, taking into consideration their specific information security risk environment(s).Organizations of all types and sizes (including public and private sector, commercial and non-profit) collect, process, store and transmit information in many forms including electronic, physical and verbal (e.g. conversations and presentations).The value of information goes beyond the written words, numbers and images: knowledge, concepts, ideas and brands are examples of intangible forms of information. In an interconnected world, information and related processes, systems, networks and personnel involved in their operation, handling and protection are assets that, like other important business assets, are valuable to an organization’s business and consequently deserve or require protection against various hazards.Assets are subject to both deliberate and accidental threats while the related processes, systems, networks and people have inherent vulnerabilities. Changes to business processes and systems or other external changes (such as new laws and regulations) may create new information security risks. Therefore, given the multitude of ways in which threats could take advantage of vulnerabilities to harm the organization, information security risks are always present. Effective information security reduces these risks by protecting the organization against threats and vulnerabilities, and then reduces impacts to its assets.Information security is achieved by implementing a suitable set of controls, including policies, processes, procedures, organizational structures and software and hardware functions. These controls need to be established, implemented, monitored, reviewed and improved, where necessary, to ensure that the specific security and business objectives of the organization are met. An ISMS such as that specified in ISO/IEC 27001[10] takes a holistic, coordinated view of the organization’s information security risks in order to implement a comprehensive suite of information security controls under the overall framework of a coherent management system.Many information systems have not been designed to be secure in the sense of ISO/IEC 27001[10] and this standard. The security that can be achieved through technical means is limited and should be supported by appropriate management and procedures. Identifying which controls should be in place requires careful planning and attention to detail. A successful ISMS requires support by all employees in the organization. It can also require participation from shareholders, suppliers or other external parties. Specialist advice from external parties can also be needed.In a more general sense, effective information security also assures management and other stakeholders that the organization’s assets are reasonably safe and protected against harm, thereby acting as a business enabler.0.2 Information security requirementsIt is essential that an organization identifies its security requirements. There are three main sources of security requirements:a) the assessment of risks to the organization, taking into account the organization’s overall business strategy and objectives. Through a risk assessment, threats to assets are identified, vulnerability to and likelihood of occurrence is evaluated and potential impact is estimated;b) the legal, statutory, regulatory and contractual requirements that an organization, its trading partners, contractors and service providers have to satisfy, and their socio-cultural environment;c) the set of principles, objectives and business requirements for information handling, processing, storing, communicating and archiving that an organization has developed to support its operations.Resources employed in implementing controls need to be balanced against the business harm likely to result from security issues in the absence of those controls. The results of a risk assessment will help guide and determine the appropriate management action and priorities for managing information security risks and for implementing controls selected to protect against these risks.ISO/IEC 27005[11] provides information security risk management guidance, including advice on risk assessment, risk treatment, risk acceptance, risk communication, risk monitoring and risk review.0.3 Selecting controlsControls can be selected from this standard or from other control sets, or new controls can be designed to meet specific needs as appropriate.The selection of controls is dependent upon organizational decisions based on the criteria for risk acceptance, risk treatment options and the general risk management approach applied to the organization, and should also be subject to all relevant national and international legislation and regulations. Control selection also depends on the manner in which controls interact to provide defence in depth.Some of the controls in this standard can be considered as guiding principles for information security management and applicable for most organizations. The controls are explained in more detail below along with implementation guidance. More information about selecting controls and other risk treatment options can be found in ISO/IEC 27005.[11]0.4 Developing your own guidelinesThis International Standard may be regarded as a starting point for developing organization-specific guidelines. Not all of the controls and guidance in this code of practice may be applicable. Furthermore, additional controls and guidelines not included in this standard may be required. When documents are developed containing additional guidelines or controls, it may be useful to include cross-references to clauses in this standard where applicable to facilitate compliance checking by auditors and business partners.0.5 Lifecycle considerationsInformation has a natural lifecycle, from creation and origination through storage, processing, use and transmission to its eventual destruction or decay. The value of, and risks to, assets may vary during their lifetime (e.g. unauthorized disclosure or theft of a company’s financial accounts is far less significant after they have been formally published) but information security remains important to some extent at all stages.Information systems have lifecycles within which they are conceived, specified, designed, developed, tested, implemented, used, maintained and eventually retired from service and disposed of. Information security should be taken into account at every stage. New system developments and changes to existing systems present opportunities for organizations to update and improve security controls, taking actual incidents and current and projected information security risks into account.0.6 Related standardsWhile this standard offers guidance on a broad range of information security controls that are commonly applied in many different organizations, the remaining standards in the ISO/IEC 27000 family provide complementary advice or requirements on other aspects of the overall process of managing information security.Refer to ISO/IEC 27000 for a general introduction to both ISMSs and the family of standards. ISO/IEC 27000 provides a glossary, formally defining most of the terms used throughout the ISO/IEC 27000 family of standards, and describes the scope and objectives for each member of the family.","1   ScopeThis International Standard gives guidelines for organizational information security standards and information security management practices including the selection, implementation and management of controls taking into consideration the organization’s information security risk environment(s).This International Standard is designed to be used by organizations that intend to:a) select controls within the process of implementing an Information Security Management System based on ISO/IEC 27001;[10]b) implement commonly accepted information security controls;c) develop their own information security management guidelines.",ISO/IEC 27002:2013(en) -67,"Recent core technology deliverables for FY 2012 include the SRI SIMON-based MDAS and the NRL Open Mongoose System. Other new solutions include new multi-INT Persistent Wide Area Suveillance/Precision Geo-Location Capabilities. This WAS (Wide Area Surveillance) capability is comprised of: _ algorithims to enable ship detection and generation of reports using NOAA HFR, DoD aerostat (air) radars, and shipboard commercial navigation radars. _ Multi-INT buoy extension with power generation _ Mobile terminal to produce timely ship detection service using commercial SAR/EO satellites _ Develop buoy-based and sea-floor acoustic detection technology _ Develop a 3G/4G cellular based smart phone application and new Class E AIS standard. Existing technology and infrastructure was foraged for PCSI. ",Ships and marine technology — Maritime standards list,https://www.iso.org/obp/ui/#!iso:std:36696:en,,"1   ScopeThis International Standard provides the list of existing maritime standards of ISO and eight (8) shipbuilding nations in the world (The People’s Republic of China, Germany, India, Japan, The Republic of Korea, Poland, Russian Federation and The United States of America) as of the year 2002 by classifying the maritime standards of the aforesaid organization and nations into the codes that correspond to the existing organization of subcommittees of ISO/TC 8 as specified hereunder.",ISO 15583:2005(en) -68,"Recent core technology deliverables for FY 2012 include the SRI SIMON-based MDAS and the NRL Open Mongoose System. Other new solutions include new multi-INT Persistent Wide Area Suveillance/Precision Geo-Location Capabilities. This WAS (Wide Area Surveillance) capability is comprised of: _ algorithims to enable ship detection and generation of reports using NOAA HFR, DoD aerostat (air) radars, and shipboard commercial navigation radars. _ Multi-INT buoy extension with power generation _ Mobile terminal to produce timely ship detection service using commercial SAR/EO satellites _ Develop buoy-based and sea-floor acoustic detection technology _ Develop a 3G/4G cellular based smart phone application and new Class E AIS standard. Existing technology and infrastructure was foraged for PCSI. ",Ships and marine technology — Maritime port facility security assessments and security plan development,https://www.iso.org/obp/ui/#!iso:std:46051:en,"IntroductionThis International Standard addresses the execution of marine port facility security assessments, marine port facility security plans (including countermeasures) and the skills and knowledge required of the personnel involved. This International Standard is designed to ensure that the completed work meets the requirements of the International Maritime Organization (IMO) International Ships and Port Facility Security Code (ISPS) and the appropriate maritime security practices that can be verified by an outside auditor. Since other ISO standards may address non-marine port facilities the word “marine” usually appears before port facilities in this standard. This standard is intended to address port facilities as defined in the ISPS.","1   Scope1.1   GeneralThis International Standard establishes a framework to assist marine port facilities in specifying the competence of personnel to conduct a marine port facility security assessment and to develop a security plan as required by the ISPS Code International Standard, conducting the marine port facility security assessment, and drafting/implementing a Port Facility Security Plan (PFSP).In addition, this International Standard establishes certain documentation requirements designed to ensure that the process used in performing the duties described above was recorded in a manner that would permit independent verification by a qualified and authorized agency (if the port facility has agreed to the review). It is not an objective of this International Standard to set requirements for a contracting government or designated authority in designating a Recognized Security Organization (RSO), or to impose the use of an outside service provider or other third parties to perform the marine port facility security assessment or security plan if the port facility personnel possess the expertise outlined in this specification. Ship operators may be informed that marine port facilities that use this document meet an industry-determined level of compliance with the ISPS Code.Port infrastructure that falls outside the security perimeter of a marine port facility might affect the security of the facility/ship interface. This International Standard does not address the requirements of the ISPS Code relative to such infrastructures. State governments have a duty to protect their populations and infrastructures from marine incidents occurring outside their marine port facilities. These duties are outside the scope of this International Standard.1.2   ConformanceWhile compliance with the ISPS Code is internationally mandated for all signatory countries, the use of this International Standard is voluntary. If a contracting government establishes requirements that preclude the use of this International Standard, local law takes precedence and compliance with this International Standard should not be claimed.",ISO 20858:2007(en) -69,"Recent core technology deliverables for FY 2012 include the SRI SIMON-based MDAS and the NRL Open Mongoose System. Other new solutions include new multi-INT Persistent Wide Area Suveillance/Precision Geo-Location Capabilities. This WAS (Wide Area Surveillance) capability is comprised of: _ algorithims to enable ship detection and generation of reports using NOAA HFR, DoD aerostat (air) radars, and shipboard commercial navigation radars. _ Multi-INT buoy extension with power generation _ Mobile terminal to produce timely ship detection service using commercial SAR/EO satellites _ Develop buoy-based and sea-floor acoustic detection technology _ Develop a 3G/4G cellular based smart phone application and new Class E AIS standard. Existing technology and infrastructure was foraged for PCSI. ",Ships and marine technology — Computer applications — General principles for the development and use of programmable electronic systems in marine applications,https://www.iso.org/obp/ui/#!iso:std:31619:en,"IntroductionSystems which include programmable electronic systems (PES) are not exact substitutes for the electromechanical systems and/or crew tasks which they replace. A new technology is involved, which can provide opportunities for integration of traditional system components (including crew tasks) and more complex behaviour. This allows increases in efficiency and safety through improved monitoring, better situational awareness on the bridge, etc. However, PES are complex products and, like all products, they can contain defects. These defects cannot be seen. Software does not respond to traditional engineering methods for the testing of soundness. The combination of complexity, replacement of a combination of mechanical and crew functions with computer hardware and software, and industry practice in developing and maintaining marine PES leads to a wide range of potential defects which cannot be guarded against by prescriptive standards.The use of a PES in the management, monitoring or control of a ship may have several effects:— potential to enhance the ability and efficiency of the crew;— changes in the organization of work through the automation of lower-level tasks;— integration of systems through use of several systems by one seafarer;— shift in the role of the crew towards the management of many linked, complex PES;— shift of the crew's perception of the ship to that presented by the interfaces of the PES;— layers of embedded and/or application software interposed between the crew and the ship;— physical interconnection of ship systems through the use of computer networks.The overall effect of the use of PES is that the ship becomes one total system of inter-linked PES and crew which work together to fulfil the operator's business goals for the ship. In order for this total system to be dependable, both the design of the PES and the management of its use have to support the safe and effective performance of the crew as a critical component of the total system. Such a human-centred approach has to be based on a thorough knowledge of the particular skills, working environment and tasks of the crew using the PES. The total system concept is described further in A.2.In the traditional approach to maritime safety, ship systems are built to and operated against precise, prescriptive standards. These standards were developed in response to feedback about incidents or risky behaviour of previous ship systems. This approach is appropriate for relatively simple systems in a time of slow technical innovation. However, suppliers and operators nowadays want to innovate with complex, new solutions. In addition, the base technologies for PES are evolving very quickly. The assurance of dependability in this case cannot rely on knowledge of previous systems. The solution is for the developer and operator to assess the risks from and to the particular ship, its systems, crew and its operating philosophy, and to address these specific risks in the design and operation of the PES. Components of the system can then either be re-designed or operated in such a way as to minimize these risks. The quality of construction, operation and maintenance of the system to be sure of the achievement of a required level of dependability of the PES is also defined.This International Standard is based on best practice in PES development as stated in existing marine, electrical and electronic, IT, ergonomics and safety standards. It is not intended to replace any of these standards. It presents a synoptic view of the requirements of these standards as a framework of principles for the development of dependable PES.","1   ScopeThis International Standard provides a set of mandatory principles, recommended criteria and associated guidance for the development and use of dependable marine programmable electronic systems for shipboard use. It applies to any shipboard equipment containing programmable elements which may affect the safe or efficient operation of the ship. It contains information for all parties involved in the specification, operation, maintenance and assessment of such systems. The principles and guidance in the document are largely based on requirements in national and International Standards. The source standards and their contribution to this International Standard are presented in the bibliography.NOTE This International Standard does not directly address performance, test or test results requirements associated with specific types of equipment or functions. In such instances existing application or component standards may be applied, e.g. IEC 60945, in respect of navigation and radio-communications equipment. The responsible body (e.g. National Administration, Classification Society or other contracted party) will determine the applicability of this International Standard, and its specific requirements where any potential conflict arises.",ISO 17894:2005(en) -70,"The SWAMP offers a no-cost, cloud-based, high throughput computing platform at mir-swamp.org that is capable of analyzing over 275 million lines of code each day. With this infrastructure, users can conduct a variety of tests on applications of any size in a timely manner. The SWAMP staff maintains and updates all tools and platforms available in the SWAMP, ensuring that users can focus on testing and not worry about the infrastructure necessary to support testing activities. The SWAMPs shared, continuous assurance facility simplifies integrating security into the classroom and software development life cycle by offering a marketplace of open-source and commercial software analysis tools to perform comprehensive security testing on your own applications. A library of public applications with known vulnerabilities is also provided for download, testing, and assessment. Research has shown that it is necessary to use more than one tool when testing a software package to ensure that secure coding practices were followed and that there are no vulnerabilities in the application. In the SWAMP, results from multiple testing tools are compiled into a single integrated viewer that presents identified weaknesses in a way that helps users prioritize and fix each error in the code. As weaknesses are addressed, software applications become more secure but should be reassessed to ensure that no new weaknesses were introduced during the remediation process or throughout the software development life cycle. New science and technology generated from this program is listed below: _ New analysis techniques for static code analysis through the STAMP project _ Improved testing and evaluation techniques for static analysis tools _ Unified Threat Management (UTM) system. This provides the capability for security professional to monitor and manage a wide range of security related applications and infrastructure through a single management environment. The key R&D center for this SWAMP is the Morgridge Institute of Research, where the testing tools and platforms are located. There are multiple projects and multiple contracts associated with this program, so there is no aggregate TRL level calculated for the SWA program as a whole. Projects may starts at different TRL levels, especially if they are leveraging previous work. ",Information technology — Programming languages — Guidance to avoiding vulnerabilities in programming languages through language selection and use,https://www.iso.org/obp/ui/#!iso:std:61457:en,"IntroductionAll programming languages contain constructs that are incompletely specified, exhibit undefined behaviour, are implementation-dependent, or are difficult to use correctly. The use of those constructs may therefore give rise to vulnerabilities, as a result of which, software programs can execute differently than intended by the writer. In some cases, these vulnerabilities can compromise the safety of a system or be exploited by attackers to compromise the security or privacy of a system.This Technical Report is intended to provide guidance spanning multiple programming languages, so that application developers will be better able to avoid the programming constructs that lead to vulnerabilities in software written in their chosen language and their attendant consequences. This guidance can also be used by developers to select source code evaluation tools that can discover and eliminate some constructs that could lead to vulnerabilities in their software or to select a programming language that avoids anticipated problems.It should be noted that this Technical Report is inherently incomplete. It is not possible to provide a complete list of programming language vulnerabilities because new weaknesses are discovered continually. Any such report can only describe those that have been found, characterized, and determined to have sufficient probability and consequence.Furthermore, to focus its limited resources, the working group developing this report decided to defer comprehensive treatment of several subject areas until future editions of the report. These subject areas include:• Object-oriented language features (although some simple issues related to inheritance are described in 6.43 Inheritance [RIP])• Numerical analysis (although some simple items regarding the use of floating point are described in 6.5 Floating-point Arithmetic [PLF])• Inter-language operability","1.   ScopeThis Technical Report specifies software programming language vulnerabilities to be avoided in the development of systems where assured behaviour is required for security, safety, mission-critical and business-critical software. In general, this guidance is applicable to the software developed, reviewed, or maintained for any application.Vulnerabilities are described in a generic manner that is applicable to a broad range of programming languages.",ISO/IEC TR 24772:2013(en) -71,"The SWAMP offers a no-cost, cloud-based, high throughput computing platform at mir-swamp.org that is capable of analyzing over 275 million lines of code each day. With this infrastructure, users can conduct a variety of tests on applications of any size in a timely manner. The SWAMP staff maintains and updates all tools and platforms available in the SWAMP, ensuring that users can focus on testing and not worry about the infrastructure necessary to support testing activities. The SWAMPs shared, continuous assurance facility simplifies integrating security into the classroom and software development life cycle by offering a marketplace of open-source and commercial software analysis tools to perform comprehensive security testing on your own applications. A library of public applications with known vulnerabilities is also provided for download, testing, and assessment. Research has shown that it is necessary to use more than one tool when testing a software package to ensure that secure coding practices were followed and that there are no vulnerabilities in the application. In the SWAMP, results from multiple testing tools are compiled into a single integrated viewer that presents identified weaknesses in a way that helps users prioritize and fix each error in the code. As weaknesses are addressed, software applications become more secure but should be reassessed to ensure that no new weaknesses were introduced during the remediation process or throughout the software development life cycle. New science and technology generated from this program is listed below: _ New analysis techniques for static code analysis through the STAMP project _ Improved testing and evaluation techniques for static analysis tools _ Unified Threat Management (UTM) system. This provides the capability for security professional to monitor and manage a wide range of security related applications and infrastructure through a single management environment. The key R&D center for this SWAMP is the Morgridge Institute of Research, where the testing tools and platforms are located. There are multiple projects and multiple contracts associated with this program, so there is no aggregate TRL level calculated for the SWA program as a whole. Projects may starts at different TRL levels, especially if they are leveraging previous work. ",Software Engineering — Guide to the software engineering body of knowledge (SWEBOK),https://www.iso.org/obp/ui/#!iso:std:67604:en,"IntroductionThe purpose of the Guide to the Software Engineering Body of Knowledge is to provide a consensually validated characterization of the bounds of the software engineering discipline and to provide a topical access to the Body of Knowledge supporting that discipline. The Body of Knowledge is subdivided into fifteen software engineering Knowledge Areas (KA) providing an outline of topics. The descriptions in the KAs are designed to discriminate among the various important concepts, permitting readers to find their way quickly to subjects of interest. Upon finding a subject, readers are referred to key papers or books selected because they succinctly present the knowledge.Publication of the 2004 version of this Guide to the Software Engineering Body of Knowledge (SWEBOK 2004)—adopted as ISO/IEC TR 19759:2005—was a major milestone in establishing software engineering as a recognized engineering discipline. The goal in developing this update to SWEBOK is to improve the currency, readability, consistency, and usability of the Guide. All knowledge areas (KAs) have been updated to reflect changes in software engineering since publication of SWEBOK 2004. Four new foundation KAs and a Software Engineering Professional Practices KA have been added. The Software Engineering Tools and Methods KA has been revised as Software Engineering Models and Methods. Software engineering tools is now a topic in each of the KAs. Three appendices provide the specifications for the KA description, an annotated set of relevant standards for each KA, and a listing of the references cited in the Guide.An emphasis on engineering practice leads the Guide toward a strong relationship with the normative literature. Most of the computer science, information technology and software engineering literature provides information useful to software engineers, but a relatively small portion is normative. A normative document prescribes what an engineer should do in a specified situation rather than providing information that might be helpful. The normative literature is validated by consensus formed among practitioners and is concentrated in standards and related documents. From the beginning, the SWEBOK project was conceived as having a strong relationship to the normative literature of software engineering. The two major standards bodies for software engineering (IEEE Computer Society Software and Systems Engineering Standards Committee and ISO/IEC JTC1/SC7) cooperated in the project.The Guide is oriented toward a variety of audiences, all over the world. It aims to serve public and private organizations in need of a consistent view of software engineering for defining education and training requirements, classifying jobs, developing performance evaluation policies or specifying software development tasks. It also addresses practicing, or managing, software engineers and the officials responsible for making public policy regarding licensing and professional guidelines. In addition, professional societies and educators defining the certification rules, accreditation policies for university curricula, and guidelines for professional practice will benefit from the SWEBOK Guide, as well as the students learning the software engineering profession and educators and trainers engaged in defining curricula and course content.",1   ScopeThis Technical report characterizes the boundaries of the software engineering discipline and provides topical access to the literature supporting that discipline.,ISO/IEC TR 19759:2015(en) -72,"The SWAMP offers a no-cost, cloud-based, high throughput computing platform at mir-swamp.org that is capable of analyzing over 275 million lines of code each day. With this infrastructure, users can conduct a variety of tests on applications of any size in a timely manner. The SWAMP staff maintains and updates all tools and platforms available in the SWAMP, ensuring that users can focus on testing and not worry about the infrastructure necessary to support testing activities. The SWAMPs shared, continuous assurance facility simplifies integrating security into the classroom and software development life cycle by offering a marketplace of open-source and commercial software analysis tools to perform comprehensive security testing on your own applications. A library of public applications with known vulnerabilities is also provided for download, testing, and assessment. Research has shown that it is necessary to use more than one tool when testing a software package to ensure that secure coding practices were followed and that there are no vulnerabilities in the application. In the SWAMP, results from multiple testing tools are compiled into a single integrated viewer that presents identified weaknesses in a way that helps users prioritize and fix each error in the code. As weaknesses are addressed, software applications become more secure but should be reassessed to ensure that no new weaknesses were introduced during the remediation process or throughout the software development life cycle. New science and technology generated from this program is listed below: _ New analysis techniques for static code analysis through the STAMP project _ Improved testing and evaluation techniques for static analysis tools _ Unified Threat Management (UTM) system. This provides the capability for security professional to monitor and manage a wide range of security related applications and infrastructure through a single management environment. The key R&D center for this SWAMP is the Morgridge Institute of Research, where the testing tools and platforms are located. There are multiple projects and multiple contracts associated with this program, so there is no aggregate TRL level calculated for the SWA program as a whole. Projects may starts at different TRL levels, especially if they are leveraging previous work. ",Information technology — Security techniques — Methodology for IT security evaluation,https://www.iso.org/obp/ui/#!iso:std:46412:en,"IntroductionThe target audience for this International Standard is primarily evaluators applying ISO/IEC 15408 and certifiers confirming evaluator actions; evaluation sponsors, developers, PP/ST authors and other parties interested in IT security are a secondary audience.This International Standard recognises that not all questions concerning IT security evaluation will be answered herein and that further interpretations will be needed. Individual schemes will determine how to handle such interpretations, although these can be subject to mutual recognition agreements. A list of methodology-related activities that can be handled by individual schemes can be found in Annex A.","1   ScopeThis International Standard is a companion document to the evaluation criteria for IT security defined in ISO/IEC 15408. It defines the minimum actions to be performed by an evaluator in order to conduct an ISO/IEC 15408 evaluation, using the criteria and evaluation evidence defined in ISO/IEC 15408.This International Standard does not define evaluator actions for certain high assurance ISO/IEC 15408 components, where there is as yet no generally agreed guidance.",ISO/IEC 18045:2008(en) -73,"The SWAMP offers a no-cost, cloud-based, high throughput computing platform at mir-swamp.org that is capable of analyzing over 275 million lines of code each day. With this infrastructure, users can conduct a variety of tests on applications of any size in a timely manner. The SWAMP staff maintains and updates all tools and platforms available in the SWAMP, ensuring that users can focus on testing and not worry about the infrastructure necessary to support testing activities. The SWAMPs shared, continuous assurance facility simplifies integrating security into the classroom and software development life cycle by offering a marketplace of open-source and commercial software analysis tools to perform comprehensive security testing on your own applications. A library of public applications with known vulnerabilities is also provided for download, testing, and assessment. Research has shown that it is necessary to use more than one tool when testing a software package to ensure that secure coding practices were followed and that there are no vulnerabilities in the application. In the SWAMP, results from multiple testing tools are compiled into a single integrated viewer that presents identified weaknesses in a way that helps users prioritize and fix each error in the code. As weaknesses are addressed, software applications become more secure but should be reassessed to ensure that no new weaknesses were introduced during the remediation process or throughout the software development life cycle. New science and technology generated from this program is listed below: _ New analysis techniques for static code analysis through the STAMP project _ Improved testing and evaluation techniques for static analysis tools _ Unified Threat Management (UTM) system. This provides the capability for security professional to monitor and manage a wide range of security related applications and infrastructure through a single management environment. The key R&D center for this SWAMP is the Morgridge Institute of Research, where the testing tools and platforms are located. There are multiple projects and multiple contracts associated with this program, so there is no aggregate TRL level calculated for the SWA program as a whole. Projects may starts at different TRL levels, especially if they are leveraging previous work. ",Information technology — Security techniques — Evaluation criteria for IT security — Part 3: Security assurance components,https://www.iso.org/obp/ui/#!iso:std:46413:en,"IntroductionSecurity assurance components, as defined in this part of ISO/IEC 15408, are the basis for the security assurance requirements expressed in a Protection Profile (PP) or a Security Target (ST).These requirements establish a standard way of expressing the assurance requirements for TOEs. This part of ISO/IEC 15408 catalogues the set of assurance components, families and classes. This part of ISO/IEC 15408 also defines evaluation criteria for PPs and STs and presents evaluation assurance levels that define the predefined ISO/IEC 15408 scale for rating assurance for Targets of Evaluation (TOEs), which is called the Evaluation Assurance Levels (EALs).The audience for this part of ISO/IEC 15408 includes consumers, developers, and evaluators of secure IT products. ISO/IEC 15408-1:2009, Clause 5 provides additional information on the target audience of ISO/IEC 15408, and on the use of ISO/IEC 15408 by the groups that comprise the target audience. These groups may use this part of ISO/IEC 15408 as follows:a) Consumers, who use this part of ISO/IEC 15408 when selecting components to express assurance requirements to satisfy the security objectives expressed in a PP or ST, determining required levels of security assurance of the TOE.b) Developers, who respond to actual or perceived consumer security requirements in constructing a TOE, reference this part of ISO/IEC 15408 when interpreting statements of assurance requirements and determining assurance approaches of TOEs.c) Evaluators, who use the assurance requirements defined in this part of ISO/IEC 15408 as a mandatory statement of evaluation criteria when determining the assurance of TOEs and when evaluating PPs and STs.","1   ScopeThis part of ISO/IEC 15408 defines the assurance requirements of ISO/IEC 15408. It includes the evaluation assurance levels (EALs) that define a scale for measuring assurance for component Targets of Evaluation (TOEs), the composed assurance packages (CAPs) that define a scale for measuring assurance for composed TOEs, the individual assurance components from which the assurance levels and packages are composed, and the criteria for evaluation of Protection Profiles (PPs) and Security Targets (STs).",ISO/IEC 15408-3:2008(en) diff --git a/crawl_scripts/iso/iso-gt.csv b/crawl_scripts/iso/iso-gt.csv deleted file mode 100644 index 132fead..0000000 --- a/crawl_scripts/iso/iso-gt.csv +++ /dev/null @@ -1,15 +0,0 @@ -Index,SoW,Standards -1,"The premise of the NGCI Apex program is to discover, develop, and transition new prototype technologies, designed to protect the overall critical infrastructure of the financial sector. _New technologies will be deployed to identify, protect, detect, respond, and recover, from a wide range of evolving cyber threats across five identified asset classes: devices, applications, networks, data, and people. _These technologies will be monitored to ensure they remain effective and relevant in the face of evolving threats. _The CART has developed a matrixed approach to help identify the areas of focus for the NGCI Apex program (see Figure 8 below).","https://www.iso.org/standard/56742.html https://www.iso.org/standard/51986.html https://www.iso.org/standard/68091.html https://www.iso.org/standard/43757.html https://www.iso.org/standard/64143.html https://www.iso.org/standard/42508.html https://www.iso.org/standard/62777.html" -3,"When the Cyber Apex Consortium contractor begins representational (open-source) architecture testing and operational architecture testing, using institution-specific parameters, (see Figure 10), different risk factors will apply. Poorly managed software integration for testing purposes has the potential to generate setbacks. Improper testing and evaluation methods could result in a cyber technology product not fully ready for deployment. The same is true of inaccurate threat modeling. _Not having deployable-ready technologies available to the customer can lead to schedule delays. _Sub-standard software performance may have the same effect. Since the NGCI Apex program will be broken up into distinct project efforts, some risks may be project dependent. ","https://www.iso.org/standard/43170.html https://www.iso.org/standard/51986.html https://www.iso.org/standard/29286.html " -3,"Currently, the Department of Homeland Security (DHS) and the United States Coast Guard (USCG) do not have sufficient access to surveillance sensors that provide Maritime Domain Awareness (MDA) to support USCG mission needs, nor provide coverage of remote regions. In response, the DHS Science and Technology Directorate (S&T) created The Port and Surveillance Program, with Advanced Sensor Analytics Project (ASAP) a project within the Program, which is a technology demonstration that taps the burgeoning commercial space market and government investments in fusion and analytics, to provide a capability that will enhance MDA across all of the USCG mission space. The ASAP project consists of 3 subprojects: Polar Scout, Data Analytics, and Arctic Communications. Polar Scout: Polar Scout involves the identification and development of space-based sensor feeds. The focus is identifying and leveraging existing sensors (both commercial and government) and procuring new sensors to fill MDA gaps. Polar Scout consists of an integrated system of United States Government (USG)-owned sensors (6U CubeSats) and commercial sensors (HE360 CubeSats). These sensors will be tasked to collect maritime data in support of DHS missions. The collected data is fused with weather, Automatic Identification System (AIS), air-tracks and other data to provide the DHS and the USCG with maritime situational awareness. Based on the fused information, the Polar Scout system could then request or gather information (e.g. imagery data) from other established data sources. The information received and fused within Polar Scout is then provided as input to the Data Analytics to perform additional analysis. Data Analytics: Data Analytics provides sensor exploitation enhancement of tracking, tipping, and queuing of MDA relevant objects, to support the Coast Guard and other DHS missions. The intent is to ensure that analytics performed will provide S&T with a deeper understanding of commercial space-based data sets and corresponding data correlation, predictive and prescriptive analytics.","https://www.iso.org/standard/66187.html https://www.iso.org/standard/68305.html https://www.iso.org/standard/60496.html https://www.iso.org/standard/66008.html https://www.iso.org/standard/61902.html https://www.iso.org/standard/41172.html https://www.iso.org/standard/50635.html https://www.iso.org/standard/43529.html https://www.iso.org/standard/29775.html https://www.iso.org/standard/39229.html https://www.iso.org/standard/43041.html https://www.iso.org/standard/69837.html https://www.iso.org/standard/32581.html https://www.iso.org/standard/60080.html https://www.iso.org/standard/57104.html https://www.iso.org/standard/64768.html https://www.iso.org/standard/56113.html https://www.iso.org/standard/51789.html https://www.iso.org/standard/32546.html https://www.iso.org/standard/39983.html https://www.iso.org/standard/27853.html https://www.iso.org/standard/67311.html" -3,"Polar Scout: The successful execution of this Polar Scout project will result in a Arctic MDA demonstrations that demonstrates SAR missions employing CubeSats to detect and geolocate 406 MHz emergency beacons. The Data Analytics project will provide predictive analytics with the ability to process information from various data sources including space-based, airborne, and ground-based. Additionally, ASAP is an open architecture (e.g., open APIs and data models) that will enable rapid integration of these solution components into Components existing systems across varied DHS missions by leveraging the Integrated Maritime Domain Enterprise (IMDE/CSS) and DOD/J39's Project DataHub.","https://www.iso.org/standard/56113.html https://www.iso.org/standard/74032.html https://www.iso.org/standard/51789.html " -3,"The major components of the ASAP system are listed below. Metric Name Current Capability Threshold Objective Project Objective Current Status 406 MHz Emergency Beacon without GPS Time-to-detection Average via COSPAS-SARSAT: 46 min Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS Time-to-geolocation Average via COSPAS-SARSAT: 90 min Average extrapolated from project T&E: 60 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Time to provide location as a web service: less than 1 minute from geolocation Average extrapolated from project T&E: 30 min (""Average extrapolated"" means estimate for a full constellation based on T&E results of project) Waiting on T&E in 2Q and 3Q FY18 406 MHz Emergency Beacon without GPS geolocation accuracy Average via COSPAS-SARSAT Doppler method: within 5 km Average via T&E: 10 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Average via T&E: 5 km (location accuracy less important than time-to-geolocation for maritime Arctic SAR; tasked rescue assets have direction-finding capabilities) Waiting on T&E in 2Q and 3Q FY18 Channel 16 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and playback channel 16 transmissions (i) Also automatically identify distress words (e.g., mayday, pan-pan), (ii) Display detection region on CG COP Waiting on T&E in 2Q and 3Q FY18 Channel 70 detection distress detection beyond 20 nmi of coast N/A from Rescue 21 or COSPAS-SARSAT Detect, record, and display channel 70 digital selective calling transmissions (i) Display detection region on CG COP (ii) Decode DSC message and display any embedded location information on CG COP Waiting on T&E in 2Q and 3Q FY18 26 September 2016 Page 20 of 22 An open architecture, open APIs, and an open data model will be central to the design of the ASAP processing node. The ASAP processing node will maintain a set of interfaces (APIs) that are meant to ensure interoperability between data systems across the various suite of sensors and sensor types. This open architecture will enable the ASAP software to interoperate with other components existing systems. As mentioned previously, the ASAP open framework will consist of standards for three different levels: Infrastructure Services, Common Services, and Mission Services. o IMDE/CSS is a DHS S&T program that will be leveraged by ASAP and will be part of the ASAP open architecture. IMDE/CSS will demonstrate an enterprise-wide system of maritime nodes providing streams of near real-time sensor data and access to non-sensor data including information, analysis, and archives. This system will access, process, and fuse data from mission feeds and diversified sensor sources and make it available through a web-based portal to all system users. IMDE/CSS is built on a scalable and _pluggable micro-service architecture with robust core services to include logging, identity management, data entitlement, and federated discovery. o ASAP plans to integrate onto IMDE in a later phase of the project. Polar Scout is not planned to integrate onto IMDE, however the Data Analytics does plan to integrate onto IMDE. The timeline (initially or at a later phase) of integrating onto IMDE is still under review. Identification and development of space-based sensor feeds, where the focus is the identification and leveraging of existing commercial and government sensors; and procuring new sensors to fill MDA gaps. There are two variants of CubeSats and SmallSats that are under development by HE360 and USAF ORS. o ORS: DHS S&T has executed an MOU with USAF ORS to collaborate in the demonstration of an on-orbit capability to collect relevant data in support of the DHS mission and the ORS mission to enable rapid low-cost space capability. ORS has developed a flexible, reusable, government-owned design for _6U CubeSats. ORS employs autonomous manufacturing, modular open system architecture, and open standards. ORS will demonstrate autonomous _open manufacturing of low volume, high-value assets and autonomous digital techniques to provide mission assurance. DHS plans to leverage a 2-ball ORS constellation to perform RF signal detection in support of the USCG mission. o HE360: HE360 is a commercial company focused on space-based sensing of radio-frequency (RF) signals and analytic applications of such data sets. The company intends to launch a constellation of satellites (3) able to perform RF signal detection, geolocation, and identification in early 2017. HE360 is under contract with DHS S&T to support on-orbit testing, evaluations, and integration of their systems with Mobile CubeSat Command and Control (MC3) System o MC3 System: The MC3 System is a network of fully autonomous ground stations. ASAP will purchase two MC3 ground stations and is working with the USCGs Rapid Development Program to determine locations where MC3 will be installed. 26 September 2016 Page 21 of 22 MC3 will be integrated into the USCGs Rescue Operations Centers, supporting Arctic MDA including search-and-rescue. Through collaboration with ORS, HE360 and MC3, DHS S&T and USCG will demonstrate, test, and evaluate detecting emergency distress beacons from space utilizing multiple on-orbit constellations of CubeSat systems. The space-based sensor data will be incorporated into predictive analytics and fusion tools to improve the arctic MDA mission area. ","https://www.iso.org/standard/32572.html https://www.iso.org/standard/69209.html https://www.iso.org/standard/69208.html https://www.iso.org/standard/73364.html https://www.iso.org/standard/61905.html https://www.iso.org/standard/55237.html https://www.iso.org/standard/55238.html https://www.iso.org/standard/57914.html https://www.iso.org/standard/57915.html https://www.iso.org/standard/57916.html https://www.iso.org/standard/45167.html https://www.iso.org/standard/74416.html " -3,"3.3.1 Polar Scout Trade Space Analysis Four broad range of solutions were considered in the ASAP trade space analysis: terrestrial, maritime, airborne, and space-based. To assess the alternatives, the trade study examined a 200 by 200 NMI area 100 NM north of Barrow, Alaska, and the entire Juneau Alaska region. Each option was assessed by its ability to provide continuous coverage (24 hours per day, seven days per week) and provide a minimum of a 30 minute revisit time. Each alternative was assessed in the following areas: Platform acquisition cost Access to area of interest Technical maturity/feasibility 3.3.1.1 Preferred Alternative Within each solution category (terrestrial, maritime, airborne, and space-based) many potential configurations were constructed and assessed. The space-based solutions using CubeSats proved to be the optimal solution in the ability to provide a 30-minute revisit and were the least expensive alternatives. The best land-based, airborne, and maritime solutions were cost-prohibitive or had insufficient range when compared to the CubeSat space-based solution. 3.3.1.2 Logistics Considerations Logistics were not taken into consideration in the trade space analysis since other factors disqualified the non-CubeSat alternatives due to their high cost of acquiring the asset, access to coverage area, and technical maturity. 3.3.1.3 Polar Scout Technical Approach 3.3.1.3.1 Design, Development, and Integration Approach Polar Scout is leveraging design and development activities performed under other government or commercial contracts. The 6U CubeSats have been under development for approximately 5 years by ORS. When DHS decided to leverage the ORS 6U CubeSats, the CubeSats had already passed their CDR milestone approximately two years prior. The milestones 26 September 2016 Page 23 of 22 monitored by DHS will be bus and payload integration activities, bus and payload test activities (e.g. thermal, environmental, etc) and ground processing activities. DHS is leveraging a payload design (by Rincon) that is currently in operations on another CubeSat. This payload will be integrated into the 6U CubeSats. The milestones monitored by DHS will be payload fabrication, payload and bus integration, payload test activities (e.g. thermal, environmental, etc), and payload processing activities. The ASAP Program Manager has decision authority of all 6U flight build, payload integration and test activities, and deviations that are directly related to the operations of the 6U CubeSats. Polar Scout is leveraging the HE360 commercial development effort to acquire additional EPIRB data. For the HE360 contract, the ASAP Program Manager has decision authority for only those design, development, and test activities related to the collection and processing of EPRIB data. A portion of the Analytics contract (RadiantBlue/HumanGeo) will be for RadiantBlue/HumanGeo to perform as the ground integrator for Polar Scout. RadiantBlue/HumanGeo will integrate the EPIRB data from both HE360 and the 6U and provide that data to the USCG and NOAA as agreed upon. To reduce cost and to further separate the Polar Scout and Analytics efforts, the ASAP project is also investigating the possibility of having Rincon integrate the EPRIB data from both the 6Us and HE360. 3.3.1.3.2 Communication Approach The ASAP Program Manager has stood up several IPTs to monitor the Polar Scout activities. Stakeholders for the 6U CubeSat effort meet weekly in the Technical IPT and the Ground IPT. Through these two IPTs, the Polar Scout Program Manager gains insight into the status, issues, risks, and resolution of challenges. The ASAP Program Manager also has a bi-weekly technical and budget meeting with the 6U prime contractor. In addition the ASAP Program Manager conducts a status meeting with Aerospace to review project status, actions, risks, and open items. For the HE360 contract, HE360 provides monthly status and budget reports. TEMs are held approximately monthly to review the status, issues, risks, and resolution of challenges. 3.3.2 Analytics For the RadiantBlue/HumanGeo contract, the Program Manager meets with the team bi-weekly to review the status, issues, risks, and resolution of challenges. These meeting just began during the month of March 2017. ",https://www.iso.org/standard/46099.html -3,"Algorithm data package refers to computer software, executable on a Linux, Unix, or Windows-based computer system, that implements the APID algorithm and contains: o An executable binary file that contains the applications main entry point and any code that was statically linked to the application target; o Resource files and software libraries necessary for the execution of the executable file; and o Computer software documentation corresponding to the use, operation, and maintenance of the application. Application Program Interface refers to computer software documentation describing how software components may interact with other software components. It details, in human-readable format, the expected behavior of software libraries. It may contain the set of public methods, variables used as arguments, and return values for public methods. It shall contain a set of protocols, routines, and tools necessary to build application software interacting with the computer software for which the API was written. ","https://www.iso.org/standard/43073.html https://www.iso.org/standard/43070.html https://www.iso.org/standard/43090.html https://www.iso.org/standard/43071.html https://www.iso.org/committee/45202/x/catalogue/ https://www.iso.org/standard/61507.html " -3,"DHS S&T EXD is interested in high-impact approaches which can be retrofitted into existing EDS baselines as well as innovations in EDS concept development. Recent technological developments which are expected to impact critical metrics such as probability of detection (Pd) and probability of false alarm (Pfa) include new improvised explosive threat signature technology, compressive measurement, coded apertures, new or innovative sources and detectors including advanced detection, and novel classification and reconstruction algorithms. The work outlined here focuses on information theoretic analysis of security data which implements high impact approaches, as well as applying the tools of optimal detection, estimation, pattern recognition, machine learning, and information theory.","https://www.iso.org/standard/6480.html https://www.iso.org/standard/40715.html https://www.iso.org/standard/43897.html https://www.iso.org/standard/52075.html " -3,"Preliminary Design Summary _ The contractor shall proceed with the development of a preliminary design based on the outcome of the System Concept Review. The contractor shall begin to refine the system specifications down to the software module level. All software modules shall be described functionally with clearly defined inputs and outputs. The contractor shall complete a preliminary design and hold a Preliminary Design Review (PDR) within six (6) months of the contract award date. Subtask 2.1 _ System Concept Review (SCR) _ At the beginning of the contract the contractor shall have a requirements review with the DHS COR to establish the set of weapons to focus on for the algorithm development and to establish detection and false alarm goals. The contractor shall provide the prototype algorithm results at the time of the SCR review so that the decision of weapon priorities can factor in how difficult each weapon is to detect. The contractor shall coordinate with DHS to schedule a SCR meeting. The contractor shall prepare and submit to the DHS COR the proposed agenda and preliminary algorithm results ten (10) business days prior to the meeting and an update at the meeting. The contractor shall prepare and submit the minutes of the meeting to the DHS S&T COR within five (5) business days after the meeting. Subtask 2.2 _ Data Collection Subtask 2.2.1 _ Obtain Items _ Based on the discussion with DHS from the system concept review subtask, a list of prohibited items to be used for data collection will be defined. The items will be purchased by the contractor for scanning at Transportation Security Laboratory (TSL) in Atlantic City, NJ or an alternate site. Subtask 2.2.2 _ Data Collection Plan _ Based on the discussion with DHS from the system concept review subtasks, the contractor shall prepare a data collection plan. This plan shall include key image features that are to be collected as well as the methodology for scanning each prohibited item. This includes planned concealment strategies and bag configurations. The contractor shall also prepare an outline for the data collection report describing data to be provided after the data collection subtasks (subtasks 2.2.3, 2.2.4, 2.2.5) have been completed. Subtask 2.2.3 _ Collect Data _ The contractor will conduct the data collection at the contractor site and offsite as necessary per the data collection plan. Offsite collection is assumed at the TSL. The offsite data collection is planned for one week. The contractor shall ship any necessary equipment, install it for one week of use, and de-install and return the equipment to the contractors facilities at the conclusion of data collection. Subtask 2.2.4 _ Data Truthing _ The contractor shall review the collected data to identify and mark the threat items. Subtask 2.2.5 _ Prepare and Transmit Data Collection Report _ The Contractor shall document the items scanned and the bag, concealment, and content information. This report shall be delivered electronically to the DHS COR. Subtask 2.3 _ Image Analysis and Feature Identification _ The images collected will be scored using the current algorithm. The images where the threat is not detected will be examined to identify their unique features and to determine the potential strategies for detection. Subtask 2.4 _ PDR _ The contractor shall hold a Preliminary Design Review (PDR), within six (6) months of contract award. PDR materials shall be delivered ten (10) business days prior to PDR to the DHS S&T COR along with specifications and drawings. Approval of the PDR deliverables by the DHS S&T COR will be required prior to PDR. As part of the PDR deliverables, the contractor shall propose a system prototype baseline to include: ","https://www.iso.org/standard/62286.html https://www.iso.org/standard/71256.html https://www.iso.org/standard/33733.html https://www.iso.org/standard/41448.html https://www.iso.org/standard/63700.html https://www.iso.org/standard/43046.html https://www.iso.org/standard/54993.html " -3,"Current airport screening protocols rely on identification cards such as drivers licenses to perform identity verification at TSA checkpoints. In the future, ensuring identity could be even more important if a substantial fraction of the flying public goes through an expedited screening protocol based on information (e.g., travel patterns) associated with passenger identity. In addition, more adaptive security protocols, in which checked or carry-on baggage screening protocols are closely linked to passenger risk, would require mechanisms for high-confidence association between passengers and their bags. In this task, AF-MIT/LL will conduct a study of existing and feasible near-term identity verification and correlation methods in order to assess advantages and projected vulnerabilities with respect to potential _screening at speed checkpoint protocols. Components that will be considered include credential authentication technologies, standoff biometrics, scan-able unique identifiers, and the underlying software architecture and databases required to manage identity-related information. AF-MIT/LL will perform limited implementation to support the analysis; for instance, evaluation of low-fidelity face matching to verify identity across multiple passenger visits to the same airport may require some testing with actual face images extracted from surveillance video at a range of resolutions. The output of this task will be a set of recommendations for the use of identity verification and correlation mechanisms, and an identification of near-term development efforts required to fill capability gaps. ","https://www.iso.org/standard/50867.html https://www.iso.org/standard/63637.html" -3,"DHS S&T is has a variety of projects supporting the development of next-generation aviation security capabilities as part of its APEX Screening-at-Speed program. Several of those efforts will utilize an open architecture and allow integration with 3rd-party party capabilities. DHS S&T is seeking the following from Sandia OTAP project to further its APEX program: 1. Further Development of OPSL to support AIT modularization to include third-party algorithms supporting threat detection (including ATR Reconstruction algorithms). 2. Development of a standardized data format to structure data from AIT scans. The intent of the formatting effort is to ensure that third-parties have a standardized, non-proprietary way to access all levels of data from AIT scans as opposed to being limited to post-reconstruction, proprietary data. a. (Optional) Accelerate the development of an _A-A data format for CT machines to enable greater access to pre-reconstruction data. The technical lessons learned and progress from the CT effort already underway with the OTAP project will directly inform and facilitate the AIT data format effort. 3. Support further development of the MRAD algorithm development environment to support rapid test and evaluation (T&E) of AIT ATR algorithms. a. (Optional) Accelerate the development of third-party CT ATR and Reconstruction algorithms on the OTAP program to mature the ATR development and T&E of AIT algorithms. ","https://www.iso.org/standard/61457.html https://www.iso.org/standard/43351.html https://www.iso.org/standard/67604.html https://www.iso.org/standard/50251.html https://www.iso.org/standard/58046.html https://www.iso.org/standard/72941.html " -3,"As a result, Cyber.gov is creating a robust, innovative and holistic cyber security architecture design that mitigates modern threats (Asset Management, Configuration Management, Phishing, DDoS, Ransomware, Mobile, Cloud issues and more) by leveraging best practices and implementable solutions with minimal impact to workforce efficiency. It will not only addresses some of the issues of perimeter based defense, but also brings new technologies such as Software Defined Perimeter (SDP) tailored to the .Gov domain, while guiding CIOs and CISOs in selecting and implementing current best practices for 34 cyber security components. Cyber.gov will significantly improve the security and resiliency across the D/As. ","https://www.iso.org/standard/44375.html https://www.iso.org/standard/56889.html https://www.iso.org/standard/56742.html https://www.iso.org/standard/45170.html https://www.iso.org/standard/54533.html" -3,"Recent core technology deliverables for FY 2012 include the SRI SIMON-based MDAS and the NRL Open Mongoose System. Other new solutions include new multi-INT Persistent Wide Area Suveillance/Precision Geo-Location Capabilities. This WAS (Wide Area Surveillance) capability is comprised of: _ algorithims to enable ship detection and generation of reports using NOAA HFR, DoD aerostat (air) radars, and shipboard commercial navigation radars. _ Multi-INT buoy extension with power generation _ Mobile terminal to produce timely ship detection service using commercial SAR/EO satellites _ Develop buoy-based and sea-floor acoustic detection technology _ Develop a 3G/4G cellular based smart phone application and new Class E AIS standard. Existing technology and infrastructure was foraged for PCSI. ","https://www.iso.org/standard/36696.html https://www.iso.org/standard/46051.html https://www.iso.org/standard/31619.html" -3,"The SWAMP offers a no-cost, cloud-based, high throughput computing platform at mir-swamp.org that is capable of analyzing over 275 million lines of code each day. With this infrastructure, users can conduct a variety of tests on applications of any size in a timely manner. The SWAMP staff maintains and updates all tools and platforms available in the SWAMP, ensuring that users can focus on testing and not worry about the infrastructure necessary to support testing activities. The SWAMPs shared, continuous assurance facility simplifies integrating security into the classroom and software development life cycle by offering a marketplace of open-source and commercial software analysis tools to perform comprehensive security testing on your own applications. A library of public applications with known vulnerabilities is also provided for download, testing, and assessment. Research has shown that it is necessary to use more than one tool when testing a software package to ensure that secure coding practices were followed and that there are no vulnerabilities in the application. In the SWAMP, results from multiple testing tools are compiled into a single integrated viewer that presents identified weaknesses in a way that helps users prioritize and fix each error in the code. As weaknesses are addressed, software applications become more secure but should be reassessed to ensure that no new weaknesses were introduced during the remediation process or throughout the software development life cycle. New science and technology generated from this program is listed below: _ New analysis techniques for static code analysis through the STAMP project _ Improved testing and evaluation techniques for static analysis tools _ Unified Threat Management (UTM) system. This provides the capability for security professional to monitor and manage a wide range of security related applications and infrastructure through a single management environment. The key R&D center for this SWAMP is the Morgridge Institute of Research, where the testing tools and platforms are located. There are multiple projects and multiple contracts associated with this program, so there is no aggregate TRL level calculated for the SWA program as a whole. Projects may starts at different TRL levels, especially if they are leveraging previous work. ","https://www.iso.org/standard/61457.html https://www.iso.org/standard/67604.html https://www.iso.org/standard/46412.html https://www.iso.org/standard/46413.html" \ No newline at end of file diff --git a/crawl_scripts/iso/iso_previewpage.py b/crawl_scripts/iso/iso_previewpage.py deleted file mode 100644 index 593be03..0000000 --- a/crawl_scripts/iso/iso_previewpage.py +++ /dev/null @@ -1,221 +0,0 @@ -import signal -import traceback -import pandas as pd -from selenium import webdriver -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC -from selenium.webdriver.common.by import By -from bs4 import BeautifulSoup - - - -phantomjs_exec_path='/usr/local/bin/phantomjs' - -def quitdriver(driver): - try: - driver.service.process.send_signal(signal.SIGTERM) - driver.quit() - # print 'driver quit successfully!' - return 'done' - except: - error = traceback.format_exc() - print 'error quitting',error - return 'error: quitting the driver ' + str(error) - -def featchtext(url): - - error = '' - driver='' - - try: - driver = webdriver.PhantomJS( - executable_path=phantomjs_exec_path) # or add to your PATH - driver.set_page_load_timeout(5) # seconds - - driver.maximize_window() - driver.get(url) - driver.page_source - elm = driver.find_element_by_xpath('./*') - text = elm.text - quitdriver(driver) - return text,error - - except: - error = traceback.format_exc() - if driver!='': - quitdriver(driver) - return '',error - - -def fetchpage(url): - driver='' - try: - driver = webdriver.PhantomJS( - executable_path=phantomjs_exec_path) - # driver=webdriver.Chrome(executable_path='/Users/asitangm/Desktop/current/chromedriver') - # driver.set_page_load_timeout(20) - driver.get(url) - # print 'got page' - return driver - - except: - error = traceback.format_exc() - print error - if driver!='': - quitdriver(driver) - return '' - -def getFields(standardurl): - - fields = ['id', 'title', 'introduction', 'scope', 'scope_init'] - fields = map(unicode, fields) - allinfo = dict(zip(fields, ['','','','',''])) - - - errors=[] - driver = fetchpage(standardurl) - - if driver == '': - errors.append('can\'t get the standard page!') - return errors, allinfo - - id='' - title='' - url='' - - try: - heading = driver.find_element_by_xpath( - '//div[@class="heading-condensed"]') - - id=heading.find_element_by_xpath( - '//*[@itemprop="name"]').text - - allinfo['id']=id - - title=heading.find_element_by_xpath( - '//*[@itemprop="description"]').text - - allinfo['title']=title - - preview=heading.find_element_by_xpath( - '//a[@class="btn btn-default"]') - - url = preview.get_attribute("href") - - generalinfo=driver.find_element_by_xpath( - '//div[@class="col-md-7"]') - - scope_init=generalinfo.find_element_by_xpath( - '//div[@itemprop="description"]').text - - allinfo['scope_init']=scope_init - generalinfo = generalinfo.find_element_by_xpath( - '//ul[@class="refine"]').text - - generalinfo={info.split(':')[0]:info.split(':')[1] for info in generalinfo.split('\n')} - allinfo.update(generalinfo) - - - except: - quitdriver(driver) - errors.append('no preview page found') - if url=='': - return errors,allinfo - - - quitdriver(driver) - - # fecthing the preview page - driver = fetchpage(url) - - try: - WebDriverWait(driver, 5).until( - EC.presence_of_element_located((By.XPATH, '//div[@class="v-label v-widget h2 v-label-h2 v-label-undef-w"]')) - ) - except: - quitdriver(driver) - errors.append('preview page did not load') - return errors,allinfo - - - # ele=driver.find_element_by_xpath('//div[@class="v-slot v-slot-toggle"]') - # ele.click() - - try: - if id=='': - ele = driver.find_element_by_xpath('//div[@class="v-label v-widget h2 v-label-h2 v-label-undef-w"]') - id = ele.text - allinfo['id']=id - if title=='': - ele = driver.find_element_by_xpath('//div[@class="v-label v-widget std-title v-label-std-title v-has-width"]') - title = ele.text - allinfo['title'] = title - except: - error = traceback.format_exc() - print error - - try: - soup = BeautifulSoup(driver.page_source, "lxml") - except: - error = traceback.format_exc() - errors.append(error) - - quitdriver(driver) - return errors,allinfo - - - - try: - children = soup.find('div', {'class': 'sts-standard'}).findChildren(recursive=False) - - for i in range(3): - if 'intro' in children[i]['id']: - introduction = children[i].text - allinfo['introduction']=introduction - - elif children[i]['id'][-1] == '1': - scope = children[i].text - allinfo['scope']=scope - - - except: - error = traceback.format_exc() - errors.append(error) - - - quitdriver(driver) - return errors,allinfo - - - -# test example -# errors,fileds= getFields('https://www.iso.org/standard/51765.html') -# print fileds -# print errors - -df=pd.read_csv('strds.csv',index_col=0) - -urls=set(df['url']) -print len(urls) - - -tempwrite=open('gt_write','w') -errorwrite=open('refetch','w') - -for i,url in enumerate(list(urls)): - try: - errors,fields=getFields(url) - print str(i), url - errorwrite.write(str(i)+' '+ url+' '+str(errors)+'\n') - errorwrite.flush() - except: - print i, url, traceback.format_exc() - errorwrite.write('FATAL: '+str(i)+' '+ url+' '+traceback.format_exc()+'\n') - errorwrite.flush() - - - - tempwrite.write(url+' '+str(fields)+'\n') - tempwrite.flush() - - diff --git a/crawl_scripts/iso/strds.csv b/crawl_scripts/iso/strds.csv deleted file mode 100644 index 28c967e..0000000 --- a/crawl_scripts/iso/strds.csv +++ /dev/null @@ -1,30863 +0,0 @@ -id,url,blah,blah,blah,blah -ISO 704:2009,https://www.iso.org/standard/38109.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO 860:2007,https://www.iso.org/standard/40130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO/DIS 1087,https://www.iso.org/standard/62330.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO 1087-1:2000,https://www.iso.org/standard/20057.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO 1951:2007,https://www.iso.org/standard/36609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 10241-1:2011,https://www.iso.org/standard/40362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 10241-2:2012,https://www.iso.org/standard/43414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO/TS 11669:2012,https://www.iso.org/standard/50687.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 12199:2000,https://www.iso.org/standard/33300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 12615:2004,https://www.iso.org/standard/40359.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO/CD 12620,https://www.iso.org/standard/69550.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO 13611:2014,https://www.iso.org/standard/54082.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 15188:2001,https://www.iso.org/standard/26698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 16642:2017,https://www.iso.org/standard/56063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO 17100:2015,https://www.iso.org/standard/59149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 17100:2015/Amd 1:2017,https://www.iso.org/standard/71047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO/FDIS 17117-1,https://www.iso.org/standard/61979.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 18158:2016,https://www.iso.org/standard/61638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 18841:2018,https://www.iso.org/standard/63544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO/DIS 20228.2,https://www.iso.org/standard/67327.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO/CD 20771,https://www.iso.org/standard/69032.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 22128:2008,https://www.iso.org/standard/34882.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 22274:2013,https://www.iso.org/standard/36173.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO 23185:2009,https://www.iso.org/standard/50825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 24156-1:2014,https://www.iso.org/standard/57420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO 24611:2012,https://www.iso.org/standard/51934.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24612:2012,https://www.iso.org/standard/37326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24613:2008,https://www.iso.org/standard/37327.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO/DIS 24613-1,https://www.iso.org/standard/68516.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24615-1:2014,https://www.iso.org/standard/62508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO/PRF 24615-2,https://www.iso.org/standard/62491.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24616:2012,https://www.iso.org/standard/37330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24617-1:2012,https://www.iso.org/standard/37331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24617-2:2012,https://www.iso.org/standard/51967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24617-4:2014,https://www.iso.org/standard/56866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO/TS 24617-5:2014,https://www.iso.org/standard/57083.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24617-6:2016,https://www.iso.org/standard/60581.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24617-7:2014,https://www.iso.org/standard/60779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24617-8:2016,https://www.iso.org/standard/60780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO/PRF 24623-1,https://www.iso.org/standard/37337.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 26162:2012,https://www.iso.org/standard/43427.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO 29383:2010,https://www.iso.org/standard/53787.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO/NP 29383,https://www.iso.org/standard/71971.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO 30042:2008,https://www.iso.org/standard/45797.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO/DIS 30042,https://www.iso.org/standard/62510.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO/IEC Guide 2:2004,https://www.iso.org/standard/39976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/DIS 1087,https://www.iso.org/standard/62330.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO 1087-1:2000,https://www.iso.org/standard/20057.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO 5127:2017,https://www.iso.org/standard/59743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 10209:2012,https://www.iso.org/standard/51183.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/NP 10209,https://www.iso.org/standard/73872.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 12756:2016,https://www.iso.org/standard/69121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 12756,https://www.iso.org/standard/73280.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 13715:2017,https://www.iso.org/standard/61328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 17724:2003,https://www.iso.org/standard/33186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145,https://www.iso.org/contents/data/committee/05/26/52662/x/catalogue/ -ISO/CD 20719-1,https://www.iso.org/standard/68913.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 30300:2011,https://www.iso.org/standard/53732.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/AWI 30300,https://www.iso.org/standard/74291.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -IWA 27:2017,https://www.iso.org/standard/72643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO Guide 73:2009,https://www.iso.org/standard/44651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 3534-1:2006,https://www.iso.org/standard/40145.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO/NP 3534-1,https://www.iso.org/standard/69720.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO 3534-2:2006,https://www.iso.org/standard/40147.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO 3534-3:2013,https://www.iso.org/standard/44245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO 3534-4:2014,https://www.iso.org/standard/56154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO 9000:2015,https://www.iso.org/standard/45481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 1,https://www.iso.org/contents/data/committee/05/38/53888/x/catalogue/ -ISO 11843-1:1997,https://www.iso.org/standard/1096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-1:1997/Cor 1:2003,https://www.iso.org/standard/39580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/IEC 17000:2004,https://www.iso.org/standard/29316.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC WD 17000,https://www.iso.org/standard/73029.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/TR 17465-1:2014,https://www.iso.org/standard/62889.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 18513:2003,https://www.iso.org/standard/31812.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 19731:2017,https://www.iso.org/standard/66187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO 20252:2012,https://www.iso.org/standard/53439.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO/CD 20252,https://www.iso.org/standard/73671.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO 22300,https://www.iso.org/standard/68436.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22300:2012,https://www.iso.org/standard/56199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 25639-1:2008,https://www.iso.org/standard/43909.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 26362:2009,https://www.iso.org/standard/43521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO 30400:2016,https://www.iso.org/standard/66032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO 41011:2017,https://www.iso.org/standard/68167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 267,https://www.iso.org/contents/data/committee/65/29/652901/x/catalogue/ -ISO/CD 50500,https://www.iso.org/standard/69315.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 279,https://www.iso.org/contents/data/committee/45/87/4587737/x/catalogue/ -ISO 55000:2014,https://www.iso.org/standard/55088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 251,https://www.iso.org/contents/data/committee/60/43/604321/x/catalogue/ -ISO/TR 12802:2010,https://www.iso.org/standard/51765.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 18110:2015,https://www.iso.org/standard/61482.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 18401:2017,https://www.iso.org/standard/62384.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/DTR 20386,https://www.iso.org/standard/67886.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 276,https://www.iso.org/contents/data/committee/45/14/4514241/x/catalogue/ -ISO/TS 20477:2017,https://www.iso.org/standard/68153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/CD 20962,https://www.iso.org/standard/69626.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/43/95/4395817/x/catalogue/ -ISO/TS 80004-1:2015,https://www.iso.org/standard/68058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-2:2015,https://www.iso.org/standard/54440.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 80004-3,https://www.iso.org/standard/75335.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-3:2010,https://www.iso.org/standard/50741.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 80004-4,https://www.iso.org/standard/70180.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-4:2011,https://www.iso.org/standard/52195.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-5:2011,https://www.iso.org/standard/51767.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 80004-6,https://www.iso.org/standard/74665.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-6:2013,https://www.iso.org/standard/52333.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-7:2011,https://www.iso.org/standard/51962.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 80004-8,https://www.iso.org/standard/74666.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-8:2013,https://www.iso.org/standard/52937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -IEC/TS 80004-9:2017,https://www.iso.org/standard/62945.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-11:2017,https://www.iso.org/standard/63253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-12:2016,https://www.iso.org/standard/63095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-13:2017,https://www.iso.org/standard/64741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO 1942:2009,https://www.iso.org/standard/50179.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO/CD 1942,https://www.iso.org/standard/72249.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO 4135:2001,https://www.iso.org/standard/27375.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 4,https://www.iso.org/contents/data/committee/05/20/52024/x/catalogue/ -ISO/AWI 4135,https://www.iso.org/standard/75315.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 121/SC 4,https://www.iso.org/contents/data/committee/05/20/52024/x/catalogue/ -ISO 7176-26:2007,https://www.iso.org/standard/44224.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7998:2005,https://www.iso.org/standard/41203.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8549-1:1989,https://www.iso.org/standard/15800.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8549-2:1989,https://www.iso.org/standard/15801.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8549-3:1989,https://www.iso.org/standard/15802.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8549-4:2014,https://www.iso.org/standard/63536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8669-1:1988,https://www.iso.org/standard/16064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 8670-1:1988,https://www.iso.org/standard/16068.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 9949-1:1993,https://www.iso.org/standard/17845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 9949-2:1993,https://www.iso.org/standard/17846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 9949-3:1993,https://www.iso.org/standard/17847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO/DIS 11139,https://www.iso.org/standard/66262.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/TS 11139:2006,https://www.iso.org/standard/40168.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11979-1:2012,https://www.iso.org/standard/55683.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/DIS 11979-1,https://www.iso.org/standard/72614.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 13666:2012,https://www.iso.org/standard/55784.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/DIS 13666,https://www.iso.org/standard/68450.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16443:2014,https://www.iso.org/standard/56786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO 16840-1:2006,https://www.iso.org/standard/42064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 18369-1:2017,https://www.iso.org/standard/66338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 18662-1:2017,https://www.iso.org/standard/63148.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 19223.2,https://www.iso.org/standard/51164.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 121/SC 4,https://www.iso.org/contents/data/committee/05/20/52024/x/catalogue/ -ISO 19465:2017,https://www.iso.org/standard/64962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 29783-1:2008,https://www.iso.org/standard/45683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 29783-2:2015,https://www.iso.org/standard/63539.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 29783-3:2016,https://www.iso.org/standard/66398.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 374-1:2016,https://www.iso.org/standard/66421.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 374-1:2016/DAmd 1,https://www.iso.org/standard/74017.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 374-5:2016,https://www.iso.org/standard/66562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 4007:2012,https://www.iso.org/standard/51352.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/DIS 4007,https://www.iso.org/standard/69599.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4225:1994,https://www.iso.org/standard/10025.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 4880:1997,https://www.iso.org/standard/24009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 6107-1:2004,https://www.iso.org/standard/37669.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-2:2006,https://www.iso.org/standard/41238.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-2:2006/Amd 1:2012,https://www.iso.org/standard/57506.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-3:1993,https://www.iso.org/standard/12313.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-3:1993/Amd 1:2001,https://www.iso.org/standard/32405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-4:1993,https://www.iso.org/standard/12315.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-5:2004,https://www.iso.org/standard/37845.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-6:2004,https://www.iso.org/standard/38793.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-7:2006,https://www.iso.org/standard/41239.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-8:1993,https://www.iso.org/standard/12321.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-8:1993/Amd 1:2001,https://www.iso.org/standard/32407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-9:1997,https://www.iso.org/standard/23753.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 8421-1:1987,https://www.iso.org/standard/15590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO 8421-2:1987,https://www.iso.org/standard/15591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO 8421-6:1987,https://www.iso.org/standard/15595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO 8421-7:1987,https://www.iso.org/standard/15596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO 10075-1:2017,https://www.iso.org/standard/66900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO 11074:2015,https://www.iso.org/standard/59259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO 11074:2015/DAmd 1,https://www.iso.org/standard/74731.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO/TR 11610:2004,https://www.iso.org/standard/34638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 12749-2:2013,https://www.iso.org/standard/59404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 12749-3:2015,https://www.iso.org/standard/61019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 12749-4:2015,https://www.iso.org/standard/62886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 12749-5,https://www.iso.org/standard/67429.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 13731:2001,https://www.iso.org/standard/22450.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/CD 13731,https://www.iso.org/standard/67187.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 13943:2017,https://www.iso.org/standard/63321.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92,https://www.iso.org/contents/data/committee/05/04/50492/x/catalogue/ -ISO 14050:2009,https://www.iso.org/standard/41492.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207,https://www.iso.org/contents/data/committee/05/48/54808/x/catalogue/ -ISO 16165:2013,https://www.iso.org/standard/59294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/DIS 17755-2,https://www.iso.org/standard/69440.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 92,https://www.iso.org/contents/data/committee/05/04/50492/x/catalogue/ -ISO/TR 19591:2018,https://www.iso.org/standard/65420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/DIS 20670,https://www.iso.org/standard/68785.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 282,https://www.iso.org/contents/data/committee/48/56/4856734/x/catalogue/ -ISO/DIS 24513,https://www.iso.org/standard/72607.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 26800:2011,https://www.iso.org/standard/42885.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO 27917:2017,https://www.iso.org/standard/72969.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO/IEC Guide 99:2007,https://www.iso.org/standard/45324.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 772:2011,https://www.iso.org/standard/41035.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO/WD 772,https://www.iso.org/standard/73230.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 2041:2009,https://www.iso.org/standard/35848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO/DIS 2041,https://www.iso.org/standard/68734.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 4006:1991,https://www.iso.org/standard/9681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 4287:1997,https://www.iso.org/standard/10132.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4287:1997/Amd 1:2009,https://www.iso.org/standard/44475.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4287:1997/Cor 1:1998,https://www.iso.org/standard/29874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4287:1997/Cor 2:2005,https://www.iso.org/standard/41861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8062-1:2007,https://www.iso.org/standard/40494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8655-1:2002,https://www.iso.org/standard/29726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-1:2002/Cor 1:2008,https://www.iso.org/standard/52855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8785:1998,https://www.iso.org/standard/16210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 9849:2017,https://www.iso.org/standard/65084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 10360-1:2000,https://www.iso.org/standard/18418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-1:2000/Cor 1:2002,https://www.iso.org/standard/37694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12180-1:2011,https://www.iso.org/standard/53611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12181-1:2011,https://www.iso.org/standard/53620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12780-1:2011,https://www.iso.org/standard/53622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12781-1:2011,https://www.iso.org/standard/53624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13372:2012,https://www.iso.org/standard/52256.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 14839-1:2002,https://www.iso.org/standard/25726.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14839-1:2002/Amd 1:2010,https://www.iso.org/standard/54387.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/DIS 14839-1,https://www.iso.org/standard/68127.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 15261:2004,https://www.iso.org/standard/27113.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 15261:2004/Amd 1:2016,https://www.iso.org/standard/69635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 18405:2017,https://www.iso.org/standard/62406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 3,https://www.iso.org/contents/data/committee/65/30/653046/x/catalogue/ -ISO/CD 25178-73,https://www.iso.org/standard/67653.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 2395:1990,https://www.iso.org/standard/7292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24,https://www.iso.org/contents/data/committee/04/71/47166/x/catalogue/ -ISO 5576:1997,https://www.iso.org/standard/11643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 5577:2017,https://www.iso.org/standard/63662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 10878:2013,https://www.iso.org/standard/46265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 8,https://www.iso.org/contents/data/committee/05/24/52446/x/catalogue/ -ISO 12706:2009,https://www.iso.org/standard/53772.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 12707:2016,https://www.iso.org/standard/57192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 12716:2001,https://www.iso.org/standard/34090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 12718:2008,https://www.iso.org/standard/43738.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 135/SC 4,https://www.iso.org/contents/data/committee/05/24/52416/x/catalogue/ -ISO/TS 17822-1:2014,https://www.iso.org/standard/60601.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/TS 18173:2005,https://www.iso.org/standard/40735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135,https://www.iso.org/contents/data/committee/05/23/52398/x/catalogue/ -ISO 20484:2017,https://www.iso.org/standard/68188.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 6,https://www.iso.org/contents/data/committee/05/24/52430/x/catalogue/ -ISO 26824:2013,https://www.iso.org/standard/43807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 1081:2013,https://www.iso.org/standard/59452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 1122-1:1998,https://www.iso.org/standard/5649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1122-1:1998/Cor 1:1999,https://www.iso.org/standard/31037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1122-1:1998/Cor 2:2009,https://www.iso.org/standard/54311.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1122-2:1999,https://www.iso.org/standard/5650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1132-1:2000,https://www.iso.org/standard/20514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 1891:2009,https://www.iso.org/standard/38530.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 1891-2:2014,https://www.iso.org/standard/59135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 1891-4,https://www.iso.org/standard/63320.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 2532:1974,https://www.iso.org/standard/7471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 4378-1:2017,https://www.iso.org/standard/70491.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4378-2:2017,https://www.iso.org/standard/70490.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4378-3:2017,https://www.iso.org/standard/70489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4378-4:2009,https://www.iso.org/standard/44207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4378-5:2009,https://www.iso.org/standard/44208.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO/TR 4378-6:2012,https://www.iso.org/standard/57809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 5288:2017,https://www.iso.org/standard/70625.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 5408:2009,https://www.iso.org/standard/44424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 5593:1997,https://www.iso.org/standard/11663.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 5593:1997/Amd 1:2007,https://www.iso.org/standard/43557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO/FDIS 5593,https://www.iso.org/standard/50185.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 6811:1998,https://www.iso.org/standard/24987.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 6811:1998/Cor 1:1999,https://www.iso.org/standard/31386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 10825:1995,https://www.iso.org/standard/2042.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO/NP 10825,https://www.iso.org/standard/70583.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 13203:2005,https://www.iso.org/standard/37271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 14588:2000,https://www.iso.org/standard/24866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 17893:2004,https://www.iso.org/standard/31617.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 17893:2004/Amd 1:2010,https://www.iso.org/standard/50607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 21940-2:2017,https://www.iso.org/standard/68131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/WD 22872,https://www.iso.org/standard/74064.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO/DTS 23768-1,https://www.iso.org/standard/69871.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO/TS 23768-1:2011,https://www.iso.org/standard/41845.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 24393:2008,https://www.iso.org/standard/43031.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO 26909:2009,https://www.iso.org/standard/43902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 3529-1:1981,https://www.iso.org/standard/8911.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 3529-2:1981,https://www.iso.org/standard/8913.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO/NP 3529-2,https://www.iso.org/standard/70611.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 3529-3:2014,https://www.iso.org/standard/56051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 3857-1:1977,https://www.iso.org/standard/9436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 3857-2:1977,https://www.iso.org/standard/9437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 3857-3:1989,https://www.iso.org/standard/9439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 3857-4:2012,https://www.iso.org/standard/55307.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 5391:2003,https://www.iso.org/standard/36692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 5598:2008,https://www.iso.org/standard/39562.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO/CD 5598,https://www.iso.org/standard/67985.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 131/SC 1,https://www.iso.org/contents/data/committee/05/22/52242/x/catalogue/ -ISO 6194-2:2009,https://www.iso.org/standard/45846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6552:1980,https://www.iso.org/standard/12950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 6552:1980/Cor 1:2009,https://www.iso.org/standard/54556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 7369:2004,https://www.iso.org/standard/32408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 11,https://www.iso.org/contents/data/committee/04/56/45660/x/catalogue/ -ISO 8330:2014,https://www.iso.org/standard/57969.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 10286:2015,https://www.iso.org/standard/55978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO/TS 11672:2016,https://www.iso.org/standard/68229.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 13349:2010,https://www.iso.org/standard/46450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 16589-2:2011,https://www.iso.org/standard/53935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO/TR 581:2005,https://www.iso.org/standard/40507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 857-2:2005,https://www.iso.org/standard/29995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 1703,https://www.iso.org/standard/69308.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 1703:2005,https://www.iso.org/standard/38458.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2080:2008,https://www.iso.org/standard/45351.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2806:1994,https://www.iso.org/standard/7798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 3002-5:1989,https://www.iso.org/standard/8057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3408-1:2006,https://www.iso.org/standard/35022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3855:1977,https://www.iso.org/standard/9420.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3855:1977/Cor 1:1996,https://www.iso.org/standard/26719.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3857-1:1977,https://www.iso.org/standard/9436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 3857-3:1989,https://www.iso.org/standard/9439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 3857-4:2012,https://www.iso.org/standard/55307.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 4063:2009,https://www.iso.org/standard/38134.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 4248:1978,https://www.iso.org/standard/10047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4875-1:2006,https://www.iso.org/standard/41854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4885,https://www.iso.org/standard/74642.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 4885:2017,https://www.iso.org/standard/63072.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 5391:2003,https://www.iso.org/standard/36692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 5396:1977,https://www.iso.org/standard/11438.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5419:1982,https://www.iso.org/standard/11462.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5419:1982/Cor 1:1996,https://www.iso.org/standard/26720.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5420:1983,https://www.iso.org/standard/11463.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5742:2004,https://www.iso.org/standard/33638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5967:1981,https://www.iso.org/standard/12161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5968:1981,https://www.iso.org/standard/12162.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7583:2013,https://www.iso.org/standard/57434.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 8000-2:2017,https://www.iso.org/standard/73456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-2:2017/FDAmd 1,https://www.iso.org/standard/74962.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-8:2015,https://www.iso.org/standard/60805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 8000-311:2012,https://www.iso.org/standard/60010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8373:2012,https://www.iso.org/standard/55890.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 8540:1993,https://www.iso.org/standard/15789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 8695:2010,https://www.iso.org/standard/52941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8979:2004,https://www.iso.org/standard/33646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/TR 11065:1992,https://www.iso.org/standard/19047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 11593:1996,https://www.iso.org/standard/19528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/NP 11593,https://www.iso.org/standard/74676.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 12165:2000,https://www.iso.org/standard/21059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 13574:2015,https://www.iso.org/standard/54030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 14539:2000,https://www.iso.org/standard/24062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 14917:2017,https://www.iso.org/standard/60996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 15296:2017,https://www.iso.org/standard/66053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 17066:2007,https://www.iso.org/standard/38191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 17658:2002,https://www.iso.org/standard/29996.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 17659:2002,https://www.iso.org/standard/29997.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 17677-1:2009,https://www.iso.org/standard/44765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/DIS 17677-1,https://www.iso.org/standard/70524.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/DIS 18785-1,https://www.iso.org/standard/63373.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 19496-1:2017,https://www.iso.org/standard/66383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 19496-2:2017,https://www.iso.org/standard/65190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 19649:2017,https://www.iso.org/standard/65658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 19719:2010,https://www.iso.org/standard/43191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 22745-2:2010,https://www.iso.org/standard/53997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 24497-1:2007,https://www.iso.org/standard/42265.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 24497-1,https://www.iso.org/standard/72146.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 25239-1:2011,https://www.iso.org/standard/44056.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 25239-1,https://www.iso.org/standard/69620.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/TR 25901-1:2016,https://www.iso.org/standard/55758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/DTR 25901-2,https://www.iso.org/standard/57899.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/DTR 25901-2,https://www.iso.org/standard/73788.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/TR 25901-3:2016,https://www.iso.org/standard/62522.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/TR 25901-4:2016,https://www.iso.org/standard/62523.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 28238:2010,https://www.iso.org/standard/44591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO/ASTM 52900:2015,https://www.iso.org/standard/69669.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM CD 52900,https://www.iso.org/standard/74514.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -IEC 62264-1:2013,https://www.iso.org/standard/57308.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 2710-1:2017,https://www.iso.org/standard/70032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 2710-2:1999,https://www.iso.org/standard/21934.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/CD 2710-2,https://www.iso.org/standard/73999.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-1:2005,https://www.iso.org/standard/40072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-2:2010,https://www.iso.org/standard/43490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-3:2010,https://www.iso.org/standard/45616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-4:2005,https://www.iso.org/standard/40073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-5:2010,https://www.iso.org/standard/43491.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-6:2005,https://www.iso.org/standard/40074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-7:2005,https://www.iso.org/standard/40075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-7:2005/Cor 1:2006,https://www.iso.org/standard/43996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-8:2005,https://www.iso.org/standard/40076.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-9:2010,https://www.iso.org/standard/53437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-10:2014,https://www.iso.org/standard/58096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-11:2014,https://www.iso.org/standard/58097.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-12:2014,https://www.iso.org/standard/58098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8107:1993,https://www.iso.org/standard/15154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 9229:2007,https://www.iso.org/standard/41496.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO/NP 9229,https://www.iso.org/standard/73303.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 9251:1987,https://www.iso.org/standard/16901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 9488:1999,https://www.iso.org/standard/17217.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO/NP 9488,https://www.iso.org/standard/74269.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 11086:1996,https://www.iso.org/standard/19073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 11145:2016,https://www.iso.org/standard/65247.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 11145,https://www.iso.org/standard/72944.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11807-1:2001,https://www.iso.org/standard/20617.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 11807-1,https://www.iso.org/standard/72948.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11807-2:2001,https://www.iso.org/standard/27398.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 11807-2,https://www.iso.org/standard/72949.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 14880-1:2016,https://www.iso.org/standard/64144.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 14880-1,https://www.iso.org/standard/72947.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 15367-1:2003,https://www.iso.org/standard/27396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 15902:2004,https://www.iso.org/standard/28652.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 15902:2004/Cor 1:2005,https://www.iso.org/standard/43183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -IEC 824:1988,https://www.iso.org/standard/19699.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 2382:2015,https://www.iso.org/standard/63598.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 2382-36:2013,https://www.iso.org/standard/63996.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC DIS 2382-36,https://www.iso.org/standard/66692.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 2382-37:2017,https://www.iso.org/standard/66693.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC NP 2382-37,https://www.iso.org/standard/73514.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO 5138-1:1978,https://www.iso.org/standard/11136.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-3:1981,https://www.iso.org/standard/11138.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-4:1981,https://www.iso.org/standard/11139.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-5:1981,https://www.iso.org/standard/11140.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-7:1986,https://www.iso.org/standard/11142.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-9:1984,https://www.iso.org/standard/11144.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEEE 11073-10101:2004,https://www.iso.org/standard/37890.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10101:2004/Amd 1:2017,https://www.iso.org/standard/72078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEC TR 12382:1992,https://www.iso.org/standard/21071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 15044:2000,https://www.iso.org/standard/26312.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15944-7:2009,https://www.iso.org/standard/51545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC DIS 15944-7,https://www.iso.org/standard/67202.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/TR 16056-1:2004,https://www.iso.org/standard/37351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEC 16509:1999,https://www.iso.org/standard/31005.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO 17115:2007,https://www.iso.org/standard/32881.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/NP 17115,https://www.iso.org/standard/73695.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 17117:2002,https://www.iso.org/standard/32883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 17465-1:2014,https://www.iso.org/standard/62889.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/IEC 17788:2014,https://www.iso.org/standard/60544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC TR 18053:2000,https://www.iso.org/standard/31680.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 19104:2016,https://www.iso.org/standard/63541.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/IEC 19762:2016,https://www.iso.org/standard/61301.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 19941:2017,https://www.iso.org/standard/66639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC DIS 20546,https://www.iso.org/standard/68305.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC CD 20924,https://www.iso.org/standard/69470.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC CD 21838-1,https://www.iso.org/standard/71954.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC CD 21838-2,https://www.iso.org/standard/74572.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC/IEEE 24765:2017,https://www.iso.org/standard/71952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 27000,https://www.iso.org/standard/73906.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27000:2016,https://www.iso.org/standard/66435.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 29108:2013,https://www.iso.org/standard/45131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 5-1:2009,https://www.iso.org/standard/52913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 4246:1994,https://www.iso.org/standard/10045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 5138-2:1980,https://www.iso.org/standard/11137.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5989:1995,https://www.iso.org/standard/12183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6196-1:1993,https://www.iso.org/standard/12460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-2:1993,https://www.iso.org/standard/12462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-3:1997,https://www.iso.org/standard/2047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-4:1998,https://www.iso.org/standard/22166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-5:1987,https://www.iso.org/standard/12465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-6:1992,https://www.iso.org/standard/12466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-7:1992,https://www.iso.org/standard/12467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-8:1998,https://www.iso.org/standard/2260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-10:1999,https://www.iso.org/standard/27104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-10:1999/Cor 1:2004,https://www.iso.org/standard/41311.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 8600-6:2005,https://www.iso.org/standard/36294.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/AWI 8600-6,https://www.iso.org/standard/65020.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 9211-1:2010,https://www.iso.org/standard/45849.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/DIS 9211-1,https://www.iso.org/standard/70345.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 10934-1:2002,https://www.iso.org/standard/35112.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/CD 10934-1,https://www.iso.org/standard/75096.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 10934-2:2007,https://www.iso.org/standard/39473.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/CD 10934-2,https://www.iso.org/standard/72608.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 12231:2012,https://www.iso.org/standard/53614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 12637-1:2006,https://www.iso.org/standard/40144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12637-2:2008,https://www.iso.org/standard/36041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12637-3:2009,https://www.iso.org/standard/35295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12637-4:2008,https://www.iso.org/standard/35296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12651-1:2012,https://www.iso.org/standard/54755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 12651-2:2014,https://www.iso.org/standard/42673.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 14132-1:2015,https://www.iso.org/standard/66244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14132-2:2015,https://www.iso.org/standard/66245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14132-3:2014,https://www.iso.org/standard/62423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14132-4:2015,https://www.iso.org/standard/66246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14132-5:2008,https://www.iso.org/standard/42759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 15932:2013,https://www.iso.org/standard/55560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 1,https://www.iso.org/contents/data/committee/05/46/54684/x/catalogue/ -ISO 18913:2012,https://www.iso.org/standard/54702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 19262:2015,https://www.iso.org/standard/64219.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 22493:2014,https://www.iso.org/standard/64932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 1,https://www.iso.org/contents/data/committee/05/46/54684/x/catalogue/ -ISO 1112:2009,https://www.iso.org/standard/50884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO 6426-1:1982,https://www.iso.org/standard/12775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 9,https://www.iso.org/contents/data/committee/05/17/51754/x/catalogue/ -ISO 6426-2:2002,https://www.iso.org/standard/37066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 9,https://www.iso.org/contents/data/committee/05/17/51754/x/catalogue/ -ISO 6426-2:2002/Amd 1:2012,https://www.iso.org/standard/54753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 9,https://www.iso.org/contents/data/committee/05/17/51754/x/catalogue/ -ISO 6426-2:2002/Cor 1:2003,https://www.iso.org/standard/38576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 9,https://www.iso.org/contents/data/committee/05/17/51754/x/catalogue/ -ISO 611:2003,https://www.iso.org/standard/28733.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 612:1978,https://www.iso.org/standard/4729.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 1176:1990,https://www.iso.org/standard/5760.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3536:2016,https://www.iso.org/standard/59694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3833:1977,https://www.iso.org/standard/9389.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3911:2004,https://www.iso.org/standard/36320.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/CD 3911,https://www.iso.org/standard/72662.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4130:1978,https://www.iso.org/standard/9886.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 6518-1:2002,https://www.iso.org/standard/35016.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 6621-1:2007,https://www.iso.org/standard/44467.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/PRF 6621-1,https://www.iso.org/standard/67903.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6725:1981,https://www.iso.org/standard/13181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6726:1988,https://www.iso.org/standard/13183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6813:1998,https://www.iso.org/standard/1734.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 7237:1993,https://www.iso.org/standard/13881.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7237:1993/Amd 1:2001,https://www.iso.org/standard/25940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7637-1:2015,https://www.iso.org/standard/63098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7876-1:1990,https://www.iso.org/standard/14811.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-1:1990/Amd 1:1999,https://www.iso.org/standard/26744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-2:1991,https://www.iso.org/standard/14813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-2:1991/Amd 1:1999,https://www.iso.org/standard/31123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-3:1993,https://www.iso.org/standard/14814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-4:2004,https://www.iso.org/standard/30503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-5:2004,https://www.iso.org/standard/34828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 8090:1990,https://www.iso.org/standard/15126.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO/NP 8090,https://www.iso.org/standard/70618.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO/NP TR 8713,https://www.iso.org/standard/71402.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/TR 8713:2012,https://www.iso.org/standard/55745.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 8855:2011,https://www.iso.org/standard/51180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 11838:1997,https://www.iso.org/standard/1518.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11838:1997/Amd 1:2011,https://www.iso.org/standard/57746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11838:1997/NP Amd 2,https://www.iso.org/standard/71557.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11841-1:2000,https://www.iso.org/standard/32455.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 11841-2:2000,https://www.iso.org/standard/26750.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12353-1:2002,https://www.iso.org/standard/34353.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/NP 12353-1,https://www.iso.org/standard/68075.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 13062:2015,https://www.iso.org/standard/52521.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 14451-1:2013,https://www.iso.org/standard/54762.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14722:1998,https://www.iso.org/standard/25358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 14722:1998/Amd 1:2011,https://www.iso.org/standard/57747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 15031-2:2010,https://www.iso.org/standard/50815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16232-1:2007,https://www.iso.org/standard/39230.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 18542-1:2012,https://www.iso.org/standard/53967.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18542-2:2014,https://www.iso.org/standard/58101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DIS 19642-1,https://www.iso.org/standard/65619.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-1:2011,https://www.iso.org/standard/43464.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-1,https://www.iso.org/standard/68383.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 1069:1973,https://www.iso.org/standard/5562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 3715-1:2002,https://www.iso.org/standard/28765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/DIS 3715-1,https://www.iso.org/standard/73950.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 3715-2:2001,https://www.iso.org/standard/28764.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 3828:2008,https://www.iso.org/standard/37152.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 6345:1990,https://www.iso.org/standard/12646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 7255:1985,https://www.iso.org/standard/13909.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO 7462:1985,https://www.iso.org/standard/14197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 8147:1995,https://www.iso.org/standard/15231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 8384:2000,https://www.iso.org/standard/28262.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO/DIS 8384,https://www.iso.org/standard/70197.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 19018:2004,https://www.iso.org/standard/33730.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/NP 19018,https://www.iso.org/standard/65692.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 5843-1:1985,https://www.iso.org/standard/12024.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-1,https://www.iso.org/standard/69005.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-2:1990,https://www.iso.org/standard/12026.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-2,https://www.iso.org/standard/69006.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-3:1997,https://www.iso.org/standard/12028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-3,https://www.iso.org/standard/69007.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-4:1990,https://www.iso.org/standard/12030.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-4,https://www.iso.org/standard/69008.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-5:1990,https://www.iso.org/standard/12031.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-5,https://www.iso.org/standard/69010.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-6:1985,https://www.iso.org/standard/12032.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-6,https://www.iso.org/standard/69011.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-8:1988,https://www.iso.org/standard/12034.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-8,https://www.iso.org/standard/69012.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-9:1988,https://www.iso.org/standard/12035.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-9,https://www.iso.org/standard/69014.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-10:1988,https://www.iso.org/standard/12036.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-10,https://www.iso.org/standard/69015.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 8153-1:2009,https://www.iso.org/standard/51623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 8153-2,https://www.iso.org/standard/72423.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8625-1:1993,https://www.iso.org/standard/15954.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/FDIS 8625-1,https://www.iso.org/standard/68319.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8625-2:1991,https://www.iso.org/standard/15955.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/FDIS 8625-2,https://www.iso.org/standard/66047.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8625-3:1991,https://www.iso.org/standard/15956.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/FDIS 8625-3,https://www.iso.org/standard/66048.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8625-4:2011,https://www.iso.org/standard/54950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8815:1994,https://www.iso.org/standard/16265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 10254:2016,https://www.iso.org/standard/54747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 10795:2011,https://www.iso.org/standard/46103.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 10795,https://www.iso.org/standard/72936.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16682:2015,https://www.iso.org/standard/57409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 1837:2003,https://www.iso.org/standard/37599.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 2148:1974,https://www.iso.org/standard/6941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 2331:1974,https://www.iso.org/standard/7166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 4306-1:2007,https://www.iso.org/standard/32457.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 4306-1:2007/AWI Amd 1,https://www.iso.org/standard/69314.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 4306-2:2012,https://www.iso.org/standard/55962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 4306-3:2016,https://www.iso.org/standard/64709.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 4306-5:2005,https://www.iso.org/standard/31809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 5053-1:2015,https://www.iso.org/standard/56429.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 1,https://www.iso.org/contents/data/committee/05/15/51590/x/catalogue/ -ISO/DIS 5053-1,https://www.iso.org/standard/75384.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 110/SC 1,https://www.iso.org/contents/data/committee/05/15/51590/x/catalogue/ -ISO/DIS 5053-2,https://www.iso.org/standard/71065.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 110/SC 1,https://www.iso.org/contents/data/committee/05/15/51590/x/catalogue/ -ISO 5284:1986,https://www.iso.org/standard/11280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 5284:1986/Cor 1:2005,https://www.iso.org/standard/43382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 6165:2012,https://www.iso.org/standard/52639.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 6747:2013,https://www.iso.org/standard/51830.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7131:2009,https://www.iso.org/standard/42841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7131:2009/Amd 1:2017,https://www.iso.org/standard/70367.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7132:2003,https://www.iso.org/standard/26883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7132:2003/DAmd 1,https://www.iso.org/standard/66845.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7133:2013,https://www.iso.org/standard/51831.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7134:2013,https://www.iso.org/standard/51832.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7135:2009,https://www.iso.org/standard/42842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7135:2009/DAmd 1,https://www.iso.org/standard/73152.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7136:2006,https://www.iso.org/standard/37781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 8811:2000,https://www.iso.org/standard/33206.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 8811:2000/Cor 1:2002,https://www.iso.org/standard/35964.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 8812:2016,https://www.iso.org/standard/62355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 8927:1991,https://www.iso.org/standard/16457.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 9245:1991,https://www.iso.org/standard/16895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO/TS 9250-1:2012,https://www.iso.org/standard/62385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO/TS 9250-2:2012,https://www.iso.org/standard/62386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 9851:1990,https://www.iso.org/standard/17729.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 10263-1:2009,https://www.iso.org/standard/42453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 11994:1997,https://www.iso.org/standard/20622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 13539:1998,https://www.iso.org/standard/21670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO/TS 15696:2012,https://www.iso.org/standard/50813.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO/DIS 18758-1,https://www.iso.org/standard/67706.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 21183-2:2005,https://www.iso.org/standard/38438.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO/DIS 21183-2,https://www.iso.org/standard/70497.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 22877:2004,https://www.iso.org/standard/36536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 445:2013,https://www.iso.org/standard/61915.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 830:1999,https://www.iso.org/standard/1238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104,https://www.iso.org/contents/data/committee/05/11/51156/x/catalogue/ -ISO 830:1999/Cor 1:2001,https://www.iso.org/standard/35234.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104,https://www.iso.org/contents/data/committee/05/11/51156/x/catalogue/ -ISO 6590-1:1983,https://www.iso.org/standard/12996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 6590-2:1986,https://www.iso.org/standard/12997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 7348:1992,https://www.iso.org/standard/14032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 15867:2003,https://www.iso.org/standard/29323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 21067-1:2016,https://www.iso.org/standard/66981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 21067-2:2015,https://www.iso.org/standard/62932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO 105-A08:2001,https://www.iso.org/standard/31721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 476:1982,https://www.iso.org/standard/4517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 477:1982,https://www.iso.org/standard/4518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 1506:1982,https://www.iso.org/standard/6096.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 1586:1977,https://www.iso.org/standard/6180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 1809:1977,https://www.iso.org/standard/6447.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 1968:2004,https://www.iso.org/standard/23038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 2076:2013,https://www.iso.org/standard/56206.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 2187:1990,https://www.iso.org/standard/6986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 2205:1975,https://www.iso.org/standard/7008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 2822-1:1998,https://www.iso.org/standard/7820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 3572:1976,https://www.iso.org/standard/8977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 4683-1:1998,https://www.iso.org/standard/10663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 4880:1997,https://www.iso.org/standard/24009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 4921:2000,https://www.iso.org/standard/33711.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 5234:2005,https://www.iso.org/standard/38584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 5238-1:1982,https://www.iso.org/standard/11236.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 5239:1980,https://www.iso.org/standard/11238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 5247-1:2004,https://www.iso.org/standard/36882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 5247-1:2004/Cor 1:2006,https://www.iso.org/standard/44501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 5247-3:1993,https://www.iso.org/standard/11246.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 5248:2003,https://www.iso.org/standard/35407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 5250:2003,https://www.iso.org/standard/35408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 6173:1982,https://www.iso.org/standard/12423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 6348:1980,https://www.iso.org/standard/12651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 6938:2012,https://www.iso.org/standard/57474.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 7482-1:1998,https://www.iso.org/standard/14224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 7839:2005,https://www.iso.org/standard/36237.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8114:1990,https://www.iso.org/standard/15164.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 8116-1:1995,https://www.iso.org/standard/21949.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8119-1:1989,https://www.iso.org/standard/15176.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8119-2:1989,https://www.iso.org/standard/15177.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8119-3:1992,https://www.iso.org/standard/15179.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8159:1987,https://www.iso.org/standard/15243.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 8160:1987,https://www.iso.org/standard/15244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 8388:1998,https://www.iso.org/standard/15553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 8498:1990,https://www.iso.org/standard/15708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 8499:2003,https://www.iso.org/standard/37071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 8640-1:2004,https://www.iso.org/standard/37402.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8640-2:2004,https://www.iso.org/standard/37401.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8640-3:2002,https://www.iso.org/standard/34027.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8640-4:1996,https://www.iso.org/standard/21464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 9092:2011,https://www.iso.org/standard/50397.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 9092,https://www.iso.org/standard/71369.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9947:2005,https://www.iso.org/standard/38585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 10132:1993,https://www.iso.org/standard/18120.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 10318-1:2015,https://www.iso.org/standard/44885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10318-1:2015/FDAmd 1,https://www.iso.org/standard/68880.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10782-1:1998,https://www.iso.org/standard/24083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 10,https://www.iso.org/contents/data/committee/66/95/669565/x/catalogue/ -ISO 11224:2003,https://www.iso.org/standard/23754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 11675:2005,https://www.iso.org/standard/36239.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 11676:2014,https://www.iso.org/standard/52739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 12912:2014,https://www.iso.org/standard/52158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 13990-1:2006,https://www.iso.org/standard/39189.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 14500:2003,https://www.iso.org/standard/24477.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO/FDIS 15115,https://www.iso.org/standard/67424.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 120,https://www.iso.org/contents/data/committee/05/19/51974/x/catalogue/ -ISO 18600:2015,https://www.iso.org/standard/62994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 20725:2004,https://www.iso.org/standard/35518.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 20726:2004,https://www.iso.org/standard/35519.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 20727:2004,https://www.iso.org/standard/35520.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 21485:2013,https://www.iso.org/standard/60958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 26243:2007,https://www.iso.org/standard/43452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 28239:2008,https://www.iso.org/standard/44592.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO/TS 19408:2015,https://www.iso.org/standard/62158.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 137,https://www.iso.org/contents/data/committee/05/24/52496/x/catalogue/ -ISO 19952:2005,https://www.iso.org/standard/34011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 1107:2017,https://www.iso.org/standard/72227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1531:1973,https://www.iso.org/standard/6120.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 3660:1976,https://www.iso.org/standard/9111.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 3835-1:1976,https://www.iso.org/standard/9393.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 3835-3:1980,https://www.iso.org/standard/9395.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 3835-4:1981,https://www.iso.org/standard/9396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 3918:2007,https://www.iso.org/standard/37189.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5681:1992,https://www.iso.org/standard/11794.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/AWI 5681,https://www.iso.org/standard/72299.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 5702:1983,https://www.iso.org/standard/11813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 6531:2017,https://www.iso.org/standard/69739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 6689-1:1997,https://www.iso.org/standard/13123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 6814:2009,https://www.iso.org/standard/50880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 7088:1981,https://www.iso.org/standard/13664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 7112:2017,https://www.iso.org/standard/69738.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 8088:1994,https://www.iso.org/standard/15124.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 8157:2015,https://www.iso.org/standard/59567.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 8909-1:1994,https://www.iso.org/standard/16436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 8910:1993,https://www.iso.org/standard/16439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 11450:1999,https://www.iso.org/standard/19393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 11450:1999/Amd 1:2016,https://www.iso.org/standard/66854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 13860:2016,https://www.iso.org/standard/63993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 13861:2000,https://www.iso.org/standard/23099.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO/DIS 13861,https://www.iso.org/standard/70952.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 13862:2000,https://www.iso.org/standard/23100.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO/DIS 13862,https://www.iso.org/standard/70953.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO/CD 20588,https://www.iso.org/standard/68464.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 676:1995,https://www.iso.org/standard/4844.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 676:1995/Cor 1:1997,https://www.iso.org/standard/27746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO/CD 676,https://www.iso.org/standard/69301.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 1956-1:1982,https://www.iso.org/standard/6684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1956-2:1989,https://www.iso.org/standard/6685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1990-1:1982,https://www.iso.org/standard/6726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1990-2:1985,https://www.iso.org/standard/6727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1991-1:1982,https://www.iso.org/standard/6728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1991-2:1995,https://www.iso.org/standard/6730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 3493:2014,https://www.iso.org/standard/64798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 3509:2005,https://www.iso.org/standard/34184.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO/CD 3509,https://www.iso.org/standard/44604.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 4125:1991,https://www.iso.org/standard/9877.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5492:2008,https://www.iso.org/standard/38051.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5492:2008/Amd 1:2016,https://www.iso.org/standard/63887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO/NP 5492,https://www.iso.org/standard/73559.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5507:2002,https://www.iso.org/standard/27394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 5526:2013,https://www.iso.org/standard/50932.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 5527:2015,https://www.iso.org/standard/50933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6078:1982,https://www.iso.org/standard/12279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 7563:1998,https://www.iso.org/standard/14346.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 18794:2018,https://www.iso.org/standard/63404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO Guide 30:2015,https://www.iso.org/standard/46209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO 862:1984,https://www.iso.org/standard/5243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 862:1984/Cor 1:1993,https://www.iso.org/standard/22165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4720:2009,https://www.iso.org/standard/42947.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO/FDIS 4720,https://www.iso.org/standard/69688.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4791-1:1985,https://www.iso.org/standard/10770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 6206:1979,https://www.iso.org/standard/12475.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 7504:2015,https://www.iso.org/standard/53596.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 9235:2013,https://www.iso.org/standard/51017.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9235:2013/Cor 1:2014,https://www.iso.org/standard/66365.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 10991:2009,https://www.iso.org/standard/46546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 18115-1:2013,https://www.iso.org/standard/63783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 1,https://www.iso.org/contents/data/committee/05/46/54624/x/catalogue/ -ISO/WD 18115-1,https://www.iso.org/standard/70395.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/46/54624/x/catalogue/ -ISO 18115-2:2013,https://www.iso.org/standard/63784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 1,https://www.iso.org/contents/data/committee/05/46/54624/x/catalogue/ -ISO 23833:2013,https://www.iso.org/standard/61781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 1,https://www.iso.org/contents/data/committee/05/46/54684/x/catalogue/ -ISO 25947-1:2017,https://www.iso.org/standard/64851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 26261-1:2017,https://www.iso.org/standard/64852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 1213-1:1993,https://www.iso.org/standard/5814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 1213-2:2016,https://www.iso.org/standard/61543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 7404-1:2016,https://www.iso.org/standard/67682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 9045:1990,https://www.iso.org/standard/16612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 11323:2010,https://www.iso.org/standard/44231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102,https://www.iso.org/contents/data/committee/05/10/51012/x/catalogue/ -ISO/DIS 18758-1,https://www.iso.org/standard/67706.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 18875:2015,https://www.iso.org/standard/63650.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 263,https://www.iso.org/contents/data/committee/63/82/638206/x/catalogue/ -ISO/DIS 19426-1,https://www.iso.org/standard/72221.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1213-2:2016,https://www.iso.org/standard/61543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 1998-1:1998,https://www.iso.org/standard/25402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-1:1998/Cor 1:1999,https://www.iso.org/standard/32321.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-2:1998,https://www.iso.org/standard/25403.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-3:1998,https://www.iso.org/standard/25404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-4:1998,https://www.iso.org/standard/25405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-5:1998,https://www.iso.org/standard/25406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-5:1998/Cor 1:1999,https://www.iso.org/standard/32323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-6:2000,https://www.iso.org/standard/25407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-7:1998,https://www.iso.org/standard/25408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-99:2000,https://www.iso.org/standard/23185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 14532:2014,https://www.iso.org/standard/59706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 16559:2014,https://www.iso.org/standard/57111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 197-1:1983,https://www.iso.org/standard/4053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 197-2:1983,https://www.iso.org/standard/4055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 197-3:1983,https://www.iso.org/standard/4057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 197-4:1983,https://www.iso.org/standard/4059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 197-5:1980,https://www.iso.org/standard/4060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 3252:1999,https://www.iso.org/standard/26045.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119,https://www.iso.org/contents/data/committee/05/18/51896/x/catalogue/ -ISO/CD 3252,https://www.iso.org/standard/69828.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119,https://www.iso.org/contents/data/committee/05/18/51896/x/catalogue/ -ISO 4885,https://www.iso.org/standard/74642.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 4885:2017,https://www.iso.org/standard/63072.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 6372:2017,https://www.iso.org/standard/69352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 6929:2013,https://www.iso.org/standard/52949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 8044:2015,https://www.iso.org/standard/66233.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/NP 8044,https://www.iso.org/standard/71134.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 8954-1:1990,https://www.iso.org/standard/16478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8954-2:1990,https://www.iso.org/standard/16479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8954-3:1990,https://www.iso.org/standard/16480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 16020:2005,https://www.iso.org/standard/40078.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 23718:2007,https://www.iso.org/standard/36948.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 164,https://www.iso.org/contents/data/committee/05/35/53550/x/catalogue/ -ISO/TR 25679:2005,https://www.iso.org/standard/43056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164,https://www.iso.org/contents/data/committee/05/35/53550/x/catalogue/ -ISO 28401:2010,https://www.iso.org/standard/44689.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 633:2007,https://www.iso.org/standard/38938.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/DIS 633,https://www.iso.org/standard/67048.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 1031:1974,https://www.iso.org/standard/5503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 1032:1974,https://www.iso.org/standard/5504.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 2074:2007,https://www.iso.org/standard/43024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 2074:2007/Amd 1:2017,https://www.iso.org/standard/69392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 2300:1973,https://www.iso.org/standard/7127.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5323:1984,https://www.iso.org/standard/11331.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/CD 5323,https://www.iso.org/standard/74838.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5329:1978,https://www.iso.org/standard/11337.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 7294:1983,https://www.iso.org/standard/13953.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7568:1986,https://www.iso.org/standard/14351.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7569:1986,https://www.iso.org/standard/14352.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7570:1986,https://www.iso.org/standard/14353.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7571:1986,https://www.iso.org/standard/14354.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7945:1985,https://www.iso.org/standard/14922.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7946:1985,https://www.iso.org/standard/14923.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7947:1985,https://www.iso.org/standard/14924.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7948:1987,https://www.iso.org/standard/14925.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7949:1985,https://www.iso.org/standard/14926.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7950:1985,https://www.iso.org/standard/14927.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7957:1987,https://www.iso.org/standard/14934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7958:1987,https://www.iso.org/standard/14935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7959:1987,https://www.iso.org/standard/14936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7983:1988,https://www.iso.org/standard/14980.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7987:1985,https://www.iso.org/standard/14984.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7988:1988,https://www.iso.org/standard/14985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 8965:2013,https://www.iso.org/standard/52488.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/CD 8965,https://www.iso.org/standard/74837.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 9086-1:1987,https://www.iso.org/standard/16673.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 9264:1988,https://www.iso.org/standard/16914.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 9265:1988,https://www.iso.org/standard/16915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 9266:1988,https://www.iso.org/standard/16916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 9267:1988,https://www.iso.org/standard/16917.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 16894:2009,https://www.iso.org/standard/32475.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 2,https://www.iso.org/contents/data/committee/05/04/50458/x/catalogue/ -ISO 18775:2008,https://www.iso.org/standard/38868.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO/NP 18775,https://www.iso.org/standard/75050.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 24294:2013,https://www.iso.org/standard/52502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 836:2001,https://www.iso.org/standard/33872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 3536:2016,https://www.iso.org/standard/59694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 9802:1996,https://www.iso.org/standard/17667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 9802:1996/Cor 1:2005,https://www.iso.org/standard/42464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 11485-1:2011,https://www.iso.org/standard/50541.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12543-1:2011,https://www.iso.org/standard/46375.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 472:2013,https://www.iso.org/standard/44102.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 472:2013/FDAmd 1,https://www.iso.org/standard/45082.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1382:2012,https://www.iso.org/standard/60252.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/CD 1382,https://www.iso.org/standard/68018.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 1629:1995/Amd 1:2007/Cor 1:2009,https://www.iso.org/standard/54703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 1629:2013,https://www.iso.org/standard/60242.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 3877-1:1997,https://www.iso.org/standard/25344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 3877-2:1997,https://www.iso.org/standard/25345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 3877-3:1978,https://www.iso.org/standard/9481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 3877-4:1984,https://www.iso.org/standard/9483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 3877-4:1984/CD Amd 1,https://www.iso.org/standard/74284.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 4223-1:2017,https://www.iso.org/standard/62125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 4223-2:1991,https://www.iso.org/standard/10022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 4223-2:1991/CD Amd 1,https://www.iso.org/standard/74285.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 6194-2:2009,https://www.iso.org/standard/45846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6472:2017,https://www.iso.org/standard/70337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 8153-1:2009,https://www.iso.org/standard/51623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/TR 8517:1988,https://www.iso.org/standard/15743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8604:1988,https://www.iso.org/standard/15909.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 16589-2:2011,https://www.iso.org/standard/53935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 18064:2014,https://www.iso.org/standard/65365.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 4046-1:2016,https://www.iso.org/standard/69829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-2:2016,https://www.iso.org/standard/69831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-3:2016,https://www.iso.org/standard/69832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-4:2016,https://www.iso.org/standard/69833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-5:2016,https://www.iso.org/standard/69834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 12625-1:2011,https://www.iso.org/standard/53422.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO/DIS 12625-1,https://www.iso.org/standard/72524.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 4618:2014,https://www.iso.org/standard/56502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 18451-1:2015,https://www.iso.org/standard/62478.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/CD 18451-1,https://www.iso.org/standard/74761.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 19403-1:2017,https://www.iso.org/standard/64808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19403-2:2017,https://www.iso.org/standard/64809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19403-3:2017,https://www.iso.org/standard/64810.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19403-4:2017,https://www.iso.org/standard/64811.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19403-5:2017,https://www.iso.org/standard/64812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19403-6:2017,https://www.iso.org/standard/64813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19403-7:2017,https://www.iso.org/standard/64814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 1791:1983,https://www.iso.org/standard/6423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 1803:1997,https://www.iso.org/standard/6440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 1804:1972,https://www.iso.org/standard/6443.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 3880-1:1977,https://www.iso.org/standard/9486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 6707-1:2017,https://www.iso.org/standard/72244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 6707-2:2017,https://www.iso.org/standard/70040.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 6707-3:2017,https://www.iso.org/standard/66633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 6927:2012,https://www.iso.org/standard/50093.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 7078:1985,https://www.iso.org/standard/13650.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 8930:1987,https://www.iso.org/standard/16459.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 98/SC 1,https://www.iso.org/contents/data/committee/05/09/50936/x/catalogue/ -ISO 11375:1998,https://www.iso.org/standard/1074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 11886:2002,https://www.iso.org/standard/20320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 11886:2002/Cor 1:2006,https://www.iso.org/standard/43725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 13006:2012,https://www.iso.org/standard/51063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO/FDIS 13006,https://www.iso.org/standard/63406.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13105-1:2014,https://www.iso.org/standard/57236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 15688:2012,https://www.iso.org/standard/55297.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15689:2003,https://www.iso.org/standard/28520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 16039:2004,https://www.iso.org/standard/29072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 16039:2004/Amd 1:2013,https://www.iso.org/standard/57504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 16818:2008,https://www.iso.org/standard/41301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 17740-1:2015,https://www.iso.org/standard/60826.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 18650-1:2004,https://www.iso.org/standard/33545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO/AWI 18650-1,https://www.iso.org/standard/75172.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO/DIS 19711-1.2,https://www.iso.org/standard/66105.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 19720-1:2017,https://www.iso.org/standard/66115.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO/TR 21932:2013,https://www.iso.org/standard/62888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO 29464:2017,https://www.iso.org/standard/62766.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 6707-1:2017,https://www.iso.org/standard/72244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 13473-2:2002,https://www.iso.org/standard/25638.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 15642:2003,https://www.iso.org/standard/28515.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15878:2008,https://www.iso.org/standard/37641.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15878:2008/Cor 1:2008,https://www.iso.org/standard/51929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 4481:1977,https://www.iso.org/standard/10376.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 6289:2003,https://www.iso.org/standard/36160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6289:2003/Cor 1:2005,https://www.iso.org/standard/42160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7152:1997,https://www.iso.org/standard/13747.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 7152:1997/Amd 1:2006,https://www.iso.org/standard/38589.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO/NP 7152,https://www.iso.org/standard/72737.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 8229:1991,https://www.iso.org/standard/15331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 8614:1997,https://www.iso.org/standard/15944.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 12756:2016,https://www.iso.org/standard/69121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 12756,https://www.iso.org/standard/73280.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/PRF TR 21276,https://www.iso.org/standard/70366.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 285,https://www.iso.org/contents/data/committee/48/57/4857971/x/catalogue/ -ISO 23953-1:2015,https://www.iso.org/standard/62001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 7,https://www.iso.org/contents/data/committee/05/03/50386/x/catalogue/ -ISO 1151-1:1988,https://www.iso.org/standard/5699.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-1,https://www.iso.org/standard/68994.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-2:1985,https://www.iso.org/standard/5703.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-2:1985/Add 1:1987,https://www.iso.org/standard/5704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-2,https://www.iso.org/standard/68995.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-3:1989,https://www.iso.org/standard/5707.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-3:1989/Cor 1:1996,https://www.iso.org/standard/26420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-3,https://www.iso.org/standard/68996.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-4:1994,https://www.iso.org/standard/5709.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-5:1987,https://www.iso.org/standard/5712.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-5,https://www.iso.org/standard/68997.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-6:1982,https://www.iso.org/standard/5713.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-6:1982/Amd 1:1984,https://www.iso.org/standard/5714.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-6,https://www.iso.org/standard/68998.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-7:1985,https://www.iso.org/standard/5715.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-7,https://www.iso.org/standard/69000.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-8:1992,https://www.iso.org/standard/5716.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-8,https://www.iso.org/standard/69001.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-9:1993,https://www.iso.org/standard/5717.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-9:1993/Amd 1:1998,https://www.iso.org/standard/5718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-9,https://www.iso.org/standard/69002.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/DTR 1151-13,https://www.iso.org/standard/72698.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/DTR 1151-14,https://www.iso.org/standard/72699.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 3002-1:1982,https://www.iso.org/standard/8052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-1:1982/Amd 1:1992,https://www.iso.org/standard/8053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-2:1982,https://www.iso.org/standard/8054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-3:1984,https://www.iso.org/standard/8055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-4:1984,https://www.iso.org/standard/8056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-5:1989,https://www.iso.org/standard/8057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 4226:2007,https://www.iso.org/standard/44994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 7345:1987,https://www.iso.org/standard/14024.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO/PRF 7345,https://www.iso.org/standard/65000.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 9288:1989,https://www.iso.org/standard/16943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 9346:2007,https://www.iso.org/standard/40550.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 80000-1:2009,https://www.iso.org/standard/30669.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-1:2009/Cor 1:2011,https://www.iso.org/standard/60241.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-1,https://www.iso.org/standard/64972.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-2:2009,https://www.iso.org/standard/31887.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-2,https://www.iso.org/standard/64973.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-3:2006,https://www.iso.org/standard/31888.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-3,https://www.iso.org/standard/64974.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-4:2006,https://www.iso.org/standard/31889.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-4,https://www.iso.org/standard/64975.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-5:2007,https://www.iso.org/standard/31890.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-5,https://www.iso.org/standard/64976.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -IEC 80000-6:2008,https://www.iso.org/standard/31891.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-7:2008,https://www.iso.org/standard/31892.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-7,https://www.iso.org/standard/64977.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-8:2007,https://www.iso.org/standard/40669.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-8,https://www.iso.org/standard/64978.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-9:2009,https://www.iso.org/standard/31894.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-9:2009/Amd 1:2011,https://www.iso.org/standard/57093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-9,https://www.iso.org/standard/64979.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-10:2009,https://www.iso.org/standard/31895.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-10,https://www.iso.org/standard/64980.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-11:2008,https://www.iso.org/standard/31896.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-11,https://www.iso.org/standard/64982.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 80000-12:2009,https://www.iso.org/standard/31897.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO/DIS 80000-12,https://www.iso.org/standard/63480.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -IEC 80000-13:2008,https://www.iso.org/standard/31898.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 12,https://www.iso.org/contents/data/committee/04/62/46202/x/catalogue/ -ISO 32:1977,https://www.iso.org/standard/3659.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 1769:1975,https://www.iso.org/standard/6402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 2574:1994,https://www.iso.org/standard/7536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 3864-2:2016,https://www.iso.org/standard/66836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 6009:2016,https://www.iso.org/standard/63277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 6217:1982,https://www.iso.org/standard/12492.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 7711-3:2004,https://www.iso.org/standard/37701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 8843:2005,https://www.iso.org/standard/37435.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8843:2005/Amd 1:2012,https://www.iso.org/standard/61987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 9095:1990,https://www.iso.org/standard/16689.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 9247:1990,https://www.iso.org/standard/16897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 9247:1990/Amd 1:1998,https://www.iso.org/standard/29854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 10243:2010,https://www.iso.org/standard/50759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10243:2010/Amd 1:2011,https://www.iso.org/standard/58104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10625:2005,https://www.iso.org/standard/37186.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/DIS 10625,https://www.iso.org/standard/70624.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 14726:2008,https://www.iso.org/standard/44744.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 22324:2015,https://www.iso.org/standard/50061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 15241:2012,https://www.iso.org/standard/60135.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO/IEC Guide 74:2004,https://www.iso.org/standard/36942.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC WD Guide 74,https://www.iso.org/standard/57995.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO 3864-3:2012,https://www.iso.org/standard/55814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 17724:2003,https://www.iso.org/standard/33186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145,https://www.iso.org/contents/data/committee/05/26/52662/x/catalogue/ -ISO/CD TR 20559,https://www.iso.org/standard/68380.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 81714-1:2010,https://www.iso.org/standard/42100.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -IEC 81714-2:2006,https://www.iso.org/standard/41267.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -IEC 81714-3:2004,https://www.iso.org/standard/40134.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 3864-1:2011,https://www.iso.org/standard/51021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 3864-2:2016,https://www.iso.org/standard/66836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 3864-4:2011,https://www.iso.org/standard/51000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7001:2007,https://www.iso.org/standard/41081.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/Amd 1:2013,https://www.iso.org/standard/63487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/Amd 1:2013/Cor 1:2014,https://www.iso.org/standard/66218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/Amd 2:2015,https://www.iso.org/standard/67047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/Amd 3:2016,https://www.iso.org/standard/71012.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/Amd 4:2017,https://www.iso.org/standard/72251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/CD Amd 101,https://www.iso.org/standard/75328.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/CD Amd 102,https://www.iso.org/standard/75329.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/CD Amd 103,https://www.iso.org/standard/75330.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/CD Amd 104,https://www.iso.org/standard/75331.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/CD Amd 105,https://www.iso.org/standard/75332.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7001:2007/CD Amd 106,https://www.iso.org/standard/75333.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 7010:2011,https://www.iso.org/standard/54432.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 1:2012,https://www.iso.org/standard/57446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 2:2012,https://www.iso.org/standard/62280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 3:2012,https://www.iso.org/standard/62668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 4:2013,https://www.iso.org/standard/63655.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 5:2014,https://www.iso.org/standard/65374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 6:2014,https://www.iso.org/standard/67147.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 7:2016,https://www.iso.org/standard/71288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 8:2017,https://www.iso.org/standard/74359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 199,https://www.iso.org/standard/73388.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 199,https://www.iso.org/standard/71371.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 200,https://www.iso.org/standard/71372.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 201,https://www.iso.org/standard/71373.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 202,https://www.iso.org/standard/71374.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 203,https://www.iso.org/standard/71375.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 204,https://www.iso.org/standard/71377.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 205,https://www.iso.org/standard/71378.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 206,https://www.iso.org/standard/71379.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 207,https://www.iso.org/standard/71380.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 208,https://www.iso.org/standard/71381.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 209,https://www.iso.org/standard/71383.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 210,https://www.iso.org/standard/71385.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 211,https://www.iso.org/standard/71386.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 212,https://www.iso.org/standard/71387.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 213,https://www.iso.org/standard/71388.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 214,https://www.iso.org/standard/71389.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 215,https://www.iso.org/standard/71390.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 216,https://www.iso.org/standard/71391.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 217,https://www.iso.org/standard/71392.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 218,https://www.iso.org/standard/71393.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 219,https://www.iso.org/standard/71394.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 220,https://www.iso.org/standard/71395.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 221,https://www.iso.org/standard/71396.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 222,https://www.iso.org/standard/71397.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 223,https://www.iso.org/standard/71398.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 224,https://www.iso.org/standard/71399.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 225,https://www.iso.org/standard/71400.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 226,https://www.iso.org/standard/71401.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 227,https://www.iso.org/standard/71403.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 228,https://www.iso.org/standard/71404.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 229,https://www.iso.org/standard/71405.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 230,https://www.iso.org/standard/71406.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 231,https://www.iso.org/standard/71408.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 232,https://www.iso.org/standard/71409.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 233,https://www.iso.org/standard/71410.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 234,https://www.iso.org/standard/71411.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 235,https://www.iso.org/standard/71414.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 236,https://www.iso.org/standard/71415.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 237,https://www.iso.org/standard/71416.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 238,https://www.iso.org/standard/71417.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 240,https://www.iso.org/standard/75324.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 241,https://www.iso.org/standard/75325.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 242,https://www.iso.org/standard/75326.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 188,https://www.iso.org/standard/70355.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 189,https://www.iso.org/standard/70358.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 190,https://www.iso.org/standard/70924.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 191,https://www.iso.org/standard/70926.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 192,https://www.iso.org/standard/70927.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 193,https://www.iso.org/standard/70928.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 195,https://www.iso.org/standard/70930.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 196,https://www.iso.org/standard/70931.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 197,https://www.iso.org/standard/70932.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 198,https://www.iso.org/standard/70933.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 239,https://www.iso.org/standard/72732.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO/CD 7010,https://www.iso.org/standard/72424.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 9186-1:2014,https://www.iso.org/standard/59226.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145,https://www.iso.org/contents/data/committee/05/26/52662/x/catalogue/ -ISO 9186-2:2008,https://www.iso.org/standard/43484.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 145,https://www.iso.org/contents/data/committee/05/26/52662/x/catalogue/ -ISO 9186-3:2014,https://www.iso.org/standard/59882.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145,https://www.iso.org/contents/data/committee/05/26/52662/x/catalogue/ -ISO 16069:2017,https://www.iso.org/standard/66837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 17398:2004,https://www.iso.org/standard/30647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 20712-1:2008,https://www.iso.org/standard/39682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 20712-2:2007,https://www.iso.org/standard/39683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 20712-3:2014,https://www.iso.org/standard/62269.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 22727:2007,https://www.iso.org/standard/41091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 23601:2009,https://www.iso.org/standard/41685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 28564-1:2010,https://www.iso.org/standard/44762.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 28564-2:2016,https://www.iso.org/standard/56797.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO/DIS 28564-3,https://www.iso.org/standard/67692.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 145/SC 1,https://www.iso.org/contents/data/committee/05/26/52682/x/catalogue/ -ISO 361:1975,https://www.iso.org/standard/4327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 369:2009,https://www.iso.org/standard/53391.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2575:2010,https://www.iso.org/standard/54513.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 1:2011,https://www.iso.org/standard/55224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 3:2014,https://www.iso.org/standard/57913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 5:2016,https://www.iso.org/standard/65518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 6:2017,https://www.iso.org/standard/71504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 7:2017,https://www.iso.org/standard/71505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/DIS 2575,https://www.iso.org/standard/68409.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2972:1979,https://www.iso.org/standard/8027.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 3287:1999,https://www.iso.org/standard/1130.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3767-1:2016,https://www.iso.org/standard/60090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-1:2016/CD Amd 1,https://www.iso.org/standard/74566.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-2:2016,https://www.iso.org/standard/60092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-2:2016/CD Amd 1,https://www.iso.org/standard/74567.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-3:2016,https://www.iso.org/standard/60094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-4:2016,https://www.iso.org/standard/60095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-5:2016,https://www.iso.org/standard/60096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3826-2:2008,https://www.iso.org/standard/45611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 3864-2:2016,https://www.iso.org/standard/66836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 3864-4:2011,https://www.iso.org/standard/51000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 4129:2012,https://www.iso.org/standard/45395.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 5232:1998,https://www.iso.org/standard/26571.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 72/SC 10,https://www.iso.org/contents/data/committee/66/95/669565/x/catalogue/ -ISO 6050:1987,https://www.iso.org/standard/12242.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 6405-1:2017,https://www.iso.org/standard/68551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6405-2:2017,https://www.iso.org/standard/68552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6727:2012,https://www.iso.org/standard/41874.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 7000:2014,https://www.iso.org/standard/65977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 3,https://www.iso.org/contents/data/committee/05/27/52700/x/catalogue/ -ISO 7010:2011,https://www.iso.org/standard/54432.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 1:2012,https://www.iso.org/standard/57446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 2:2012,https://www.iso.org/standard/62280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 3:2012,https://www.iso.org/standard/62668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 4:2013,https://www.iso.org/standard/63655.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 5:2014,https://www.iso.org/standard/65374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 6:2014,https://www.iso.org/standard/67147.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 7:2016,https://www.iso.org/standard/71288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/Amd 8:2017,https://www.iso.org/standard/74359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 199,https://www.iso.org/standard/73388.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 199,https://www.iso.org/standard/71371.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 200,https://www.iso.org/standard/71372.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 201,https://www.iso.org/standard/71373.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 202,https://www.iso.org/standard/71374.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 203,https://www.iso.org/standard/71375.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 204,https://www.iso.org/standard/71377.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 205,https://www.iso.org/standard/71378.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 206,https://www.iso.org/standard/71379.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 207,https://www.iso.org/standard/71380.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 208,https://www.iso.org/standard/71381.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 209,https://www.iso.org/standard/71383.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 210,https://www.iso.org/standard/71385.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 211,https://www.iso.org/standard/71386.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 212,https://www.iso.org/standard/71387.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 213,https://www.iso.org/standard/71388.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 214,https://www.iso.org/standard/71389.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 215,https://www.iso.org/standard/71390.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 216,https://www.iso.org/standard/71391.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 217,https://www.iso.org/standard/71392.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 218,https://www.iso.org/standard/71393.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 219,https://www.iso.org/standard/71394.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 220,https://www.iso.org/standard/71395.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 221,https://www.iso.org/standard/71396.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 222,https://www.iso.org/standard/71397.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 223,https://www.iso.org/standard/71398.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 224,https://www.iso.org/standard/71399.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 225,https://www.iso.org/standard/71400.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 226,https://www.iso.org/standard/71401.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 227,https://www.iso.org/standard/71403.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 228,https://www.iso.org/standard/71404.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 229,https://www.iso.org/standard/71405.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 230,https://www.iso.org/standard/71406.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 231,https://www.iso.org/standard/71408.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 232,https://www.iso.org/standard/71409.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 233,https://www.iso.org/standard/71410.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 234,https://www.iso.org/standard/71411.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 235,https://www.iso.org/standard/71414.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 236,https://www.iso.org/standard/71415.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 237,https://www.iso.org/standard/71416.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 238,https://www.iso.org/standard/71417.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 240,https://www.iso.org/standard/75324.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 241,https://www.iso.org/standard/75325.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/CD Amd 242,https://www.iso.org/standard/75326.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 188,https://www.iso.org/standard/70355.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 189,https://www.iso.org/standard/70358.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 190,https://www.iso.org/standard/70924.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 191,https://www.iso.org/standard/70926.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 192,https://www.iso.org/standard/70927.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 193,https://www.iso.org/standard/70928.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 195,https://www.iso.org/standard/70930.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 196,https://www.iso.org/standard/70931.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 197,https://www.iso.org/standard/70932.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 198,https://www.iso.org/standard/70933.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7010:2011/DAmd 239,https://www.iso.org/standard/72732.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO/CD 7010,https://www.iso.org/standard/72424.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 7287:2002,https://www.iso.org/standard/31768.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 7296-1:1991,https://www.iso.org/standard/13956.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 7296-1:1991/Amd 1:1996,https://www.iso.org/standard/23385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 7296-2:1996,https://www.iso.org/standard/24511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 7296-3:2006,https://www.iso.org/standard/44460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 7639:1985,https://www.iso.org/standard/14454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 8999:2001,https://www.iso.org/standard/30758.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 9031:1987,https://www.iso.org/standard/16592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 9128:2006,https://www.iso.org/standard/40459.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 9244:2008,https://www.iso.org/standard/39256.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 9244:2008/Amd 1:2016,https://www.iso.org/standard/67236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 9687:2015,https://www.iso.org/standard/59876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 9687:2015/FDAmd 1,https://www.iso.org/standard/69317.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 10284:1997,https://www.iso.org/standard/18326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 11192:2005,https://www.iso.org/standard/41644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 11532,https://www.iso.org/standard/70671.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11532:2012,https://www.iso.org/standard/40066.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11684:1995,https://www.iso.org/standard/19609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 13200:1995,https://www.iso.org/standard/20498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO/IEC 13251:2004,https://www.iso.org/standard/21486.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC DIS 13251,https://www.iso.org/standard/74344.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC DIS 13251,https://www.iso.org/standard/66802.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO 15223-1:2016,https://www.iso.org/standard/69081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 15223-2:2010,https://www.iso.org/standard/42343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TR 15847:2008,https://www.iso.org/standard/44403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15870:2000,https://www.iso.org/standard/29325.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/DIS 15870,https://www.iso.org/standard/75009.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 16069:2017,https://www.iso.org/standard/66837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 17080:2005,https://www.iso.org/standard/40889.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 17398:2004,https://www.iso.org/standard/30647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 2,https://www.iso.org/contents/data/committee/05/26/52692/x/catalogue/ -ISO 20381:2009,https://www.iso.org/standard/39745.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 21482:2007,https://www.iso.org/standard/40264.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 27185:2012,https://www.iso.org/standard/52552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -IEC 80416-1:2008,https://www.iso.org/standard/40630.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 145/SC 3,https://www.iso.org/contents/data/committee/05/27/52700/x/catalogue/ -ISO 80416-2:2001,https://www.iso.org/standard/33084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 3,https://www.iso.org/contents/data/committee/05/27/52700/x/catalogue/ -IEC 80416-3:2002,https://www.iso.org/standard/33757.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 145/SC 3,https://www.iso.org/contents/data/committee/05/27/52700/x/catalogue/ -IEC 80416-3:2002/Amd 1:2013,https://www.iso.org/standard/54113.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 145/SC 3,https://www.iso.org/contents/data/committee/05/27/52700/x/catalogue/ -ISO 80416-4:2005,https://www.iso.org/standard/34951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 3,https://www.iso.org/contents/data/committee/05/27/52700/x/catalogue/ -ISO 561:1989,https://www.iso.org/standard/4651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 701:1998,https://www.iso.org/standard/23865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 710-1:1974,https://www.iso.org/standard/4919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-2:1974,https://www.iso.org/standard/4920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-3:1974,https://www.iso.org/standard/4921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-4:1982,https://www.iso.org/standard/4922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-5:1989,https://www.iso.org/standard/4924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-6:1984,https://www.iso.org/standard/4925.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-7:1984,https://www.iso.org/standard/4926.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1219-1:2012,https://www.iso.org/standard/60184.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 1219-1:2012/Amd 1:2016,https://www.iso.org/standard/66287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 1219-2:2012,https://www.iso.org/standard/51200.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 1219-3:2016,https://www.iso.org/standard/62614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 1,https://www.iso.org/contents/data/committee/05/22/52242/x/catalogue/ -ISO 1964:1987,https://www.iso.org/standard/6692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 3511-1:1977,https://www.iso.org/standard/8869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 3511-2:1984,https://www.iso.org/standard/8871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 3511-3:1984,https://www.iso.org/standard/8873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 3511-4:1985,https://www.iso.org/standard/8875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 3952-1:1981,https://www.iso.org/standard/9603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3952-1:1981/Amd 1:2002,https://www.iso.org/standard/34420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3952-2:1981,https://www.iso.org/standard/9604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3952-3:1979,https://www.iso.org/standard/9605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3952-4:1984,https://www.iso.org/standard/9606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 5232:1998,https://www.iso.org/standard/26571.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 72/SC 10,https://www.iso.org/contents/data/committee/66/95/669565/x/catalogue/ -ISO 5859:2014,https://www.iso.org/standard/61634.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9878:1990,https://www.iso.org/standard/17757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 10628-2:2012,https://www.iso.org/standard/51841.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 12671:2012,https://www.iso.org/standard/51648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14084-1:2015,https://www.iso.org/standard/54427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14084-2:2015,https://www.iso.org/standard/54428.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO/DIS 14617,https://www.iso.org/standard/66002.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-1:2005,https://www.iso.org/standard/41838.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-2:2002,https://www.iso.org/standard/22650.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-3:2002,https://www.iso.org/standard/22651.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-4:2002,https://www.iso.org/standard/22652.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-5:2002,https://www.iso.org/standard/22653.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-6:2002,https://www.iso.org/standard/22654.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-7:2002,https://www.iso.org/standard/33385.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-8:2002,https://www.iso.org/standard/33386.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-9:2002,https://www.iso.org/standard/33388.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-10:2002,https://www.iso.org/standard/33389.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-11:2002,https://www.iso.org/standard/33390.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-12:2002,https://www.iso.org/standard/33391.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-13:2004,https://www.iso.org/standard/32516.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-14:2004,https://www.iso.org/standard/32822.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14617-15:2002,https://www.iso.org/standard/22668.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 15081:2011,https://www.iso.org/standard/53636.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 15519-1:2010,https://www.iso.org/standard/37547.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 15519-2:2015,https://www.iso.org/standard/54916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 17338:2009,https://www.iso.org/standard/50231.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 19018:2004,https://www.iso.org/standard/33730.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/NP 19018,https://www.iso.org/standard/65692.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 11145:2016,https://www.iso.org/standard/65247.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 11145,https://www.iso.org/standard/72944.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 5807:1985,https://www.iso.org/standard/11955.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO 8790:1987,https://www.iso.org/standard/16214.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15416:2016,https://www.iso.org/standard/65577.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15417:2007,https://www.iso.org/standard/43896.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15420:2009,https://www.iso.org/standard/46143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15424:2008,https://www.iso.org/standard/46144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16022:2006,https://www.iso.org/standard/44230.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16022:2006/Cor 1:2008,https://www.iso.org/standard/52201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16022:2006/Cor 2:2011,https://www.iso.org/standard/57333.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16023:2000,https://www.iso.org/standard/29835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16388:2007,https://www.iso.org/standard/43897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16390:2007,https://www.iso.org/standard/43898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18004:2006/Cor 1:2009,https://www.iso.org/standard/52815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18004:2015,https://www.iso.org/standard/62021.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 19782:2006,https://www.iso.org/standard/33920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24723:2010,https://www.iso.org/standard/51425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24724:2011,https://www.iso.org/standard/51426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24779-1:2016,https://www.iso.org/standard/57379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24779-4:2017,https://www.iso.org/standard/60477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC DIS 24779-5,https://www.iso.org/standard/70909.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24779-9:2015,https://www.iso.org/standard/58100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO 780:2015,https://www.iso.org/standard/59933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 1951:2007,https://www.iso.org/standard/36609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 10318-2:2015,https://www.iso.org/standard/44886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10318-2:2015/FDAmd 1,https://www.iso.org/standard/68881.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 21531:2009,https://www.iso.org/standard/34571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 22742:2010,https://www.iso.org/standard/53004.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 128-1:2003,https://www.iso.org/standard/32462.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO/NP 128-1,https://www.iso.org/standard/65296.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 128-20:1996,https://www.iso.org/standard/1408.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 128-21:1997,https://www.iso.org/standard/27382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 128-22:1999,https://www.iso.org/standard/29094.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 128-30:2001,https://www.iso.org/standard/3939.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 128-40:2001,https://www.iso.org/standard/30692.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 128-50:2001,https://www.iso.org/standard/24240.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 129-1,https://www.iso.org/standard/64007.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 129-1:2004,https://www.iso.org/standard/29015.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 129-4:2013,https://www.iso.org/standard/54559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO/FDIS 129-5,https://www.iso.org/standard/65328.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3098-1:2015,https://www.iso.org/standard/65679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 3098-2:2000,https://www.iso.org/standard/33195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 3098-3:2000,https://www.iso.org/standard/33197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 3098-4:2000,https://www.iso.org/standard/33200.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 3098-5:1997,https://www.iso.org/standard/24793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 3098-6:2000,https://www.iso.org/standard/33201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 3272-1:2003,https://www.iso.org/standard/36544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-1:2003/Cor 1:2009,https://www.iso.org/standard/54345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-2:1994,https://www.iso.org/standard/8503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-3:2001,https://www.iso.org/standard/36114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-4:1994,https://www.iso.org/standard/8507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-6:2000,https://www.iso.org/standard/8509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 5455:1979,https://www.iso.org/standard/11500.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 5456-1:1996,https://www.iso.org/standard/11501.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 5456-2:1996,https://www.iso.org/standard/11502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 5456-3:1996,https://www.iso.org/standard/11503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 5456-4:1996,https://www.iso.org/standard/11504.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 5457:1999,https://www.iso.org/standard/29017.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 5457:1999/Amd 1:2010,https://www.iso.org/standard/46218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 6428:1982,https://www.iso.org/standard/12779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO/PRF TR 23605,https://www.iso.org/standard/70142.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TR 23605:2009,https://www.iso.org/standard/41705.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 128-15:2013,https://www.iso.org/standard/54560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 128-24:2014,https://www.iso.org/standard/57099.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 128-25:1999,https://www.iso.org/standard/29096.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 128-34:2001,https://www.iso.org/standard/33942.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 128-44:2001,https://www.iso.org/standard/33943.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO/TS 128-71:2010,https://www.iso.org/standard/41611.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 1101:2012/Cor 1:2013,https://www.iso.org/standard/63512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1101:2017,https://www.iso.org/standard/66777.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1302:2002,https://www.iso.org/standard/28089.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1660:2017,https://www.iso.org/standard/63218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 2162-1:1993,https://www.iso.org/standard/6953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 2162-2:1993,https://www.iso.org/standard/6954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 2203:1973,https://www.iso.org/standard/7006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 2553:2013,https://www.iso.org/standard/42192.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/DIS 2553,https://www.iso.org/standard/72740.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 2692:2014,https://www.iso.org/standard/60775.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/NP 2692,https://www.iso.org/standard/74592.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 3040:2016,https://www.iso.org/standard/67649.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 5261:1995,https://www.iso.org/standard/21512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 5459:2011,https://www.iso.org/standard/40358.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DIS 5459.2,https://www.iso.org/standard/66832.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 5845-1:1995,https://www.iso.org/standard/12039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 5845-2:1995,https://www.iso.org/standard/12040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 6410-1:1993,https://www.iso.org/standard/12750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 6410-2:1993,https://www.iso.org/standard/12751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 6410-3:1993,https://www.iso.org/standard/12752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 6411:1982,https://www.iso.org/standard/12753.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 6413:1988,https://www.iso.org/standard/12757.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO/DIS 6413,https://www.iso.org/standard/66650.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 7083:1983,https://www.iso.org/standard/13655.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO/NP 7083,https://www.iso.org/standard/66740.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 8015:2011,https://www.iso.org/standard/55979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8826-1:1989,https://www.iso.org/standard/16299.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 8826-2:1994,https://www.iso.org/standard/16300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 9222-1:1989,https://www.iso.org/standard/16853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 9222-2:1989,https://www.iso.org/standard/16854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 10110-1:2006,https://www.iso.org/standard/35991.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/CD 10110-1,https://www.iso.org/standard/57574.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-2:1996,https://www.iso.org/standard/18089.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-3:1996,https://www.iso.org/standard/18090.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-4:1997,https://www.iso.org/standard/21004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-5:2015,https://www.iso.org/standard/57566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-6:2015,https://www.iso.org/standard/55772.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-7:2017,https://www.iso.org/standard/65444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-8:2010,https://www.iso.org/standard/46553.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/CD 10110-8,https://www.iso.org/standard/69532.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-9:2016,https://www.iso.org/standard/63596.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-10:2004,https://www.iso.org/standard/34625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-11:2016,https://www.iso.org/standard/68315.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-12:2007,https://www.iso.org/standard/37993.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-12:2007/Amd 1:2013,https://www.iso.org/standard/59309.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/CD 10110-12,https://www.iso.org/standard/69956.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-14:2007,https://www.iso.org/standard/42363.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/DIS 10110-14,https://www.iso.org/standard/69957.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-17:2004,https://www.iso.org/standard/30924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/DIS 10110-18,https://www.iso.org/standard/68155.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-19:2015,https://www.iso.org/standard/60467.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10135:2007,https://www.iso.org/standard/33258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10579:2010,https://www.iso.org/standard/54707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10579:2010/Cor 1:2011,https://www.iso.org/standard/60818.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13444:2012,https://www.iso.org/standard/53788.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 13715:2017,https://www.iso.org/standard/61328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 15785:2002,https://www.iso.org/standard/28989.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 15786:2008,https://www.iso.org/standard/42099.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 15787:2016,https://www.iso.org/standard/56851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 16249:2013,https://www.iso.org/standard/56004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 17599:2015,https://www.iso.org/standard/62208.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 18388:2016,https://www.iso.org/standard/62358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 128-23:1999,https://www.iso.org/standard/22292.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 128-33,https://www.iso.org/standard/63795.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 128-43:2015,https://www.iso.org/standard/63794.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 3766:2003,https://www.iso.org/standard/34171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 4157-1:1998,https://www.iso.org/standard/26189.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 4157-2:1998,https://www.iso.org/standard/26190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 4157-3:1998,https://www.iso.org/standard/26950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 4172:1991,https://www.iso.org/standard/9943.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 6284:1996,https://www.iso.org/standard/12568.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 7437:1990,https://www.iso.org/standard/14173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 7518:1983,https://www.iso.org/standard/14287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 7519:1991,https://www.iso.org/standard/14288.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 8048:1984,https://www.iso.org/standard/15063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 8560:1986,https://www.iso.org/standard/15822.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO/DIS 8560,https://www.iso.org/standard/72755.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 9431:1990,https://www.iso.org/standard/17133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 11091:1994,https://www.iso.org/standard/19080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO/TR 16310:2014,https://www.iso.org/standard/56142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 9175-1:1988,https://www.iso.org/standard/16778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9177-1:2016,https://www.iso.org/standard/69128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9177-2:1989,https://www.iso.org/standard/16782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9177-3:1994,https://www.iso.org/standard/20426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9180:1988,https://www.iso.org/standard/16787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9957-1:1992,https://www.iso.org/standard/17858.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9957-2:1995,https://www.iso.org/standard/21207.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9957-3:1997,https://www.iso.org/standard/26478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9958-1:1992,https://www.iso.org/standard/17859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9958-2:1992,https://www.iso.org/standard/17860.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9959-1:1992,https://www.iso.org/standard/17861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9960-1:1992,https://www.iso.org/standard/17862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9961:1992,https://www.iso.org/standard/17864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9962-1:1992,https://www.iso.org/standard/17865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9962-2:1992,https://www.iso.org/standard/17866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 12756:2016,https://www.iso.org/standard/69121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 12756,https://www.iso.org/standard/73280.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 12757-2:1998,https://www.iso.org/standard/23718.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 14145-2:1998,https://www.iso.org/standard/23720.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 20318-1,https://www.iso.org/standard/67662.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 20318-2,https://www.iso.org/standard/67689.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 27668-2:2009,https://www.iso.org/standard/44271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 6412-1:2017,https://www.iso.org/standard/73352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 6412-2:2017,https://www.iso.org/standard/73353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 6412-3:2017,https://www.iso.org/standard/73354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 6414:1982,https://www.iso.org/standard/12758.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO/NP 6414,https://www.iso.org/standard/74192.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 6433:2012,https://www.iso.org/standard/51527.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 7200:2004,https://www.iso.org/standard/35446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 7573:2008,https://www.iso.org/standard/43883.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 8887-1:2017,https://www.iso.org/standard/62047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 10209:2012,https://www.iso.org/standard/51183.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/NP 10209,https://www.iso.org/standard/73872.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 10628-1:2014,https://www.iso.org/standard/51840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 11005:2010,https://www.iso.org/standard/46564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 11442:2006,https://www.iso.org/standard/39380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 13567-1:2017,https://www.iso.org/standard/70181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 13567-2:2017,https://www.iso.org/standard/70182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 15226:1999,https://www.iso.org/standard/26947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 15519-1:2010,https://www.iso.org/standard/37547.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 15519-2:2015,https://www.iso.org/standard/54916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 16016:2016,https://www.iso.org/standard/65277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 16792:2015,https://www.iso.org/standard/56865.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/NP 16792,https://www.iso.org/standard/73871.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/CD 20719-1,https://www.iso.org/standard/68913.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 21600,https://www.iso.org/standard/71225.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 29845:2011,https://www.iso.org/standard/45705.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO/NP 29845,https://www.iso.org/standard/73874.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO/NP 81346-3,https://www.iso.org/standard/71419.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO/TS 81346-3:2012,https://www.iso.org/standard/59598.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO/TS 81346-10:2015,https://www.iso.org/standard/63881.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO/FDIS 81346-12,https://www.iso.org/standard/63886.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 81714-1:2010,https://www.iso.org/standard/42100.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -IEC 81714-2:2006,https://www.iso.org/standard/41267.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -IEC 81714-3:2004,https://www.iso.org/standard/40134.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -IEC 82045-1:2001,https://www.iso.org/standard/34159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -IEC 82045-2:2004,https://www.iso.org/standard/34513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -IEC 82045-2:2004/Cor 1:2014,https://www.iso.org/standard/67987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -IEC 82079-1:2012,https://www.iso.org/standard/55833.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -IEC/CD 82079-1,https://www.iso.org/standard/71620.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO/IEC Guide 2:2004,https://www.iso.org/standard/39976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC FDIS Guide 14,https://www.iso.org/standard/64888.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 14:2003,https://www.iso.org/standard/33306.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 17:2016,https://www.iso.org/standard/67340.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 21-1:2005,https://www.iso.org/standard/39799.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 21-2:2005,https://www.iso.org/standard/39800.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 37:2012,https://www.iso.org/standard/39881.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC DGuide 41,https://www.iso.org/standard/64889.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 41:2003,https://www.iso.org/standard/33319.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 50:2014,https://www.iso.org/standard/63937.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 51:2014,https://www.iso.org/standard/53940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 59:1994,https://www.iso.org/standard/23390.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC WD Guide 59,https://www.iso.org/standard/71917.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TMBG/JWG Guide 59,https://www.iso.org/contents/data/committee/63/71/6371827/x/catalogue/ -ISO/IEC CD Guide 63,https://www.iso.org/standard/67944.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO Guide 64:2008,https://www.iso.org/standard/41352.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 71:2014,https://www.iso.org/standard/57385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO Guide 73:2009,https://www.iso.org/standard/44651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO Guide 78:2012,https://www.iso.org/standard/57206.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO Guide 82:2014,https://www.iso.org/standard/57775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 10241-1:2011,https://www.iso.org/standard/40362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 10241-2:2012,https://www.iso.org/standard/43414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 12616:2002,https://www.iso.org/standard/35360.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO/AWI 12616-1,https://www.iso.org/standard/72308.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 15188:2001,https://www.iso.org/standard/26698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO/TR 17465-2:2015,https://www.iso.org/standard/62890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17465-3:2015,https://www.iso.org/standard/63842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 19300:2015,https://www.iso.org/standard/64081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/IEC TR 19764:2005,https://www.iso.org/standard/35399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/TR 22100-3:2016,https://www.iso.org/standard/62296.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/TR 22411:2008,https://www.iso.org/standard/40933.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159,https://www.iso.org/contents/data/committee/05/33/53348/x/catalogue/ -ISO 9:1995,https://www.iso.org/standard/3589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 233:1984,https://www.iso.org/standard/4117.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 233-2:1993,https://www.iso.org/standard/4118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 233-3:1999,https://www.iso.org/standard/2398.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 259:1984,https://www.iso.org/standard/4161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 259-2:1994,https://www.iso.org/standard/4162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 843:1997,https://www.iso.org/standard/5215.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 3602:1989,https://www.iso.org/standard/9029.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 7098:2015,https://www.iso.org/standard/61420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 9984:1996,https://www.iso.org/standard/17892.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 9985:1996,https://www.iso.org/standard/17893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 11940:1998,https://www.iso.org/standard/20574.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 11940-2:2007,https://www.iso.org/standard/29544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 15919:2001,https://www.iso.org/standard/28333.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 15924:2004,https://www.iso.org/standard/29546.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO/CD 20674-1,https://www.iso.org/standard/68790.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 24614-1:2010,https://www.iso.org/standard/41665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24614-2:2011,https://www.iso.org/standard/41666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24624:2016,https://www.iso.org/standard/37338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 214:1976,https://www.iso.org/standard/4084.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 215:1986,https://www.iso.org/standard/4086.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 639-1:2002,https://www.iso.org/standard/22109.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 639-2:1998,https://www.iso.org/standard/4767.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 639-3:2007,https://www.iso.org/standard/39534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 639-4:2010,https://www.iso.org/standard/39535.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO/AWI 639-4,https://www.iso.org/standard/74575.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 639-5:2008,https://www.iso.org/standard/39536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 2,https://www.iso.org/contents/data/committee/04/81/48124/x/catalogue/ -ISO 690:2010,https://www.iso.org/standard/43320.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/WD 690,https://www.iso.org/standard/72642.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 832:1994,https://www.iso.org/standard/5195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 2108:2017,https://www.iso.org/standard/65483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 2146:2010,https://www.iso.org/standard/44936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 2789:2013,https://www.iso.org/standard/60680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 3297:2017,https://www.iso.org/standard/73322.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/NP 3297,https://www.iso.org/standard/73846.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 3901,https://www.iso.org/standard/64817.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 3901:2001,https://www.iso.org/standard/23401.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 4087:2005,https://www.iso.org/standard/26165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 5122:1979,https://www.iso.org/standard/11113.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 5123:1984,https://www.iso.org/standard/11114.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 5127:2017,https://www.iso.org/standard/59743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 5963:1985,https://www.iso.org/standard/12158.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 7154:1983,https://www.iso.org/standard/13750.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 7220:1996,https://www.iso.org/standard/13856.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 7220:1996/Cor 1:2001,https://www.iso.org/standard/36325.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 9230:2007,https://www.iso.org/standard/36313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 9707:2008,https://www.iso.org/standard/36314.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 10324:1997,https://www.iso.org/standard/18372.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 10957:2009,https://www.iso.org/standard/43173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 11108:1996,https://www.iso.org/standard/1708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO/TR 11219:2012,https://www.iso.org/standard/50251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 11620:2014,https://www.iso.org/standard/56755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 11798:1999,https://www.iso.org/standard/20031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 11799:2015,https://www.iso.org/standard/63810.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 13008:2012,https://www.iso.org/standard/52326.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/TR 13028:2010,https://www.iso.org/standard/52391.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/TR 14873:2013,https://www.iso.org/standard/55211.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 15489-1:2016,https://www.iso.org/standard/62542.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 15706-1:2002/Amd 1:2008,https://www.iso.org/standard/39470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 15706-1:2002,https://www.iso.org/standard/28779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 15706-2:2007,https://www.iso.org/standard/35581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 15707:2001,https://www.iso.org/standard/28780.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 15924:2004,https://www.iso.org/standard/29546.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 16175-1:2010,https://www.iso.org/standard/55790.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/AWI 16175-1,https://www.iso.org/standard/74294.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 16175-2:2011,https://www.iso.org/standard/55791.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/AWI 16175-2,https://www.iso.org/standard/74293.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 16175-3:2010,https://www.iso.org/standard/55792.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 16245:2009,https://www.iso.org/standard/45988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 16439:2014,https://www.iso.org/standard/56756.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 17068:2017,https://www.iso.org/standard/66760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 17316:2015,https://www.iso.org/standard/59560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/TR 18128:2014,https://www.iso.org/standard/61521.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/TS 18344:2016,https://www.iso.org/standard/62225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 18461:2016,https://www.iso.org/standard/62504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 18829:2017,https://www.iso.org/standard/63513.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/TR 19263-1:2017,https://www.iso.org/standard/64220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 19264-1:2017,https://www.iso.org/standard/64221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD 19580,https://www.iso.org/standard/65306.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO/TR 19814:2017,https://www.iso.org/standard/66263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO/PRF TR 19815,https://www.iso.org/standard/66264.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 20247:2018,https://www.iso.org/standard/67408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/PRF TR 20694,https://www.iso.org/standard/68852.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 37/SC 1,https://www.iso.org/contents/data/committee/04/81/48116/x/catalogue/ -ISO 21047:2009,https://www.iso.org/standard/41603.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/NP 21047,https://www.iso.org/standard/73300.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/CD 21110,https://www.iso.org/standard/69922.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO/CD 21248,https://www.iso.org/standard/70233.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO/DTR 21965,https://www.iso.org/standard/72312.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 22310:2006,https://www.iso.org/standard/40899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 23081-1:2017,https://www.iso.org/standard/73172.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 23081-2:2009,https://www.iso.org/standard/50863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/TR 23081-3:2011,https://www.iso.org/standard/57121.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 24610-1:2006,https://www.iso.org/standard/37324.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24610-2:2011,https://www.iso.org/standard/43823.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24619:2011,https://www.iso.org/standard/37333.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO/TS 24620-1:2015,https://www.iso.org/standard/37334.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 24622-1:2015,https://www.iso.org/standard/37336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO/CD 24622-2,https://www.iso.org/standard/64579.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 37/SC 4,https://www.iso.org/contents/data/committee/29/75/297592/x/catalogue/ -ISO 25964-1:2011,https://www.iso.org/standard/53657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 25964-2:2013,https://www.iso.org/standard/53658.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/TR 26122:2008,https://www.iso.org/standard/43391.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/TR 26122:2008/Cor 1:2009,https://www.iso.org/standard/54344.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 26324:2012,https://www.iso.org/standard/43506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 27729:2012,https://www.iso.org/standard/44292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 27729:2012/Cor 1:2013,https://www.iso.org/standard/64745.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 27730:2012,https://www.iso.org/standard/44293.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/TR 28118:2009,https://www.iso.org/standard/44512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 8,https://www.iso.org/contents/data/committee/04/88/48826/x/catalogue/ -ISO 30300:2011,https://www.iso.org/standard/53732.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/AWI 30300,https://www.iso.org/standard/74291.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 30301:2011,https://www.iso.org/standard/53733.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO/AWI 30301,https://www.iso.org/standard/74292.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 30302:2015,https://www.iso.org/standard/54673.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 11,https://www.iso.org/contents/data/committee/04/88/48856/x/catalogue/ -ISO 838:1974,https://www.iso.org/standard/5207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 3166-1:2013,https://www.iso.org/standard/63545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO/NP 3166-1,https://www.iso.org/standard/72482.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 3166-2:2013,https://www.iso.org/standard/63546.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO/NP 3166-2,https://www.iso.org/standard/72483.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 3166-3:2013,https://www.iso.org/standard/63547.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO/NP 3166-3,https://www.iso.org/standard/72484.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 4217:2015,https://www.iso.org/standard/64758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 6422-1:2010,https://www.iso.org/standard/54844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 7372:2005,https://www.iso.org/standard/41237.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 8439:1990,https://www.iso.org/standard/15624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 8440:1986,https://www.iso.org/standard/15625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 8440:1986/Cor 1:2000,https://www.iso.org/standard/34802.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 8601:2004,https://www.iso.org/standard/40874.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/DIS 8601-1,https://www.iso.org/standard/70907.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/DIS 8601-2,https://www.iso.org/standard/70908.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 4:1997,https://www.iso.org/standard/3569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 8:1977,https://www.iso.org/standard/3585.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO/CD 8,https://www.iso.org/standard/67723.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 18:1981,https://www.iso.org/standard/3603.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 999:1996,https://www.iso.org/standard/5446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO/NP 999,https://www.iso.org/standard/72339.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 46/SC 9,https://www.iso.org/contents/data/committee/04/88/48836/x/catalogue/ -ISO 1086:1991,https://www.iso.org/standard/5589.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 2145:1978,https://www.iso.org/standard/6937.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 2384:1977,https://www.iso.org/standard/7274.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 6357:1985,https://www.iso.org/standard/12665.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 7144:1986,https://www.iso.org/standard/13736.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 7275:1985,https://www.iso.org/standard/13933.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 46,https://www.iso.org/contents/data/committee/04/87/48750/x/catalogue/ -ISO 9706:1994,https://www.iso.org/standard/17562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 11800:1998,https://www.iso.org/standard/20033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 14416:2003,https://www.iso.org/standard/36235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 19731:2017,https://www.iso.org/standard/66187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO 20252:2012,https://www.iso.org/standard/53439.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO/CD 20252,https://www.iso.org/standard/73671.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO 26362:2009,https://www.iso.org/standard/43521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO 4217:2015,https://www.iso.org/standard/64758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 6166:2013,https://www.iso.org/standard/44811.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 8109:1990,https://www.iso.org/standard/15157.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 8532:1995,https://www.iso.org/standard/23243.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 9019:1995,https://www.iso.org/standard/22737.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 9362:2014,https://www.iso.org/standard/60390.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 10383:2012,https://www.iso.org/standard/61067.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 10962:2015,https://www.iso.org/standard/44799.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO/CD 10962,https://www.iso.org/standard/73564.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO/WD 10962,https://www.iso.org/standard/72407.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/96/49650/x/catalogue/ -ISO 11649:2009,https://www.iso.org/standard/50649.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 12812-1:2017,https://www.iso.org/standard/59844.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO/TS 12812-2:2017,https://www.iso.org/standard/59845.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO/TS 12812-3:2017,https://www.iso.org/standard/59846.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO/TS 12812-4:2017,https://www.iso.org/standard/59847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO/TS 12812-5:2017,https://www.iso.org/standard/59848.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO/TR 13569:2005,https://www.iso.org/standard/37245.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 13616-1:2007,https://www.iso.org/standard/41031.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO/FDIS 13616-1,https://www.iso.org/standard/73994.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 13616-2:2007,https://www.iso.org/standard/41032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO/AWI TR 14742,https://www.iso.org/standard/71256.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/TR 14742:2010,https://www.iso.org/standard/54951.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 15022-1:1999,https://www.iso.org/standard/25775.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 15022-1:1999/Cor 1:1999,https://www.iso.org/standard/33179.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 15022-2:1999,https://www.iso.org/standard/28373.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 15022-2:1999/Cor 1:1999,https://www.iso.org/standard/33180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 17442:2012,https://www.iso.org/standard/59771.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 18774:2015,https://www.iso.org/standard/66153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO 19092:2008,https://www.iso.org/standard/50145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 20022-1:2013,https://www.iso.org/standard/55005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 20022-2:2013,https://www.iso.org/standard/55006.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 20022-3:2013,https://www.iso.org/standard/55007.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 20022-4:2013,https://www.iso.org/standard/55008.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 20022-5:2013,https://www.iso.org/standard/55009.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 20022-6:2013,https://www.iso.org/standard/57341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 20022-7:2013,https://www.iso.org/standard/55010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 20022-8:2013,https://www.iso.org/standard/55011.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 20275:2017,https://www.iso.org/standard/67462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO/CD TR 21797,https://www.iso.org/standard/71697.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 68/SC 8,https://www.iso.org/contents/data/committee/65/34/6534796/x/catalogue/ -ISO/TR 21941:2017,https://www.iso.org/standard/72253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 22222:2005,https://www.iso.org/standard/43033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 222,https://www.iso.org/contents/data/committee/27/42/274227/x/catalogue/ -ISO 22307:2008,https://www.iso.org/standard/40897.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -IWA 27:2017,https://www.iso.org/standard/72643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC CD Guide 76,https://www.iso.org/standard/73717.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 76:2008,https://www.iso.org/standard/45417.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO 37500:2014,https://www.iso.org/standard/56269.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/FDIS 41001,https://www.iso.org/standard/68021.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 267,https://www.iso.org/contents/data/committee/65/29/652901/x/catalogue/ -ISO 41011:2017,https://www.iso.org/standard/68167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 267,https://www.iso.org/contents/data/committee/65/29/652901/x/catalogue/ -ISO 41012:2017,https://www.iso.org/standard/68168.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 267,https://www.iso.org/contents/data/committee/65/29/652901/x/catalogue/ -ISO/TR 41013:2017,https://www.iso.org/standard/71235.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 267,https://www.iso.org/contents/data/committee/65/29/652901/x/catalogue/ -ISO 18788:2015,https://www.iso.org/standard/63380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/CD 20771,https://www.iso.org/standard/69032.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 28007-1:2015,https://www.iso.org/standard/63166.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO/IEC Guide 37:2012,https://www.iso.org/standard/39881.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 46:2017,https://www.iso.org/standard/39882.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO 10377:2013,https://www.iso.org/standard/45967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 10393:2013,https://www.iso.org/standard/45968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 10667-1:2011,https://www.iso.org/standard/56441.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/NP 10667-1,https://www.iso.org/standard/74716.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO 10667-2:2011,https://www.iso.org/standard/56436.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/NP 10667-2,https://www.iso.org/standard/74717.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO 11107:2009,https://www.iso.org/standard/50108.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 11121:2017,https://www.iso.org/standard/68275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13009:2015,https://www.iso.org/standard/52329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13289:2011,https://www.iso.org/standard/53654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13293:2012,https://www.iso.org/standard/53655.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13687-1:2017,https://www.iso.org/standard/71286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13687-2:2017,https://www.iso.org/standard/67392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13687-3:2017,https://www.iso.org/standard/67390.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13810:2015,https://www.iso.org/standard/54306.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13970:2011,https://www.iso.org/standard/54358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 14452:2012,https://www.iso.org/standard/54775.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 14785:2014,https://www.iso.org/standard/55038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 17679:2016,https://www.iso.org/standard/60243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 17680:2015,https://www.iso.org/standard/60244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 18065:2015,https://www.iso.org/standard/61250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 18295-1:2017,https://www.iso.org/standard/64739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 18295-2:2017,https://www.iso.org/standard/64740.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 18513:2003,https://www.iso.org/standard/31812.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 20245:2017,https://www.iso.org/standard/68820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/DIS 20325,https://www.iso.org/standard/67691.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 20410:2017,https://www.iso.org/standard/67922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/FDIS 20488,https://www.iso.org/standard/68193.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 290,https://www.iso.org/contents/data/committee/51/66/5166853/x/catalogue/ -ISO/CD 20771,https://www.iso.org/standard/69032.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO/DIS 21041,https://www.iso.org/standard/69727.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/PC 294,https://www.iso.org/contents/data/committee/56/29/5629986/x/catalogue/ -ISO 21101:2014,https://www.iso.org/standard/54857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/TR 21102:2013,https://www.iso.org/standard/54859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 21103:2014,https://www.iso.org/standard/54861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/CD 21416,https://www.iso.org/standard/70875.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/CD 21417,https://www.iso.org/standard/70876.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/DIS 21426,https://www.iso.org/standard/70912.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/CD 22059,https://www.iso.org/standard/72471.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/PC 303,https://www.iso.org/contents/data/committee/60/76/6076870/x/catalogue/ -ISO 24510:2007,https://www.iso.org/standard/37246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DIS 24513,https://www.iso.org/standard/72607.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/PRF TR 24514,https://www.iso.org/standard/64115.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24518:2015,https://www.iso.org/standard/64118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/TS 24520:2017,https://www.iso.org/standard/64680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24521:2016,https://www.iso.org/standard/64679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DTS 24522,https://www.iso.org/standard/59813.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24523:2017,https://www.iso.org/standard/59814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24801-1:2014,https://www.iso.org/standard/60460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24801-2:2014,https://www.iso.org/standard/60461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24801-3:2014,https://www.iso.org/standard/60462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24802-1:2014,https://www.iso.org/standard/60463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24802-2:2014,https://www.iso.org/standard/60464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24803:2017,https://www.iso.org/standard/68276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 18587:2017,https://www.iso.org/standard/62970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 18841:2018,https://www.iso.org/standard/63544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO/IEC 20000-1:2011,https://www.iso.org/standard/51986.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC DIS 20000-1,https://www.iso.org/standard/70636.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 20000-2:2012,https://www.iso.org/standard/51987.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC NP 20000-2,https://www.iso.org/standard/72120.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 20000-3:2012,https://www.iso.org/standard/60031.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC NP 20000-3,https://www.iso.org/standard/72121.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-4:2010,https://www.iso.org/standard/50624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-5:2013,https://www.iso.org/standard/60329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 20000-6:2017,https://www.iso.org/standard/64681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-9:2015,https://www.iso.org/standard/65671.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC DIS 20000-10,https://www.iso.org/standard/74316.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-10:2015,https://www.iso.org/standard/68673.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-11:2015,https://www.iso.org/standard/62151.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-12:2016,https://www.iso.org/standard/69203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/DIS 20228.2,https://www.iso.org/standard/67327.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO/IEC TR 22446:2017,https://www.iso.org/standard/73232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC PDTR 23111,https://www.iso.org/standard/74587.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 27013:2015,https://www.iso.org/standard/64138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -IWA 9:2011,https://www.iso.org/standard/55328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO Guide 73:2009,https://www.iso.org/standard/44651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC TS 17021-6:2014,https://www.iso.org/standard/64956.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TS 17021-9:2016,https://www.iso.org/standard/70158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO 19600:2014,https://www.iso.org/standard/62342.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 309,https://www.iso.org/contents/data/committee/62/66/6266703/x/catalogue/ -ISO 20700:2017,https://www.iso.org/standard/63501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/PC 280,https://www.iso.org/contents/data/committee/48/41/4841933/x/catalogue/ -ISO 21503:2017,https://www.iso.org/standard/66680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 258,https://www.iso.org/contents/data/committee/62/48/624837/x/catalogue/ -ISO 21504:2015,https://www.iso.org/standard/61518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 258,https://www.iso.org/contents/data/committee/62/48/624837/x/catalogue/ -ISO 22300,https://www.iso.org/standard/68436.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22300:2012,https://www.iso.org/standard/56199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22301:2012,https://www.iso.org/standard/50038.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/NP 22301,https://www.iso.org/standard/75106.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22311:2012,https://www.iso.org/standard/53467.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/TR 22312:2011,https://www.iso.org/standard/56897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22313:2012,https://www.iso.org/standard/50050.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/NP 22313,https://www.iso.org/standard/75107.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22315:2014,https://www.iso.org/standard/50052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22316:2017,https://www.iso.org/standard/50053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/TS 22317:2015,https://www.iso.org/standard/50054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/TS 22318:2015,https://www.iso.org/standard/65336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22319:2017,https://www.iso.org/standard/66951.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22320:2011,https://www.iso.org/standard/53347.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 22320,https://www.iso.org/standard/67851.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22322:2015,https://www.iso.org/standard/53335.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22324:2015,https://www.iso.org/standard/50061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22325:2016,https://www.iso.org/standard/50062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 22326,https://www.iso.org/standard/67159.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 22327,https://www.iso.org/standard/50064.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DTS 22330,https://www.iso.org/standard/50067.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DTS 22331,https://www.iso.org/standard/50068.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/TR 22351:2015,https://www.iso.org/standard/57384.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DTS 22375,https://www.iso.org/standard/71531.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 22380,https://www.iso.org/standard/73857.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 22381,https://www.iso.org/standard/73858.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 22382,https://www.iso.org/standard/73859.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 22395,https://www.iso.org/standard/50291.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/CD 22396,https://www.iso.org/standard/50292.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22397:2014,https://www.iso.org/standard/50293.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22398:2013,https://www.iso.org/standard/50294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 25639-1:2008,https://www.iso.org/standard/43909.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 25639-2:2008,https://www.iso.org/standard/43910.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 28000:2007,https://www.iso.org/standard/44641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28001:2007,https://www.iso.org/standard/45654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28002:2011,https://www.iso.org/standard/56087.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28003:2007,https://www.iso.org/standard/45416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28004-1:2007,https://www.iso.org/standard/44962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28004-2:2014,https://www.iso.org/standard/60905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 28004-3:2014,https://www.iso.org/standard/60910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28004-4:2014,https://www.iso.org/standard/60914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 31000,https://www.iso.org/standard/65694.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 262,https://www.iso.org/contents/data/committee/62/91/629121/x/catalogue/ -ISO 31000:2009,https://www.iso.org/standard/43170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 262,https://www.iso.org/contents/data/committee/62/91/629121/x/catalogue/ -ISO/TR 31004:2013,https://www.iso.org/standard/56610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 262,https://www.iso.org/contents/data/committee/62/91/629121/x/catalogue/ -IEC 31010:2009,https://www.iso.org/standard/51073.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 262,https://www.iso.org/contents/data/committee/62/91/629121/x/catalogue/ -IEC/DIS 31010,https://www.iso.org/standard/72140.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 262,https://www.iso.org/contents/data/committee/62/91/629121/x/catalogue/ -ISO/DIS 34001.4,https://www.iso.org/standard/61588.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 37001:2016,https://www.iso.org/standard/65034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 309,https://www.iso.org/contents/data/committee/62/66/6266703/x/catalogue/ -ISO 44001:2017,https://www.iso.org/standard/72798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 286,https://www.iso.org/contents/data/committee/49/35/4935033/x/catalogue/ -ISO/CD 50500,https://www.iso.org/standard/69315.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 279,https://www.iso.org/contents/data/committee/45/87/4587737/x/catalogue/ -ISO/CD 50501,https://www.iso.org/standard/68221.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 279,https://www.iso.org/contents/data/committee/45/87/4587737/x/catalogue/ -ISO/DIS 50503,https://www.iso.org/standard/68929.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 279,https://www.iso.org/contents/data/committee/45/87/4587737/x/catalogue/ -ISO 55000:2014,https://www.iso.org/standard/55088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 251,https://www.iso.org/contents/data/committee/60/43/604321/x/catalogue/ -ISO 55001:2014,https://www.iso.org/standard/55089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 251,https://www.iso.org/contents/data/committee/60/43/604321/x/catalogue/ -ISO 55002:2014,https://www.iso.org/standard/55090.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 251,https://www.iso.org/contents/data/committee/60/43/604321/x/catalogue/ -ISO/DIS 55002,https://www.iso.org/standard/70402.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 251,https://www.iso.org/contents/data/committee/60/43/604321/x/catalogue/ -IWA 26:2017,https://www.iso.org/standard/72669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/CD 19564,https://www.iso.org/standard/65342.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/CD 20229,https://www.iso.org/standard/67329.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 26000:2010,https://www.iso.org/standard/42546.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 20400:2017,https://www.iso.org/standard/63026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 19731:2017,https://www.iso.org/standard/66187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO 20252:2012,https://www.iso.org/standard/53439.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO/CD 20252,https://www.iso.org/standard/73671.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 225,https://www.iso.org/contents/data/committee/32/40/324087/x/catalogue/ -ISO/DIS 21041,https://www.iso.org/standard/69727.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/PC 294,https://www.iso.org/contents/data/committee/56/29/5629986/x/catalogue/ -ISO 5496:2006,https://www.iso.org/standard/44247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5496:2006/DAmd 1,https://www.iso.org/standard/73558.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 7130:2013,https://www.iso.org/standard/55300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 8152:1984,https://www.iso.org/standard/15235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 8586:2012,https://www.iso.org/standard/45352.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 9712:2012,https://www.iso.org/standard/57037.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO 9926-1:1990,https://www.iso.org/standard/17812.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 9926-3:2016,https://www.iso.org/standard/66764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 10015:1999,https://www.iso.org/standard/21231.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/CD 10015,https://www.iso.org/standard/69459.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10018:2012,https://www.iso.org/standard/46233.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10019:2005,https://www.iso.org/standard/35651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 11484:2009,https://www.iso.org/standard/51259.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/CD 11484,https://www.iso.org/standard/69804.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/TS 11774:2011,https://www.iso.org/standard/57329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO 13300-1:2006,https://www.iso.org/standard/36387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 13300-2:2006,https://www.iso.org/standard/36388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 13970:2011,https://www.iso.org/standard/54358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/TS 17969:2017,https://www.iso.org/standard/69919.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 18436-1:2012,https://www.iso.org/standard/52259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO/CD 18436-1,https://www.iso.org/standard/67515.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-2:2014,https://www.iso.org/standard/50447.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-3:2012,https://www.iso.org/standard/61554.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-4:2014,https://www.iso.org/standard/61414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-5:2012,https://www.iso.org/standard/41645.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-6:2014,https://www.iso.org/standard/61418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-7:2014,https://www.iso.org/standard/61417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-8:2013,https://www.iso.org/standard/50608.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18490:2015,https://www.iso.org/standard/62605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO 18878:2013,https://www.iso.org/standard/59512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO/IEC FDIS 19479,https://www.iso.org/standard/65061.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/TR 19480:2005,https://www.iso.org/standard/41785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/IEC 19778-1:2015,https://www.iso.org/standard/65100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19778-2:2015,https://www.iso.org/standard/65098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19778-3:2015,https://www.iso.org/standard/65099.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19780-1:2015,https://www.iso.org/standard/65081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-1:2011,https://www.iso.org/standard/50772.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-1:2011/Amd 1:2014,https://www.iso.org/standard/61338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-2:2011,https://www.iso.org/standard/46157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-2:2011/Amd 1:2016,https://www.iso.org/standard/67374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-3:2011,https://www.iso.org/standard/52774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-3:2011/Amd 1:2016,https://www.iso.org/standard/67375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-4:2014,https://www.iso.org/standard/52775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-5:2012,https://www.iso.org/standard/52776.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-7,https://www.iso.org/standard/60613.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-8:2015,https://www.iso.org/standard/62845.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-9:2015,https://www.iso.org/standard/62846.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 19788-11:2017,https://www.iso.org/standard/65587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19796-3:2009,https://www.iso.org/standard/46159.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 20006-1:2014,https://www.iso.org/standard/57359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 20006-2:2015,https://www.iso.org/standard/57360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TS 20013:2015,https://www.iso.org/standard/50960.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 20016-1:2014,https://www.iso.org/standard/50963.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC DIS 20016-1,https://www.iso.org/standard/74250.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 20748-1:2016,https://www.iso.org/standard/68976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 20748-2:2017,https://www.iso.org/standard/71991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO 20807:2004,https://www.iso.org/standard/34273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO/DTS 21759,https://www.iso.org/standard/71561.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO/TS 22475-3:2007,https://www.iso.org/standard/38604.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 22809:2007,https://www.iso.org/standard/41147.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO 22935-1:2009,https://www.iso.org/standard/41216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 23813:2007,https://www.iso.org/standard/36990.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 23814:2009,https://www.iso.org/standard/36991.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 23853:2004,https://www.iso.org/standard/37002.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO/FDIS 23853,https://www.iso.org/standard/75171.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO/IEC 24751-1:2008,https://www.iso.org/standard/41521.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC CD 24751-1,https://www.iso.org/standard/68588.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 24751-2:2008,https://www.iso.org/standard/43603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 24751-3:2008,https://www.iso.org/standard/43604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO 24802-1:2014,https://www.iso.org/standard/60463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24802-2:2014,https://www.iso.org/standard/60464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/IEC TS 29140-1:2011,https://www.iso.org/standard/45163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TS 29140-2:2011,https://www.iso.org/standard/52808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 29163-1:2009,https://www.iso.org/standard/45242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29163-2:2009,https://www.iso.org/standard/53535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29163-3:2009,https://www.iso.org/standard/53536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29163-4:2009,https://www.iso.org/standard/53537.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29187-1:2013,https://www.iso.org/standard/45266.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC CD 29187-1,https://www.iso.org/standard/70586.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO 30400:2016,https://www.iso.org/standard/66032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/DIS 30401,https://www.iso.org/standard/68683.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO 30405:2016,https://www.iso.org/standard/64149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/TR 30406:2017,https://www.iso.org/standard/72327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/TS 30407:2017,https://www.iso.org/standard/62975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO 30408:2016,https://www.iso.org/standard/63492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO 30409:2016,https://www.iso.org/standard/64150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/DTS 30410,https://www.iso.org/standard/68219.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/DTS 30411,https://www.iso.org/standard/68220.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/DIS 30414,https://www.iso.org/standard/69338.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 260,https://www.iso.org/contents/data/committee/62/87/628737/x/catalogue/ -ISO/IEC 40180:2017,https://www.iso.org/standard/62825.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC CD 40183,https://www.iso.org/standard/67503.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO 21500:2012,https://www.iso.org/standard/50003.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 258,https://www.iso.org/contents/data/committee/62/48/624837/x/catalogue/ -ISO 21505:2017,https://www.iso.org/standard/63578.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 258,https://www.iso.org/contents/data/committee/62/48/624837/x/catalogue/ -ISO/FDIS 21508,https://www.iso.org/standard/63582.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 258,https://www.iso.org/contents/data/committee/62/48/624837/x/catalogue/ -ISO/FDIS 21511,https://www.iso.org/standard/69702.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 258,https://www.iso.org/contents/data/committee/62/48/624837/x/catalogue/ -ISO/CD 50500,https://www.iso.org/standard/69315.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 279,https://www.iso.org/contents/data/committee/45/87/4587737/x/catalogue/ -ISO/CD 50501,https://www.iso.org/standard/68221.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 279,https://www.iso.org/contents/data/committee/45/87/4587737/x/catalogue/ -ISO/DIS 50503,https://www.iso.org/standard/68929.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 279,https://www.iso.org/contents/data/committee/45/87/4587737/x/catalogue/ -IWA 12:2013,https://www.iso.org/standard/63027.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -IWA 26:2017,https://www.iso.org/standard/72669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 9000:2015,https://www.iso.org/standard/45481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 1,https://www.iso.org/contents/data/committee/05/38/53888/x/catalogue/ -ISO 9001:2015,https://www.iso.org/standard/62085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO/TS 9002:2016,https://www.iso.org/standard/66204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 9004:2009,https://www.iso.org/standard/41014.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO/FDIS 9004,https://www.iso.org/standard/70397.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 10005:2005,https://www.iso.org/standard/37006.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO/FDIS 10005,https://www.iso.org/standard/70398.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 10006:2017,https://www.iso.org/standard/70376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 10007:2017,https://www.iso.org/standard/70400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 10012:2003,https://www.iso.org/standard/26033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/TR 10013:2001,https://www.iso.org/standard/26978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/TR 10017:2003,https://www.iso.org/standard/36674.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10019:2005,https://www.iso.org/standard/35651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 13485:2016,https://www.iso.org/standard/59752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 14001:2015,https://www.iso.org/standard/60857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 14004:2016,https://www.iso.org/standard/60856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 14005:2010,https://www.iso.org/standard/43208.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 14006:2011,https://www.iso.org/standard/43241.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO/CD 14006,https://www.iso.org/standard/72644.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 15378:2017,https://www.iso.org/standard/70729.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/IEC TS 17021-7:2014,https://www.iso.org/standard/65130.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/TS 17582:2014,https://www.iso.org/standard/60045.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176,https://www.iso.org/contents/data/committee/05/38/53882/x/catalogue/ -ISO/WD TS 17582,https://www.iso.org/standard/75288.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 176,https://www.iso.org/contents/data/committee/05/38/53882/x/catalogue/ -ISO 18091:2014,https://www.iso.org/standard/61386.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176,https://www.iso.org/contents/data/committee/05/38/53882/x/catalogue/ -ISO/DIS 18091,https://www.iso.org/standard/72808.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 176,https://www.iso.org/contents/data/committee/05/38/53882/x/catalogue/ -ISO 19011:2011,https://www.iso.org/standard/50675.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/FDIS 19011,https://www.iso.org/standard/70017.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/PC 302,https://www.iso.org/contents/data/committee/60/77/6077030/x/catalogue/ -ISO 20121:2012,https://www.iso.org/standard/54552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/FDIS 21001,https://www.iso.org/standard/66266.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/PC 288,https://www.iso.org/contents/data/committee/49/60/4960304/x/catalogue/ -ISO/DIS 21401,https://www.iso.org/standard/70869.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 22000:2005,https://www.iso.org/standard/35466.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO 22000:2005/Cor 1:2006,https://www.iso.org/standard/43982.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/FDIS 22000,https://www.iso.org/standard/65464.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22002-1:2009,https://www.iso.org/standard/44001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/NP TS 22003,https://www.iso.org/standard/74410.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22003:2013,https://www.iso.org/standard/60605.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO 22004:2014,https://www.iso.org/standard/60992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO 22006:2009,https://www.iso.org/standard/39833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/AWI 22163,https://www.iso.org/standard/74035.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 269,https://www.iso.org/contents/data/committee/66/16/661629/x/catalogue/ -ISO/TS 22163:2017,https://www.iso.org/standard/72712.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 269,https://www.iso.org/contents/data/committee/66/16/661629/x/catalogue/ -ISO 22301:2012,https://www.iso.org/standard/50038.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/NP 22301,https://www.iso.org/standard/75106.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 22313:2012,https://www.iso.org/standard/50050.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/NP 22313,https://www.iso.org/standard/75107.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/TS 22317:2015,https://www.iso.org/standard/50054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/TS 22318:2015,https://www.iso.org/standard/65336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DTS 22330,https://www.iso.org/standard/50067.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DTS 22331,https://www.iso.org/standard/50068.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/CD 24526,https://www.iso.org/standard/68286.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/IEC 27000,https://www.iso.org/standard/73906.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27000:2016,https://www.iso.org/standard/66435.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27001:2013,https://www.iso.org/standard/54534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27001:2013/Cor 1:2014,https://www.iso.org/standard/66805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27001:2013/Cor 2:2015,https://www.iso.org/standard/69378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27002:2013,https://www.iso.org/standard/54533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27002:2013/Cor 1:2014,https://www.iso.org/standard/66806.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27002:2013/Cor 2:2015,https://www.iso.org/standard/69379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27003:2017,https://www.iso.org/standard/63417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27004:2016,https://www.iso.org/standard/64120.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27005:2011,https://www.iso.org/standard/56742.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC FDIS 27005,https://www.iso.org/standard/75281.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27006:2015,https://www.iso.org/standard/62313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27007:2017,https://www.iso.org/standard/67398.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC PDTS 27008,https://www.iso.org/standard/67397.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 27008:2011,https://www.iso.org/standard/45244.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27009:2016,https://www.iso.org/standard/42508.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 27009,https://www.iso.org/standard/73907.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27010:2015,https://www.iso.org/standard/68427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27011:2016,https://www.iso.org/standard/64143.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27013:2015,https://www.iso.org/standard/64138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27014:2013,https://www.iso.org/standard/43754.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 27016:2014,https://www.iso.org/standard/43756.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27017:2015,https://www.iso.org/standard/43757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27019:2017,https://www.iso.org/standard/68091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27021:2017,https://www.iso.org/standard/61003.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO 28000:2007,https://www.iso.org/standard/44641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28001:2007,https://www.iso.org/standard/45654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28002:2011,https://www.iso.org/standard/56087.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28003:2007,https://www.iso.org/standard/45416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28004-1:2007,https://www.iso.org/standard/44962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28004-2:2014,https://www.iso.org/standard/60905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 28004-3:2014,https://www.iso.org/standard/60910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 28004-4:2014,https://www.iso.org/standard/60914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 29001,https://www.iso.org/standard/67773.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/TS 29001:2010,https://www.iso.org/standard/55499.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/FDIS 34101-1,https://www.iso.org/standard/64765.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 18,https://www.iso.org/contents/data/committee/51/00/5100987/x/catalogue/ -ISO/CD 35001,https://www.iso.org/standard/71293.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 37001:2016,https://www.iso.org/standard/65034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 309,https://www.iso.org/contents/data/committee/62/66/6266703/x/catalogue/ -ISO 39001:2012,https://www.iso.org/standard/44958.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 241,https://www.iso.org/contents/data/committee/55/83/558313/x/catalogue/ -ISO/FDIS 41001,https://www.iso.org/standard/68021.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 267,https://www.iso.org/contents/data/committee/65/29/652901/x/catalogue/ -ISO 44001:2017,https://www.iso.org/standard/72798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 286,https://www.iso.org/contents/data/committee/49/35/4935033/x/catalogue/ -ISO 50001:2011,https://www.iso.org/standard/51297.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/DIS 50001,https://www.iso.org/standard/69426.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50003:2014,https://www.iso.org/standard/60089.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50004:2014,https://www.iso.org/standard/60041.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50006:2014,https://www.iso.org/standard/51869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50015:2014,https://www.iso.org/standard/60043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/CD 50501,https://www.iso.org/standard/68221.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 279,https://www.iso.org/contents/data/committee/45/87/4587737/x/catalogue/ -ISO/IEC 90003:2014,https://www.iso.org/standard/66240.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC DIS 90003,https://www.iso.org/standard/74348.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 90005:2008,https://www.iso.org/standard/41553.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 90006:2013,https://www.iso.org/standard/52377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO 9000:2015,https://www.iso.org/standard/45481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 1,https://www.iso.org/contents/data/committee/05/38/53888/x/catalogue/ -ISO 9001:2015,https://www.iso.org/standard/62085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO/TS 9002:2016,https://www.iso.org/standard/66204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 9004:2009,https://www.iso.org/standard/41014.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO/FDIS 9004,https://www.iso.org/standard/70397.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 10001:2007,https://www.iso.org/standard/38450.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/FDIS 10001,https://www.iso.org/standard/71579.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10002:2014,https://www.iso.org/standard/65712.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/FDIS 10002,https://www.iso.org/standard/71580.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10003:2007,https://www.iso.org/standard/38449.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/FDIS 10003,https://www.iso.org/standard/71581.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10004:2012,https://www.iso.org/standard/56869.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/FDIS 10004,https://www.iso.org/standard/71582.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10006:2017,https://www.iso.org/standard/70376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 10007:2017,https://www.iso.org/standard/70400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 2,https://www.iso.org/contents/data/committee/05/38/53896/x/catalogue/ -ISO 10008:2013,https://www.iso.org/standard/54081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10014:2006,https://www.iso.org/standard/37263.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10014:2006/Cor 1:2007,https://www.iso.org/standard/45692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10015:1999,https://www.iso.org/standard/21231.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/CD 10015,https://www.iso.org/standard/69459.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10018:2012,https://www.iso.org/standard/46233.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 15189:2012,https://www.iso.org/standard/56115.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 19011:2011,https://www.iso.org/standard/50675.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO/TS 19218-1:2011,https://www.iso.org/standard/55589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TS 19218-1:2011/Amd 1:2013,https://www.iso.org/standard/58085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TS 19218-2:2012,https://www.iso.org/standard/55590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/FDIS 19443,https://www.iso.org/standard/64908.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 22870:2016,https://www.iso.org/standard/71119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/IEC Guide 23:1982,https://www.iso.org/standard/19732.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO Guide 27:1983,https://www.iso.org/standard/19736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC Guide 60:2004,https://www.iso.org/standard/37035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC Guide 68:2002,https://www.iso.org/standard/29363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TR 13233:1995,https://www.iso.org/standard/21468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/DIS 15835-3,https://www.iso.org/standard/71921.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 16919:2014,https://www.iso.org/standard/57950.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/IEC 17000:2004,https://www.iso.org/standard/29316.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC WD 17000,https://www.iso.org/standard/73029.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17007:2009,https://www.iso.org/standard/42635.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17011:2017,https://www.iso.org/standard/67198.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17020:2012,https://www.iso.org/standard/52994.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17021-1:2015,https://www.iso.org/standard/61651.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17021-2:2016,https://www.iso.org/standard/70682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17021-3:2017,https://www.iso.org/standard/70681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TS 17021-4:2013,https://www.iso.org/standard/62826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TS 17021-5:2014,https://www.iso.org/standard/62827.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TS 17021-6:2014,https://www.iso.org/standard/64956.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TS 17021-7:2014,https://www.iso.org/standard/65130.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TS 17021-9:2016,https://www.iso.org/standard/70158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC PRF TS 17021-10,https://www.iso.org/standard/71102.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TS 17023:2013,https://www.iso.org/standard/29345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17024:2012,https://www.iso.org/standard/52993.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17025:2017,https://www.iso.org/standard/66912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TR 17026:2015,https://www.iso.org/standard/63132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TS 17027:2014,https://www.iso.org/standard/62024.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC TR 17028:2017,https://www.iso.org/standard/29351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC WD 17029,https://www.iso.org/standard/29352.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17030:2003,https://www.iso.org/standard/29353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC NP TR 17032,https://www.iso.org/standard/29355.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/NP TS 17033,https://www.iso.org/standard/29356.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO 17034:2016,https://www.iso.org/standard/29357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17040:2005,https://www.iso.org/standard/31815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17043:2010,https://www.iso.org/standard/29366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17050-1:2004,https://www.iso.org/standard/29373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17050-2:2004,https://www.iso.org/standard/35516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17065:2012,https://www.iso.org/standard/46568.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO/IEC 17067:2013,https://www.iso.org/standard/55087.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/CASCO,https://www.iso.org/contents/data/committee/05/49/54998/x/catalogue/ -ISO 18322:2017,https://www.iso.org/standard/62162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/FDIS 19011,https://www.iso.org/standard/70017.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/PC 302,https://www.iso.org/contents/data/committee/60/77/6077030/x/catalogue/ -ISO/CD 19301,https://www.iso.org/standard/64082.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/TR 19948:2016,https://www.iso.org/standard/66681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127,https://www.iso.org/contents/data/committee/05/21/52172/x/catalogue/ -ISO/IEC 20000-6:2017,https://www.iso.org/standard/64681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/CD 21378,https://www.iso.org/standard/70823.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/PC 295,https://www.iso.org/contents/data/committee/56/48/5648297/x/catalogue/ -ISO/NP TS 22003,https://www.iso.org/standard/74410.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22003:2013,https://www.iso.org/standard/60605.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22475-3:2007,https://www.iso.org/standard/38604.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/IEC 27009:2016,https://www.iso.org/standard/42508.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 27009,https://www.iso.org/standard/73907.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO 28003:2007,https://www.iso.org/standard/45416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 34101-4,https://www.iso.org/standard/70773.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 34/SC 18,https://www.iso.org/contents/data/committee/51/00/5100987/x/catalogue/ -ISO 50003:2014,https://www.iso.org/standard/60089.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 2602:1980,https://www.iso.org/standard/7585.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 2854:1976,https://www.iso.org/standard/7854.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 2859-1:1999,https://www.iso.org/standard/1141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 2859-1:1999/Amd 1:2011,https://www.iso.org/standard/53053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 2859-1:1999/Cor 1:2001,https://www.iso.org/standard/35236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 2859-2:1985,https://www.iso.org/standard/7867.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/AWI 2859-2,https://www.iso.org/standard/64505.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 2859-3:2005,https://www.iso.org/standard/34684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 2859-4:2002,https://www.iso.org/standard/36164.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/AWI 2859-4,https://www.iso.org/standard/64506.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 2859-5:2005,https://www.iso.org/standard/39295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 3301:1975,https://www.iso.org/standard/8540.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 3494:1976,https://www.iso.org/standard/8845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 3534-1:2006,https://www.iso.org/standard/40145.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO/NP 3534-1,https://www.iso.org/standard/69720.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO 3534-2:2006,https://www.iso.org/standard/40147.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO 3534-3:2013,https://www.iso.org/standard/44245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO 3534-4:2014,https://www.iso.org/standard/56154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 1,https://www.iso.org/contents/data/committee/04/97/49754/x/catalogue/ -ISO 3951-1:2013,https://www.iso.org/standard/57490.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/NP 3951-1,https://www.iso.org/standard/74706.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 3951-2:2013,https://www.iso.org/standard/57491.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 3951-3:2007,https://www.iso.org/standard/40556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 3951-4:2011,https://www.iso.org/standard/44806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 3951-5:2006,https://www.iso.org/standard/39294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 5479:1997,https://www.iso.org/standard/22506.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 5725-1:1994,https://www.iso.org/standard/11833.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-1:1994/Cor 1:1998,https://www.iso.org/standard/29779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/AWI 5725-1,https://www.iso.org/standard/69418.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-2:1994,https://www.iso.org/standard/11834.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-2:1994/Cor 1:2002,https://www.iso.org/standard/36202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/AWI 5725-2,https://www.iso.org/standard/69419.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-3:1994,https://www.iso.org/standard/11835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-3:1994/Cor 1:2001,https://www.iso.org/standard/36203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-4:1994,https://www.iso.org/standard/11836.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/CD 5725-4,https://www.iso.org/standard/69421.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-5:1998,https://www.iso.org/standard/1384.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-5:1998/Cor 1:2005,https://www.iso.org/standard/42913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-6:1994,https://www.iso.org/standard/11837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-6:1994/Cor 1:2001,https://www.iso.org/standard/36204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 7870-1:2014,https://www.iso.org/standard/62649.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/DIS 7870-1,https://www.iso.org/standard/69639.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 7870-2:2013,https://www.iso.org/standard/40174.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 7870-3:2012,https://www.iso.org/standard/40175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 7870-3:2012/NP Amd 1,https://www.iso.org/standard/74100.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 7870-4:2011,https://www.iso.org/standard/40176.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/NP 7870-4,https://www.iso.org/standard/74101.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 7870-5:2014,https://www.iso.org/standard/40177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 7870-6:2016,https://www.iso.org/standard/40173.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/CD 7870-7,https://www.iso.org/standard/69640.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 7870-8:2017,https://www.iso.org/standard/67410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/CD 7870-9,https://www.iso.org/standard/69641.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 8423:2008,https://www.iso.org/standard/41992.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/TR 8550-1:2007,https://www.iso.org/standard/40591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/TR 8550-2:2007,https://www.iso.org/standard/40592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/TR 8550-3:2007,https://www.iso.org/standard/40593.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/TR 10017:2003,https://www.iso.org/standard/36674.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 10576-1:2003,https://www.iso.org/standard/32373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 10725:2000,https://www.iso.org/standard/33418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11095:1996,https://www.iso.org/standard/1060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11453:1996,https://www.iso.org/standard/19405.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 11453:1996/Cor 1:1999,https://www.iso.org/standard/32469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 11462-1:2001,https://www.iso.org/standard/33381.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 11462-2:2010,https://www.iso.org/standard/42719.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/DTR 11462-3,https://www.iso.org/standard/69644.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 11648-1:2003,https://www.iso.org/standard/33484.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11648-2:2001,https://www.iso.org/standard/23663.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-1:1997,https://www.iso.org/standard/1096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-1:1997/Cor 1:2003,https://www.iso.org/standard/39580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-2:2000,https://www.iso.org/standard/20186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-2:2000/Cor 1:2007,https://www.iso.org/standard/50401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-3:2003,https://www.iso.org/standard/34410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-4:2003,https://www.iso.org/standard/34411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-5:2008,https://www.iso.org/standard/42000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-5:2008/Amd 1:2017,https://www.iso.org/standard/69645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-6:2013,https://www.iso.org/standard/53677.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-7:2012,https://www.iso.org/standard/53678.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/DIS 11843-7,https://www.iso.org/standard/67017.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/TR 12845:2010,https://www.iso.org/standard/51963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/TR 12888:2011,https://www.iso.org/standard/52899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO 13053-1:2011,https://www.iso.org/standard/52901.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/NP 13053-1,https://www.iso.org/standard/73867.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO 13053-2:2011,https://www.iso.org/standard/52902.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/NP 13053-2,https://www.iso.org/standard/73869.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/TR 13195:2015,https://www.iso.org/standard/53479.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/TR 13519:2012,https://www.iso.org/standard/53977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 13528:2015,https://www.iso.org/standard/56125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/TR 13587:2012,https://www.iso.org/standard/54052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/TR 14468:2010,https://www.iso.org/standard/52900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/DIS 16269-2,https://www.iso.org/standard/74156.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO/DIS 16269-3,https://www.iso.org/standard/74177.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 16269-4:2010,https://www.iso.org/standard/44396.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO/CD 16269-5,https://www.iso.org/standard/64496.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 16269-6:2014,https://www.iso.org/standard/57191.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 16269-7:2001,https://www.iso.org/standard/30709.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 16269-8:2004,https://www.iso.org/standard/38154.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 16336:2014,https://www.iso.org/standard/56183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO 16355-1:2015,https://www.iso.org/standard/62626.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO/AWI 16355-1,https://www.iso.org/standard/74103.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO 16355-2:2017,https://www.iso.org/standard/62627.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO/AWI 16355-2,https://www.iso.org/standard/74104.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO/DIS 16355-3,https://www.iso.org/standard/70662.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO 16355-4:2017,https://www.iso.org/standard/62631.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO/AWI 16355-4,https://www.iso.org/standard/74105.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO 16355-5:2017,https://www.iso.org/standard/62633.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO/AWI 16355-5,https://www.iso.org/standard/74106.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO/AWI TR 16355-8,https://www.iso.org/standard/74107.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO/TR 16355-8:2017,https://www.iso.org/standard/62639.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 8,https://www.iso.org/contents/data/committee/58/50/585031/x/catalogue/ -ISO/TR 16705:2016,https://www.iso.org/standard/57453.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO 17258:2015,https://www.iso.org/standard/59489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO 18404:2015,https://www.iso.org/standard/62405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/TR 18532:2009,https://www.iso.org/standard/51651.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO/CD 20575-1,https://www.iso.org/standard/68444.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO 22514-1:2014,https://www.iso.org/standard/64135.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 22514-2:2017,https://www.iso.org/standard/71617.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 22514-3:2008,https://www.iso.org/standard/46531.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/CD 22514-3,https://www.iso.org/standard/69642.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 22514-4:2016,https://www.iso.org/standard/65289.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/DIS 22514-5,https://www.iso.org/standard/52963.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 22514-6:2013,https://www.iso.org/standard/52962.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 22514-7:2012,https://www.iso.org/standard/54077.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO 22514-8:2014,https://www.iso.org/standard/61630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/CD TR 22514-9,https://www.iso.org/standard/69643.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 69/SC 4,https://www.iso.org/contents/data/committee/04/97/49774/x/catalogue/ -ISO/TR 22971:2005,https://www.iso.org/standard/39780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 24153:2009,https://www.iso.org/standard/42039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/TS 28037:2010,https://www.iso.org/standard/44473.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 28590:2017,https://www.iso.org/standard/64622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 28591:2017,https://www.iso.org/standard/64623.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 28592:2017,https://www.iso.org/standard/64625.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 28593:2017,https://www.iso.org/standard/64626.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 28594:2017,https://www.iso.org/standard/64627.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 28597:2017,https://www.iso.org/standard/64630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 28598-1:2017,https://www.iso.org/standard/64631.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 28598-2:2017,https://www.iso.org/standard/69416.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 28640:2010,https://www.iso.org/standard/42333.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO/TR 29901:2007,https://www.iso.org/standard/45731.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/TR 29901:2007/Cor 1:2009,https://www.iso.org/standard/54056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 7,https://www.iso.org/contents/data/committee/56/09/560992/x/catalogue/ -ISO/CD 39510,https://www.iso.org/standard/68999.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO/FDIS 39511,https://www.iso.org/standard/67139.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 69/SC 5,https://www.iso.org/contents/data/committee/04/97/49796/x/catalogue/ -ISO 10668:2010,https://www.iso.org/standard/46032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 289,https://www.iso.org/contents/data/committee/50/65/5065082/x/catalogue/ -ISO 12931:2012,https://www.iso.org/standard/52210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/DIS 20671,https://www.iso.org/standard/68786.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 289,https://www.iso.org/contents/data/committee/50/65/5065082/x/catalogue/ -ISO/TS 17582:2014,https://www.iso.org/standard/60045.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176,https://www.iso.org/contents/data/committee/05/38/53882/x/catalogue/ -ISO/WD TS 17582,https://www.iso.org/standard/75288.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 176,https://www.iso.org/contents/data/committee/05/38/53882/x/catalogue/ -ISO 18091:2014,https://www.iso.org/standard/61386.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176,https://www.iso.org/contents/data/committee/05/38/53882/x/catalogue/ -ISO/DIS 18091,https://www.iso.org/standard/72808.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 176,https://www.iso.org/contents/data/committee/05/38/53882/x/catalogue/ -ISO/IEC TR 20748-1:2016,https://www.iso.org/standard/68976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 20748-2:2017,https://www.iso.org/standard/71991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/FDIS 21001,https://www.iso.org/standard/66266.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/PC 288,https://www.iso.org/contents/data/committee/49/60/4960304/x/catalogue/ -ISO 29990:2010,https://www.iso.org/standard/53392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 232,https://www.iso.org/contents/data/committee/53/78/537864/x/catalogue/ -ISO 29991:2014,https://www.iso.org/standard/54660.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 232,https://www.iso.org/contents/data/committee/53/78/537864/x/catalogue/ -ISO/DIS 29992,https://www.iso.org/standard/68490.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 232,https://www.iso.org/contents/data/committee/53/78/537864/x/catalogue/ -ISO 29993:2017,https://www.iso.org/standard/70357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 232,https://www.iso.org/contents/data/committee/53/78/537864/x/catalogue/ -ISO 13009:2015,https://www.iso.org/standard/52329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13810:2015,https://www.iso.org/standard/54306.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/TS 13811:2015,https://www.iso.org/standard/54307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 14785:2014,https://www.iso.org/standard/55038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 17679:2016,https://www.iso.org/standard/60243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 17680:2015,https://www.iso.org/standard/60244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 18065:2015,https://www.iso.org/standard/61250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 20410:2017,https://www.iso.org/standard/67922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/DIS 21401,https://www.iso.org/standard/70869.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/DIS 21426,https://www.iso.org/standard/70912.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/DIS 20611,https://www.iso.org/standard/68548.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 21101:2014,https://www.iso.org/standard/54857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/TR 21102:2013,https://www.iso.org/standard/54859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 21103:2014,https://www.iso.org/standard/54861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 11107:2009,https://www.iso.org/standard/50108.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 11121:2017,https://www.iso.org/standard/68275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13289:2011,https://www.iso.org/standard/53654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13293:2012,https://www.iso.org/standard/53655.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13687-1:2017,https://www.iso.org/standard/71286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13687-2:2017,https://www.iso.org/standard/67392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13687-3:2017,https://www.iso.org/standard/67390.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 13970:2011,https://www.iso.org/standard/54358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/CD 21416,https://www.iso.org/standard/70875.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/CD 21417,https://www.iso.org/standard/70876.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24801-1:2014,https://www.iso.org/standard/60460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24801-2:2014,https://www.iso.org/standard/60461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24801-3:2014,https://www.iso.org/standard/60462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24802-1:2014,https://www.iso.org/standard/60463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24802-2:2014,https://www.iso.org/standard/60464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 24803:2017,https://www.iso.org/standard/68276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 10711:2012,https://www.iso.org/standard/46069.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 11766:2010,https://www.iso.org/standard/50763.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 11769:2010,https://www.iso.org/standard/50764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 12859:2009,https://www.iso.org/standard/52052.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13183:2012,https://www.iso.org/standard/53449.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 13184-1:2013,https://www.iso.org/standard/57024.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13184-2:2016,https://www.iso.org/standard/61573.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13184-3:2017,https://www.iso.org/standard/71871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 13185-1:2012,https://www.iso.org/standard/53455.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13185-2:2015,https://www.iso.org/standard/56821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/FDIS 13185-3,https://www.iso.org/standard/61572.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14296:2016,https://www.iso.org/standard/54587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 14806:2013,https://www.iso.org/standard/55067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14813-1:2015,https://www.iso.org/standard/57393.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14813-5:2010,https://www.iso.org/standard/46008.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 14813-5,https://www.iso.org/standard/73746.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14813-6:2017,https://www.iso.org/standard/69109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14817-1:2015,https://www.iso.org/standard/65668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14817-2:2015,https://www.iso.org/standard/65669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14817-3:2017,https://www.iso.org/standard/67416.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14825:2011,https://www.iso.org/standard/54610.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14827-1:2005,https://www.iso.org/standard/41361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14827-2:2005,https://www.iso.org/standard/41362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 14827-3,https://www.iso.org/standard/75182.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 14827-3.2,https://www.iso.org/standard/61491.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15623:2013,https://www.iso.org/standard/56655.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15628:2013,https://www.iso.org/standard/59288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15662:2006,https://www.iso.org/standard/44322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16460:2016,https://www.iso.org/standard/71287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 16461,https://www.iso.org/standard/56791.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16785:2014,https://www.iso.org/standard/65675.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 16786:2015,https://www.iso.org/standard/57770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17185-1:2014,https://www.iso.org/standard/59291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17185-2:2015,https://www.iso.org/standard/61547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17185-3:2015,https://www.iso.org/standard/61548.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17187:2013,https://www.iso.org/standard/59292.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17261:2012,https://www.iso.org/standard/55494.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17267:2009,https://www.iso.org/standard/44700.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17424:2015,https://www.iso.org/standard/59722.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17425:2016,https://www.iso.org/standard/59723.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17426:2016,https://www.iso.org/standard/59724.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17427:2014,https://www.iso.org/standard/59725.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/FDIS 17427-1,https://www.iso.org/standard/66924.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-2:2015,https://www.iso.org/standard/66947.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-3:2015,https://www.iso.org/standard/66955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-4:2015,https://www.iso.org/standard/66956.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 17427-5,https://www.iso.org/standard/66957.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-6:2015,https://www.iso.org/standard/66958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-7:2015,https://www.iso.org/standard/66959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-8:2015,https://www.iso.org/standard/66960.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-9:2015,https://www.iso.org/standard/66961.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-10:2015,https://www.iso.org/standard/66962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 17427-12,https://www.iso.org/standard/66964.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 17427-13,https://www.iso.org/standard/66965.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 17427-14,https://www.iso.org/standard/66966.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/NP 17429,https://www.iso.org/standard/73780.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17429:2017,https://www.iso.org/standard/59727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17438-1:2016,https://www.iso.org/standard/59742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 17438-4,https://www.iso.org/standard/67089.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17465-1:2014,https://www.iso.org/standard/62889.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17465-2:2015,https://www.iso.org/standard/62890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17465-3:2015,https://www.iso.org/standard/63842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17572-1:2015,https://www.iso.org/standard/63400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17572-2:2015,https://www.iso.org/standard/63401.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 17572-2,https://www.iso.org/standard/69468.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17572-3:2015,https://www.iso.org/standard/63402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17687:2007,https://www.iso.org/standard/33155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-1:2013,https://www.iso.org/standard/57458.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-2:2013,https://www.iso.org/standard/61596.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-3:2013,https://www.iso.org/standard/59244.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-4:2006,https://www.iso.org/standard/44064.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-5:2006,https://www.iso.org/standard/37265.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-6:2006,https://www.iso.org/standard/37266.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-7:2013,https://www.iso.org/standard/44611.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-8:2012,https://www.iso.org/standard/44612.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-9:2013,https://www.iso.org/standard/44613.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-10:2013,https://www.iso.org/standard/44614.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-11:2013,https://www.iso.org/standard/59715.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 18495-1:2016,https://www.iso.org/standard/62623.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 18682:2016,https://www.iso.org/standard/63250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 19237:2017,https://www.iso.org/standard/64111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 19297-1,https://www.iso.org/standard/73116.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 19414,https://www.iso.org/standard/64824.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 20452:2007,https://www.iso.org/standard/39447.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 20526:2017,https://www.iso.org/standard/68262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21210:2012,https://www.iso.org/standard/46549.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21210:2012/Amd 1:2017,https://www.iso.org/standard/65691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/AWI 21210,https://www.iso.org/standard/73262.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21212:2008,https://www.iso.org/standard/45378.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21213:2008,https://www.iso.org/standard/45377.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21214:2015,https://www.iso.org/standard/51523.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21215:2010,https://www.iso.org/standard/51398.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 21215,https://www.iso.org/standard/70074.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21216:2012,https://www.iso.org/standard/59703.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/AWI 21216-1,https://www.iso.org/standard/70560.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/AWI 21216-2,https://www.iso.org/standard/70561.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21217:2014,https://www.iso.org/standard/61570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21218:2013,https://www.iso.org/standard/61569.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21218:2013/Amd 1:2014,https://www.iso.org/standard/65608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 21218,https://www.iso.org/standard/73263.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-2:2014,https://www.iso.org/standard/57459.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-3:2015,https://www.iso.org/standard/57460.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-4:2015,https://www.iso.org/standard/59713.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-5:2015,https://www.iso.org/standard/57461.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-6:2015,https://www.iso.org/standard/57462.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-7:2017,https://www.iso.org/standard/63111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-9:2016,https://www.iso.org/standard/63112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-10:2016,https://www.iso.org/standard/63113.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-14:2016,https://www.iso.org/standard/63115.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-15:2016,https://www.iso.org/standard/63116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-16:2016,https://www.iso.org/standard/63117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-18:2015,https://www.iso.org/standard/57463.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-19:2016,https://www.iso.org/standard/63118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-21,https://www.iso.org/standard/63121.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-22:2017,https://www.iso.org/standard/63122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-23:2016,https://www.iso.org/standard/64588.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-24:2017,https://www.iso.org/standard/69692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-25:2017,https://www.iso.org/standard/69693.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DTS 21219-26,https://www.iso.org/standard/73765.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 21718:2017,https://www.iso.org/standard/71475.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 22418,https://www.iso.org/standard/73150.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22837:2009,https://www.iso.org/standard/45418.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22951:2009,https://www.iso.org/standard/46009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24014-1:2015,https://www.iso.org/standard/61545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24014-2:2013,https://www.iso.org/standard/50127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24014-3:2013,https://www.iso.org/standard/62354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24100:2010,https://www.iso.org/standard/42017.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24101-1:2008,https://www.iso.org/standard/50128.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24101-2:2010,https://www.iso.org/standard/50129.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-1:2013,https://www.iso.org/standard/61561.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-1:2013/Amd 1:2017,https://www.iso.org/standard/65604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 24102-1,https://www.iso.org/standard/73264.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-2:2015,https://www.iso.org/standard/61563.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 24102-2,https://www.iso.org/standard/73265.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-3:2013,https://www.iso.org/standard/61564.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-3:2013/Amd 1:2017,https://www.iso.org/standard/65605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 24102-3,https://www.iso.org/standard/73266.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-4:2013,https://www.iso.org/standard/61565.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-4:2013/Amd 1:2017,https://www.iso.org/standard/65606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 24102-4,https://www.iso.org/standard/73267.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-5:2013,https://www.iso.org/standard/61566.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-5:2013/Amd 1:2017,https://www.iso.org/standard/65607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/PRF 24102-6,https://www.iso.org/standard/62292.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24103:2009,https://www.iso.org/standard/45806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24978:2009,https://www.iso.org/standard/42727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 25100:2012,https://www.iso.org/standard/59699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 25102:2008,https://www.iso.org/standard/42743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 25104:2008,https://www.iso.org/standard/42745.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 25110:2017,https://www.iso.org/standard/72360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 25111:2009,https://www.iso.org/standard/42751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 25112:2010,https://www.iso.org/standard/42752.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 25113:2010,https://www.iso.org/standard/42753.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 25114:2010,https://www.iso.org/standard/42754.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 26684:2015,https://www.iso.org/standard/43653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 26999:2012,https://www.iso.org/standard/62218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 28682:2008,https://www.iso.org/standard/44878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29281-1:2013,https://www.iso.org/standard/61567.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29281-1:2013/Amd 1:2017,https://www.iso.org/standard/65609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 29281-1,https://www.iso.org/standard/70075.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29281-2:2013,https://www.iso.org/standard/61568.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29281-2:2013/Amd 1:2014,https://www.iso.org/standard/65610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29282:2011,https://www.iso.org/standard/45380.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29283:2011,https://www.iso.org/standard/45381.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 29284:2012,https://www.iso.org/standard/45382.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 37159,https://www.iso.org/standard/69245.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO 11067:2015,https://www.iso.org/standard/50091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 11270:2014,https://www.iso.org/standard/50347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 12813:2015,https://www.iso.org/standard/64165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 12813:2015/Amd 1:2017,https://www.iso.org/standard/70033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 12813:2015/CD Amd 2,https://www.iso.org/standard/75263.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 12855:2015,https://www.iso.org/standard/64127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13111-1:2017,https://www.iso.org/standard/61562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13140-1:2016,https://www.iso.org/standard/68245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13140-2:2016,https://www.iso.org/standard/70048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13141:2015,https://www.iso.org/standard/64166.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13141:2015/Amd 1:2017,https://www.iso.org/standard/70034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13143-1:2016,https://www.iso.org/standard/68246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13143-2:2016,https://www.iso.org/standard/68247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14814:2006,https://www.iso.org/standard/37046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14815:2005,https://www.iso.org/standard/38666.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14816:2005,https://www.iso.org/standard/38667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14816:2005/DAmd 1,https://www.iso.org/standard/67247.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14819-1:2013,https://www.iso.org/standard/59230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14819-2:2013,https://www.iso.org/standard/59231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14819-3:2013,https://www.iso.org/standard/59232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14819-6:2006,https://www.iso.org/standard/37267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14906:2011,https://www.iso.org/standard/52287.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14906:2011/Amd 1:2015,https://www.iso.org/standard/64757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14906:2011/Cor 1:2013,https://www.iso.org/standard/63684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 14906,https://www.iso.org/standard/72124.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15622:2010,https://www.iso.org/standard/50024.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 15622,https://www.iso.org/standard/71515.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 15624:2001,https://www.iso.org/standard/27833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-1:2012,https://www.iso.org/standard/59184.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-2:2013,https://www.iso.org/standard/59185.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-3:2013,https://www.iso.org/standard/59186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 15638-4,https://www.iso.org/standard/72094.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-5:2013,https://www.iso.org/standard/59188.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-6:2014,https://www.iso.org/standard/59189.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-7:2013,https://www.iso.org/standard/59190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-8:2014,https://www.iso.org/standard/62034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 15638-9,https://www.iso.org/standard/70651.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 15638-9:2013,https://www.iso.org/standard/62714.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-10:2017,https://www.iso.org/standard/62036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-11:2014,https://www.iso.org/standard/62037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-12:2014,https://www.iso.org/standard/62038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 15638-13:2015,https://www.iso.org/standard/62718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-14:2014,https://www.iso.org/standard/62052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-15:2014,https://www.iso.org/standard/62053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-16:2014,https://www.iso.org/standard/62054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-17:2014,https://www.iso.org/standard/62055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-18:2017,https://www.iso.org/standard/62056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 15638-19:2013,https://www.iso.org/standard/62725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/FDIS 15638-21,https://www.iso.org/standard/69690.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 15638-22,https://www.iso.org/standard/73949.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15784-1:2008,https://www.iso.org/standard/39586.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15784-2:2015,https://www.iso.org/standard/55233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15784-2:2015/CD Amd 1,https://www.iso.org/standard/75360.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15784-3:2008,https://www.iso.org/standard/39588.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 16401-1:2018,https://www.iso.org/standard/70039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 16401-2:2018,https://www.iso.org/standard/70041.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 16407-1:2017,https://www.iso.org/standard/69779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 16407-2,https://www.iso.org/standard/70049.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16407-2:2012,https://www.iso.org/standard/56768.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 16410-1:2017,https://www.iso.org/standard/69780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 16410-2,https://www.iso.org/standard/70050.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16410-2:2012,https://www.iso.org/standard/56769.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17262:2012,https://www.iso.org/standard/55495.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17262:2012/Cor 1:2013,https://www.iso.org/standard/65603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17262:2012/DAmd 1,https://www.iso.org/standard/67248.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17263:2012,https://www.iso.org/standard/55496.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17263:2012/Cor 1:2013,https://www.iso.org/standard/65602.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17264:2009,https://www.iso.org/standard/46227.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17264:2009/DAmd 1,https://www.iso.org/standard/67249.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17361:2017,https://www.iso.org/standard/72349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17384:2008,https://www.iso.org/standard/50433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17387:2008,https://www.iso.org/standard/43654.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17419:2014,https://www.iso.org/standard/59720.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/PRF 17419-1,https://www.iso.org/standard/70077.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/FDIS 17423,https://www.iso.org/standard/68267.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17423:2014,https://www.iso.org/standard/59721.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17444-1:2017,https://www.iso.org/standard/72358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17444-2:2017,https://www.iso.org/standard/72359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17452:2007,https://www.iso.org/standard/38373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17515-1:2015,https://www.iso.org/standard/59929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 17515-3,https://www.iso.org/standard/73238.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17573:2010,https://www.iso.org/standard/45963.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 17573-1,https://www.iso.org/standard/71982.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17574:2017,https://www.iso.org/standard/70051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17575-1:2016,https://www.iso.org/standard/64161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17575-2:2016,https://www.iso.org/standard/64162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17575-3:2016,https://www.iso.org/standard/64163.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DTR 18561-1,https://www.iso.org/standard/62891.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 18750,https://www.iso.org/standard/69433.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18750:2015,https://www.iso.org/standard/63273.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 19079:2016,https://www.iso.org/standard/63883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 19080:2016,https://www.iso.org/standard/63884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 19082,https://www.iso.org/standard/63889.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 19083-1:2016,https://www.iso.org/standard/71510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/NP TS 19091,https://www.iso.org/standard/73781.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 19091:2017,https://www.iso.org/standard/69897.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 19299:2015,https://www.iso.org/standard/64605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 19638,https://www.iso.org/standard/65599.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 19639:2015,https://www.iso.org/standard/65600.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 20026:2017,https://www.iso.org/standard/73360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 20524-1,https://www.iso.org/standard/68244.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 20529-1:2017,https://www.iso.org/standard/73257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 20529-2,https://www.iso.org/standard/71522.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 20545:2017,https://www.iso.org/standard/68300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 21190,https://www.iso.org/standard/70061.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-1:2016,https://www.iso.org/standard/63110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 21707:2008,https://www.iso.org/standard/34668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 21717,https://www.iso.org/standard/71471.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21719-1:2018,https://www.iso.org/standard/71476.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21719-2:2018,https://www.iso.org/standard/71477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24529:2008,https://www.iso.org/standard/39591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24530-1:2006,https://www.iso.org/standard/37268.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24530-2:2006,https://www.iso.org/standard/37500.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24530-3:2006,https://www.iso.org/standard/37501.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24530-4:2006,https://www.iso.org/standard/37502.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24533:2012,https://www.iso.org/standard/46422.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-1:2010,https://www.iso.org/standard/51849.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-2:2010,https://www.iso.org/standard/51850.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-3:2016,https://www.iso.org/standard/59306.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-4:2010,https://www.iso.org/standard/51852.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-4:2010/DAmd 1,https://www.iso.org/standard/68872.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-5:2011,https://www.iso.org/standard/54570.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-5:2011/DAmd 1,https://www.iso.org/standard/68873.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24535:2007,https://www.iso.org/standard/39589.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 37158,https://www.iso.org/standard/69244.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO 39001:2012,https://www.iso.org/standard/44958.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 241,https://www.iso.org/contents/data/committee/55/83/558313/x/catalogue/ -ISO/DIS 20298-1,https://www.iso.org/standard/67588.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 281,https://www.iso.org/contents/data/committee/48/56/4856666/x/catalogue/ -ISO 20480-1:2017,https://www.iso.org/standard/68187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 281,https://www.iso.org/contents/data/committee/48/56/4856666/x/catalogue/ -ISO/DIS 20480-2,https://www.iso.org/standard/70763.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 281,https://www.iso.org/contents/data/committee/48/56/4856666/x/catalogue/ -ISO/DIS 21255,https://www.iso.org/standard/70257.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 281,https://www.iso.org/contents/data/committee/48/56/4856666/x/catalogue/ -ISO/CD 21256-2,https://www.iso.org/standard/70264.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 281,https://www.iso.org/contents/data/committee/48/56/4856666/x/catalogue/ -ISO/PRF 19127,https://www.iso.org/standard/67252.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19127:2005,https://www.iso.org/standard/41784.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 710-1:1974,https://www.iso.org/standard/4919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-2:1974,https://www.iso.org/standard/4920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-3:1974,https://www.iso.org/standard/4921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-4:1982,https://www.iso.org/standard/4922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-5:1989,https://www.iso.org/standard/4924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-6:1984,https://www.iso.org/standard/4925.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 710-7:1984,https://www.iso.org/standard/4926.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 2533:1975,https://www.iso.org/standard/7472.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2533:1975/Add 1:1985,https://www.iso.org/standard/7473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2533:1975/Add 2:1997,https://www.iso.org/standard/7474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO/TR 13973:2014,https://www.iso.org/standard/54373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 8,https://www.iso.org/contents/data/committee/05/17/51728/x/catalogue/ -ISO/TR 14685:2001,https://www.iso.org/standard/20976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 8,https://www.iso.org/contents/data/committee/05/17/51728/x/catalogue/ -ISO 14686:2003,https://www.iso.org/standard/20977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 8,https://www.iso.org/contents/data/committee/05/17/51728/x/catalogue/ -ISO 15927-1:2003,https://www.iso.org/standard/29559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-2:2009,https://www.iso.org/standard/44282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-3:2009,https://www.iso.org/standard/44281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-4:2005,https://www.iso.org/standard/41371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-5:2004,https://www.iso.org/standard/35563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-5:2004/Amd 1:2011,https://www.iso.org/standard/56664.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-6:2007,https://www.iso.org/standard/35564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 16457:2014,https://www.iso.org/standard/61556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16622:2002,https://www.iso.org/standard/29291.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 17713-1:2007,https://www.iso.org/standard/31497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 17714:2007,https://www.iso.org/standard/31498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 17717:2017,https://www.iso.org/standard/63428.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 19289:2015,https://www.iso.org/standard/64287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO/DIS 19926-1,https://www.iso.org/standard/66559.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 21413:2005,https://www.iso.org/standard/40365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 8,https://www.iso.org/contents/data/committee/05/17/51728/x/catalogue/ -ISO/TR 21414:2016,https://www.iso.org/standard/62011.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 8,https://www.iso.org/contents/data/committee/05/17/51728/x/catalogue/ -ISO/TR 23211:2009,https://www.iso.org/standard/41365.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 8,https://www.iso.org/contents/data/committee/05/17/51728/x/catalogue/ -ISO 28902-1:2012,https://www.iso.org/standard/45022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 28902-2:2017,https://www.iso.org/standard/59210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO/DIS 28902-3,https://www.iso.org/standard/71592.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 18457:2016,https://www.iso.org/standard/62499.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 266,https://www.iso.org/contents/data/committee/65/25/652577/x/catalogue/ -ISO 18458:2015,https://www.iso.org/standard/62500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 266,https://www.iso.org/contents/data/committee/65/25/652577/x/catalogue/ -ISO 18459:2015,https://www.iso.org/standard/62501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 266,https://www.iso.org/contents/data/committee/65/25/652577/x/catalogue/ -ISO/DTR 20386,https://www.iso.org/standard/67886.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 276,https://www.iso.org/contents/data/committee/45/14/4514241/x/catalogue/ -ISO/DIS 20387,https://www.iso.org/standard/67888.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 276,https://www.iso.org/contents/data/committee/45/14/4514241/x/catalogue/ -ISO 20391-1:2018,https://www.iso.org/standard/68879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 276,https://www.iso.org/contents/data/committee/45/14/4514241/x/catalogue/ -ISO/CD 20391-2,https://www.iso.org/standard/67892.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 276,https://www.iso.org/contents/data/committee/45/14/4514241/x/catalogue/ -ISO/ASTM 51940:2013,https://www.iso.org/standard/61087.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/CD 35001,https://www.iso.org/standard/71293.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 11737-1:2018,https://www.iso.org/standard/66451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11737-2:2009,https://www.iso.org/standard/44955.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/CD 11737-2,https://www.iso.org/standard/70801.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 6222:1999,https://www.iso.org/standard/28960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 6461-1:1986,https://www.iso.org/standard/12816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 6461-2:1986,https://www.iso.org/standard/12818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 7704:1985,https://www.iso.org/standard/14527.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO/CD 7704,https://www.iso.org/standard/68772.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 7899-1:1998,https://www.iso.org/standard/14852.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 7899-1:1998/Cor 1:2000,https://www.iso.org/standard/33840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 7899-2:2000,https://www.iso.org/standard/14854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 8199:2005,https://www.iso.org/standard/37011.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO/DIS 8199,https://www.iso.org/standard/64151.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 9308-1:2014,https://www.iso.org/standard/55832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 9308-1:2014/Amd 1:2016,https://www.iso.org/standard/70094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 9308-2:2012,https://www.iso.org/standard/52246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 9308-3:1998,https://www.iso.org/standard/20878.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 9308-3:1998/Cor 1:2000,https://www.iso.org/standard/33839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 10705-1:1995,https://www.iso.org/standard/18794.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 10705-2:2000,https://www.iso.org/standard/20127.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 10705-3:2003,https://www.iso.org/standard/27806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 10705-4:2001,https://www.iso.org/standard/27892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 11133:2014,https://www.iso.org/standard/53610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11133:2014/Amd 1,https://www.iso.org/standard/72068.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11133:2014/DAmd 2,https://www.iso.org/standard/70354.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11731:2017,https://www.iso.org/standard/61782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO/DTS 12869,https://www.iso.org/standard/70756.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO/TS 12869:2012,https://www.iso.org/standard/52079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 13843:2017,https://www.iso.org/standard/62979.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 14189:2013,https://www.iso.org/standard/54495.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 15553:2006,https://www.iso.org/standard/39804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 17994:2014,https://www.iso.org/standard/56617.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 17995:2005,https://www.iso.org/standard/42082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO/CD 17995,https://www.iso.org/standard/69047.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 19250:2010,https://www.iso.org/standard/43448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 4831:2006,https://www.iso.org/standard/38280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 4832:2006,https://www.iso.org/standard/38282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 4833-1:2013,https://www.iso.org/standard/53728.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 4833-1:2013/NP Amd 1,https://www.iso.org/standard/73329.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 4833-2:2013,https://www.iso.org/standard/59509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 4833-2:2013/Cor 1:2014,https://www.iso.org/standard/65999.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 4833-2:2013/NP Amd 1,https://www.iso.org/standard/73330.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6579-1:2017,https://www.iso.org/standard/56712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TS 6579-2:2012,https://www.iso.org/standard/56713.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TR 6579-3:2014,https://www.iso.org/standard/56714.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6611:2004,https://www.iso.org/standard/40473.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6730:2005,https://www.iso.org/standard/42068.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6887-1:2017,https://www.iso.org/standard/63335.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6887-2:2017,https://www.iso.org/standard/63336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6887-3:2017,https://www.iso.org/standard/63337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6887-4:2017,https://www.iso.org/standard/63338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6887-5:2010,https://www.iso.org/standard/50306.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/CD 6887-5,https://www.iso.org/standard/71502.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6887-6:2013,https://www.iso.org/standard/53664.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6888-1:1999,https://www.iso.org/standard/23036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6888-1:1999/Amd 1:2003,https://www.iso.org/standard/36145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6888-1:1999/FDAmd 2,https://www.iso.org/standard/64947.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6888-2:1999,https://www.iso.org/standard/25571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6888-2:1999/Amd 1:2003,https://www.iso.org/standard/35898.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 6888-3:2003,https://www.iso.org/standard/33147.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 7218:2007,https://www.iso.org/standard/36534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 7218:2007/Amd 1:2013,https://www.iso.org/standard/52204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 7251:2005,https://www.iso.org/standard/34568.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 7889:2003,https://www.iso.org/standard/31880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 7932:2004,https://www.iso.org/standard/38219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 7937:2004,https://www.iso.org/standard/36588.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 8552:2004,https://www.iso.org/standard/31881.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8553:2004,https://www.iso.org/standard/31882.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9232:2003,https://www.iso.org/standard/33764.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 10272-1:2017,https://www.iso.org/standard/63225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 10272-2:2017,https://www.iso.org/standard/63228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 10273:2017,https://www.iso.org/standard/63329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11133:2014,https://www.iso.org/standard/53610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11133:2014/Amd 1,https://www.iso.org/standard/72068.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11133:2014/DAmd 2,https://www.iso.org/standard/70354.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11290-1:2017,https://www.iso.org/standard/60313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11290-2:2017,https://www.iso.org/standard/60314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11866-1:2005,https://www.iso.org/standard/42703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11866-2:2005,https://www.iso.org/standard/42704.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 13136:2012,https://www.iso.org/standard/53328.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 13307:2013,https://www.iso.org/standard/53667.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 13559:2002,https://www.iso.org/standard/33827.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 13720:2010,https://www.iso.org/standard/45099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 13722:2017,https://www.iso.org/standard/69052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 13969:2003,https://www.iso.org/standard/35327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14461-1:2005,https://www.iso.org/standard/36837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14461-2:2005,https://www.iso.org/standard/36838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15174:2012,https://www.iso.org/standard/55373.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15213:2003,https://www.iso.org/standard/26852.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/CD 15213-1,https://www.iso.org/standard/67050.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/CD 15213-2,https://www.iso.org/standard/71498.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/CD 15213-3,https://www.iso.org/standard/71499.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 15214:1998,https://www.iso.org/standard/26853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 15216-1:2017,https://www.iso.org/standard/65681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/CD 15216-2,https://www.iso.org/standard/74263.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TS 15216-2:2013,https://www.iso.org/standard/60297.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 16140-1:2016,https://www.iso.org/standard/54869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 16140-2:2016,https://www.iso.org/standard/54870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/DIS 16140-3,https://www.iso.org/standard/66324.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/DIS 16140-4,https://www.iso.org/standard/66325.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/DIS 16140-5,https://www.iso.org/standard/66326.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/DIS 16140-6,https://www.iso.org/standard/66327.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 16649-1:2001,https://www.iso.org/standard/29823.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/FDIS 16649-1,https://www.iso.org/standard/64951.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 16649-2:2001,https://www.iso.org/standard/29824.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 16649-3:2015,https://www.iso.org/standard/56824.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 16654:2001,https://www.iso.org/standard/29821.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 16654:2001/Amd 1:2017,https://www.iso.org/standard/64704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 17410:2001,https://www.iso.org/standard/30649.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/DIS 17410,https://www.iso.org/standard/67437.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 17468:2016,https://www.iso.org/standard/59858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 17604:2015,https://www.iso.org/standard/62769.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TS 17728:2015,https://www.iso.org/standard/60322.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TS 17919:2013,https://www.iso.org/standard/61010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 18465:2017,https://www.iso.org/standard/62512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 18593:2004,https://www.iso.org/standard/39849.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/FDIS 18593,https://www.iso.org/standard/64950.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 18743:2015,https://www.iso.org/standard/63251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 18744:2016,https://www.iso.org/standard/63252.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TS 18867:2015,https://www.iso.org/standard/63635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 19020:2017,https://www.iso.org/standard/63747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/CD 19036,https://www.iso.org/standard/71899.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TS 19036:2006,https://www.iso.org/standard/38948.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TS 19036:2006/Amd 1:2009,https://www.iso.org/standard/45817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 19343:2017,https://www.iso.org/standard/64657.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 20128:2006,https://www.iso.org/standard/35292.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 20836:2005,https://www.iso.org/standard/39759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 20837:2006,https://www.iso.org/standard/39760.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 20838:2006,https://www.iso.org/standard/39761.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/DIS 20976-1,https://www.iso.org/standard/69673.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 21187:2004,https://www.iso.org/standard/34434.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/NP 21187,https://www.iso.org/standard/72825.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 21527-1:2008,https://www.iso.org/standard/38275.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 21527-2:2008,https://www.iso.org/standard/38276.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 21528-1:2017,https://www.iso.org/standard/55228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 21528-2:2017,https://www.iso.org/standard/63504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 21567:2004,https://www.iso.org/standard/34612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 21807:2004,https://www.iso.org/standard/34728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 21871:2006,https://www.iso.org/standard/36015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/FDIS 21872,https://www.iso.org/standard/65687.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 21872-1:2017,https://www.iso.org/standard/74112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/DIS 22117,https://www.iso.org/standard/67052.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/TS 22117:2010,https://www.iso.org/standard/40720.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 22118:2011,https://www.iso.org/standard/45034.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 22119:2011,https://www.iso.org/standard/45035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 22174:2005,https://www.iso.org/standard/36153.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 22964:2017,https://www.iso.org/standard/64708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 11930:2012,https://www.iso.org/standard/51037.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/DIS 11930,https://www.iso.org/standard/75058.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 16212:2017,https://www.iso.org/standard/72241.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 17516:2014,https://www.iso.org/standard/59938.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 18415:2017,https://www.iso.org/standard/72238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 18416:2015,https://www.iso.org/standard/68314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/TR 19838:2016,https://www.iso.org/standard/66336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 21148:2017,https://www.iso.org/standard/72239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 21149:2017,https://www.iso.org/standard/72240.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 21150:2015,https://www.iso.org/standard/68311.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 22717:2015,https://www.iso.org/standard/68312.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 22718:2015,https://www.iso.org/standard/68313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 29621:2017,https://www.iso.org/standard/68310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 846:1997,https://www.iso.org/standard/20578.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/CD 846,https://www.iso.org/standard/70278.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/DIS 846,https://www.iso.org/standard/74599.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 8784-1:2014,https://www.iso.org/standard/53064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 10718:2015,https://www.iso.org/standard/65028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 20743:2013,https://www.iso.org/standard/59586.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 21703,https://www.iso.org/standard/71366.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO/TS 10797:2012,https://www.iso.org/standard/46127.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 10798,https://www.iso.org/standard/69546.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 10798:2011,https://www.iso.org/standard/46128.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO 10801:2010,https://www.iso.org/standard/46129.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO 10808:2010,https://www.iso.org/standard/46130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 10867,https://www.iso.org/standard/75336.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 10867:2010,https://www.iso.org/standard/46245.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 10868:2017,https://www.iso.org/standard/69547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 10929:2012,https://www.iso.org/standard/46424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 11251,https://www.iso.org/standard/75337.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 11251:2010,https://www.iso.org/standard/50339.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 11308,https://www.iso.org/standard/69548.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 11308:2011,https://www.iso.org/standard/50357.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 11360:2010,https://www.iso.org/standard/55967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 11811:2012,https://www.iso.org/standard/50835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 11888:2017,https://www.iso.org/standard/69549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 11931:2012,https://www.iso.org/standard/52825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 11937:2012,https://www.iso.org/standard/52827.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 12025,https://www.iso.org/standard/73131.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 12025:2012,https://www.iso.org/standard/62368.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 12802:2010,https://www.iso.org/standard/51765.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 12805:2011,https://www.iso.org/standard/51766.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/DTR 12885,https://www.iso.org/standard/67446.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 12885:2008,https://www.iso.org/standard/52093.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 12901-1:2012,https://www.iso.org/standard/52125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 12901-2:2014,https://www.iso.org/standard/53375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 13014:2012,https://www.iso.org/standard/52334.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 13014:2012/Cor 1:2012,https://www.iso.org/standard/62390.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 13121:2011,https://www.iso.org/standard/52976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 13278:2017,https://www.iso.org/standard/69310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 13329:2012,https://www.iso.org/standard/53705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 13830:2013,https://www.iso.org/standard/54315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 14101:2012,https://www.iso.org/standard/54470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 14786:2014,https://www.iso.org/standard/55039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 16195,https://www.iso.org/standard/73130.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 16195:2013,https://www.iso.org/standard/55825.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 16196:2016,https://www.iso.org/standard/55826.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 16197:2014,https://www.iso.org/standard/55827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 16550:2014,https://www.iso.org/standard/57084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 17200,https://www.iso.org/standard/73132.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 17200:2013,https://www.iso.org/standard/59369.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 17302:2015,https://www.iso.org/standard/59542.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 17466:2015,https://www.iso.org/standard/59853.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 18110:2015,https://www.iso.org/standard/61482.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 18196:2016,https://www.iso.org/standard/61734.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 18401:2017,https://www.iso.org/standard/62384.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 18637:2016,https://www.iso.org/standard/63096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 18827:2017,https://www.iso.org/standard/63502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 19006:2016,https://www.iso.org/standard/63697.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/FDIS 19007,https://www.iso.org/standard/63698.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 19057:2017,https://www.iso.org/standard/63836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 19337:2016,https://www.iso.org/standard/64652.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 19590:2017,https://www.iso.org/standard/65419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 19601:2017,https://www.iso.org/standard/65451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 19716:2016,https://www.iso.org/standard/66110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/DTS 19807,https://www.iso.org/standard/66237.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 20477:2017,https://www.iso.org/standard/68153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/DTS 20660,https://www.iso.org/standard/68771.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 20787:2017,https://www.iso.org/standard/69087.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/PRF TS 21362,https://www.iso.org/standard/70761.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO 29701:2010,https://www.iso.org/standard/45640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -IEC/CD 62565-3-1,https://www.iso.org/standard/66782.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -IEC/TS 62607-2-1:2015,https://www.iso.org/standard/52933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -IEC/TS 62622:2012,https://www.iso.org/standard/53012.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-1:2015,https://www.iso.org/standard/68058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-2:2015,https://www.iso.org/standard/54440.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 80004-3,https://www.iso.org/standard/75335.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-3:2010,https://www.iso.org/standard/50741.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 80004-4,https://www.iso.org/standard/70180.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-4:2011,https://www.iso.org/standard/52195.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-5:2011,https://www.iso.org/standard/51767.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 80004-6,https://www.iso.org/standard/74665.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-6:2013,https://www.iso.org/standard/52333.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-7:2011,https://www.iso.org/standard/51962.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/NP TS 80004-8,https://www.iso.org/standard/74666.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-8:2013,https://www.iso.org/standard/52937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -IEC/TS 80004-9:2017,https://www.iso.org/standard/62945.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-11:2017,https://www.iso.org/standard/63253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-12:2016,https://www.iso.org/standard/63095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 80004-13:2017,https://www.iso.org/standard/64741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO 18385:2016,https://www.iso.org/standard/62341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 272,https://www.iso.org/contents/data/committee/43/95/4395817/x/catalogue/ -ISO/CD 20962,https://www.iso.org/standard/69626.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/43/95/4395817/x/catalogue/ -ISO/DIS 21043-1,https://www.iso.org/standard/69732.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 272,https://www.iso.org/contents/data/committee/43/95/4395817/x/catalogue/ -ISO/DIS 21043-2,https://www.iso.org/standard/72041.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 272,https://www.iso.org/contents/data/committee/43/95/4395817/x/catalogue/ -ISO/IEC Guide 63:2012,https://www.iso.org/standard/50729.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -IWA 18:2016,https://www.iso.org/standard/67913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/CD 21388,https://www.iso.org/standard/74602.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO/CD 21388-1,https://www.iso.org/standard/70850.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO/TR 11991:1995,https://www.iso.org/standard/20619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 18662-1:2017,https://www.iso.org/standard/63148.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 19465:2017,https://www.iso.org/standard/64962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/CD 21300,https://www.iso.org/standard/70496.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DTS 21831,https://www.iso.org/standard/72079.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/ASTM 51939:2017,https://www.iso.org/standard/71031.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/IEC CD Guide 63,https://www.iso.org/standard/67944.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 13485:2016,https://www.iso.org/standard/59752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 14971:2007,https://www.iso.org/standard/38193.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/CD 14971,https://www.iso.org/standard/72704.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 15223-1:2016,https://www.iso.org/standard/69081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 15223-2:2010,https://www.iso.org/standard/42343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 15378:2017,https://www.iso.org/standard/70729.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 16142-1:2016,https://www.iso.org/standard/63939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 16142-2:2017,https://www.iso.org/standard/63940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/PAS 18761:2013,https://www.iso.org/standard/63309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/TS 19218-1:2011,https://www.iso.org/standard/55589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TS 19218-1:2011/Amd 1:2013,https://www.iso.org/standard/58085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TS 19218-2:2012,https://www.iso.org/standard/55590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TR 19244:2014,https://www.iso.org/standard/64129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/CD 20069,https://www.iso.org/standard/66945.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/CD 20417,https://www.iso.org/standard/67943.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/DTR 24971,https://www.iso.org/standard/74437.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TR 24971:2013,https://www.iso.org/standard/59587.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 62304:2006,https://www.iso.org/standard/38421.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 62304:2006/Amd 1:2015,https://www.iso.org/standard/64686.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC/CD 62304,https://www.iso.org/standard/71604.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC 62366-1:2015,https://www.iso.org/standard/63179.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 62366-1:2015/CD Amd 1,https://www.iso.org/standard/73007.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 62366-1:2015/Cor 1:2016,https://www.iso.org/standard/72042.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC/TR 62366-2:2016,https://www.iso.org/standard/69126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 80001-1:2010,https://www.iso.org/standard/44863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/NP 80001-1,https://www.iso.org/standard/72026.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-8:2016,https://www.iso.org/standard/64635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-1:2012,https://www.iso.org/standard/57934.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-2:2012,https://www.iso.org/standard/57939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-3:2012,https://www.iso.org/standard/57941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-4:2012,https://www.iso.org/standard/62323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-5:2014,https://www.iso.org/standard/63718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 80001-2-6:2014,https://www.iso.org/standard/63108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 80001-2-7:2015,https://www.iso.org/standard/63509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-9:2017,https://www.iso.org/standard/69355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80002-1:2009,https://www.iso.org/standard/54146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TR 80002-2:2017,https://www.iso.org/standard/60044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC/TR 80002-3:2014,https://www.iso.org/standard/65624.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC/DIS 80601-2-77,https://www.iso.org/standard/68473.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -IEC/DIS 80601-2-78,https://www.iso.org/standard/68474.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 32:1977,https://www.iso.org/standard/3659.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 407:2004,https://www.iso.org/standard/40148.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 4135:2001,https://www.iso.org/standard/27375.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 4,https://www.iso.org/contents/data/committee/05/20/52024/x/catalogue/ -ISO/AWI 4135,https://www.iso.org/standard/75315.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 121/SC 4,https://www.iso.org/contents/data/committee/05/20/52024/x/catalogue/ -ISO 5356-1:2015,https://www.iso.org/standard/54851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 5356-2:2012,https://www.iso.org/standard/61446.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 5358:1992,https://www.iso.org/standard/11385.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 5359:2014,https://www.iso.org/standard/59953.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 5359:2014/Amd 1:2017,https://www.iso.org/standard/68680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 5360:2016,https://www.iso.org/standard/68417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 5361:2016,https://www.iso.org/standard/63295.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 5362:2006,https://www.iso.org/standard/43011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 5364:2016,https://www.iso.org/standard/63296.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 5366:2016,https://www.iso.org/standard/62242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 5367:2014,https://www.iso.org/standard/55387.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 7376:2009,https://www.iso.org/standard/44073.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO/DIS 7376,https://www.iso.org/standard/71539.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 7396-1:2007/Amd 3:2013,https://www.iso.org/standard/57986.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 7396-1:2016,https://www.iso.org/standard/60061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 7396-1:2016/Amd 1:2017,https://www.iso.org/standard/72456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 7396-2:2007,https://www.iso.org/standard/41945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 8835-7:2011,https://www.iso.org/standard/53545.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 8836:2014,https://www.iso.org/standard/59236.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO/CD 8836,https://www.iso.org/standard/73496.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 9170-1:2017,https://www.iso.org/standard/67451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 9170-2:2008,https://www.iso.org/standard/42056.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 9360-1:2000,https://www.iso.org/standard/23913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 9360-2:2001,https://www.iso.org/standard/30137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 10079-1:2015,https://www.iso.org/standard/59432.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 8,https://www.iso.org/contents/data/committee/05/20/52038/x/catalogue/ -ISO 10079-1:2015/FDAmd 1,https://www.iso.org/standard/72087.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 121/SC 8,https://www.iso.org/contents/data/committee/05/20/52038/x/catalogue/ -ISO 10079-2:2014,https://www.iso.org/standard/61181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 8,https://www.iso.org/contents/data/committee/05/20/52038/x/catalogue/ -ISO 10079-3:2014,https://www.iso.org/standard/61182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 8,https://www.iso.org/contents/data/committee/05/20/52038/x/catalogue/ -ISO 10524-1,https://www.iso.org/standard/67190.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 10524-1:2006,https://www.iso.org/standard/38491.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 10524-2,https://www.iso.org/standard/66690.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 10524-2:2005,https://www.iso.org/standard/35371.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 10524-3:2005,https://www.iso.org/standard/35372.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 10524-3:2005/Amd 1:2013,https://www.iso.org/standard/44249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO/FDIS 10524-3,https://www.iso.org/standard/66691.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 10524-4:2008,https://www.iso.org/standard/41931.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 10651-3:1997,https://www.iso.org/standard/21436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 10651-4:2002,https://www.iso.org/standard/30712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 10651-5:2006,https://www.iso.org/standard/35975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 10651-6:2004,https://www.iso.org/standard/35974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 11040-1:2015,https://www.iso.org/standard/67064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-2:2011,https://www.iso.org/standard/53947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-3:2012,https://www.iso.org/standard/53948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11117:2008,https://www.iso.org/standard/37772.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 11117:2008/Cor 1:2009,https://www.iso.org/standard/54096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/AWI 11117,https://www.iso.org/standard/69934.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 11195:2018,https://www.iso.org/standard/67242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 11197:2016,https://www.iso.org/standard/60316.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO/DIS 11197,https://www.iso.org/standard/74384.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 11499:2014,https://www.iso.org/standard/61170.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 11712:2009,https://www.iso.org/standard/50722.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO/DIS 11990,https://www.iso.org/standard/69226.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11990-1:2011,https://www.iso.org/standard/45685.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11990-2:2010,https://www.iso.org/standard/45686.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 14408:2016,https://www.iso.org/standard/63262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 15001:2010,https://www.iso.org/standard/44250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 15002:2008,https://www.iso.org/standard/42057.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 15002:2008/Amd 1:2018,https://www.iso.org/standard/71970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 16571:2014,https://www.iso.org/standard/57119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 16628:2008,https://www.iso.org/standard/44167.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO/DIS 17256,https://www.iso.org/standard/72070.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 17510:2015,https://www.iso.org/standard/64910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 18082:2014,https://www.iso.org/standard/61329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 18082:2014/Amd 1:2017,https://www.iso.org/standard/68681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 18190:2016,https://www.iso.org/standard/61728.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 18562-1:2017,https://www.iso.org/standard/62892.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 18562-2:2017,https://www.iso.org/standard/62893.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 18562-3:2017,https://www.iso.org/standard/62894.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 18562-4:2017,https://www.iso.org/standard/62895.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 18778:2005,https://www.iso.org/standard/38871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 18835:2015,https://www.iso.org/standard/62046.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO/DIS 19211,https://www.iso.org/standard/65984.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO/DIS 19223.2,https://www.iso.org/standard/51164.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 121/SC 4,https://www.iso.org/contents/data/committee/05/20/52024/x/catalogue/ -ISO 20072:2009,https://www.iso.org/standard/41989.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/FDIS 20789,https://www.iso.org/standard/69104.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO/PRF TR 21954,https://www.iso.org/standard/72287.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 21969:2009,https://www.iso.org/standard/52967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 23328-1:2003,https://www.iso.org/standard/35330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 23328-2:2002,https://www.iso.org/standard/35329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 23747:2015,https://www.iso.org/standard/64926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 26782:2009,https://www.iso.org/standard/43761.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 26782:2009/Cor 1:2009,https://www.iso.org/standard/55453.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 26825:2008,https://www.iso.org/standard/43811.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 27427:2013,https://www.iso.org/standard/59482.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -IEC 60601-1-8:2006,https://www.iso.org/standard/41986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-1-8:2006/Amd 1:2012,https://www.iso.org/standard/59935.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-1-8:2006/CD Amd 2,https://www.iso.org/standard/72634.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-1-10:2007,https://www.iso.org/standard/44104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-1-10:2007/Amd 1:2013,https://www.iso.org/standard/62779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-1-10:2007/CD Amd 2,https://www.iso.org/standard/72633.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-1-11:2015,https://www.iso.org/standard/65529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-1-11:2015/CD Amd 1,https://www.iso.org/standard/72632.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-1-12:2015,https://www.iso.org/standard/59536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80369-1:2010,https://www.iso.org/standard/45976.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/FDIS 80369-1,https://www.iso.org/standard/64419.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/DIS 80601-2-84,https://www.iso.org/standard/72441.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-12:2011,https://www.iso.org/standard/51141.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-12:2011/Cor 1:2011,https://www.iso.org/standard/60254.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO/DIS 80601-2-12,https://www.iso.org/standard/72069.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-13:2011,https://www.iso.org/standard/51285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 80601-2-13:2011/Amd 1:2015,https://www.iso.org/standard/61685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 80601-2-13:2011/FDAmd 2,https://www.iso.org/standard/71537.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -IEC 80601-2-30:2009,https://www.iso.org/standard/44105.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 80601-2-30:2009/Amd 1:2013,https://www.iso.org/standard/56661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC/FDIS 80601-2-30,https://www.iso.org/standard/70653.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-55,https://www.iso.org/standard/67241.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 80601-2-55:2011,https://www.iso.org/standard/52211.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 80601-2-61:2017,https://www.iso.org/standard/67963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-67:2014,https://www.iso.org/standard/46478.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-69:2014,https://www.iso.org/standard/59978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-70:2015,https://www.iso.org/standard/60049.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 80601-2-71:2015,https://www.iso.org/standard/61105.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-72:2015,https://www.iso.org/standard/61389.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-74:2017,https://www.iso.org/standard/65008.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO/FDIS 80601-2-79,https://www.iso.org/standard/68843.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO/FDIS 80601-2-80,https://www.iso.org/standard/68844.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 81060-1:2007,https://www.iso.org/standard/42914.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 81060-2:2009/Cor 1:2011,https://www.iso.org/standard/57997.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 81060-2:2013,https://www.iso.org/standard/57977.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO/DIS 81060-2,https://www.iso.org/standard/73339.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 1135-3:2016,https://www.iso.org/standard/66814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 1135-4:2015,https://www.iso.org/standard/63425.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 1135-5:2015,https://www.iso.org/standard/63426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 3826-1:2013,https://www.iso.org/standard/56075.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/DIS 3826-1,https://www.iso.org/standard/70726.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 3826-2:2008,https://www.iso.org/standard/45611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 3826-3:2006,https://www.iso.org/standard/38795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 3826-4:2015,https://www.iso.org/standard/62463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 6710:2017,https://www.iso.org/standard/69659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8362-1:2009,https://www.iso.org/standard/53954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8362-1:2009/Amd 1:2015,https://www.iso.org/standard/66103.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/DIS 8362-1,https://www.iso.org/standard/74398.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8362-2:2015,https://www.iso.org/standard/66180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8362-3:2001,https://www.iso.org/standard/33804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8362-4:2011,https://www.iso.org/standard/57745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8362-5:2016,https://www.iso.org/standard/65448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8362-6:2010,https://www.iso.org/standard/52806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8362-7:2006,https://www.iso.org/standard/43551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-1:2011,https://www.iso.org/standard/56076.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-2:2010,https://www.iso.org/standard/51770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-3:2009,https://www.iso.org/standard/52177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-4:2010,https://www.iso.org/standard/55799.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-4:2010/Amd 1:2013,https://www.iso.org/standard/60471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/DIS 8536-4,https://www.iso.org/standard/70730.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-5:2004,https://www.iso.org/standard/20921.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-6:2016,https://www.iso.org/standard/69394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-7:2009,https://www.iso.org/standard/52178.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-8:2015,https://www.iso.org/standard/63619.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-9:2015,https://www.iso.org/standard/63620.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-10:2015,https://www.iso.org/standard/63621.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-11:2015,https://www.iso.org/standard/63622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-12:2007,https://www.iso.org/standard/40236.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-12:2007/Amd 1:2012,https://www.iso.org/standard/60470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/WD 8536-12,https://www.iso.org/standard/70731.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-13:2016,https://www.iso.org/standard/63427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8536-14:2016,https://www.iso.org/standard/66125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8871-1:2003,https://www.iso.org/standard/33770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8871-2:2003,https://www.iso.org/standard/28945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8871-2:2003/Amd 1:2005,https://www.iso.org/standard/39803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8871-3:2003,https://www.iso.org/standard/33771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8871-3:2003/Amd 1:2018,https://www.iso.org/standard/73593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8871-4:2006,https://www.iso.org/standard/33787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8871-5:2016,https://www.iso.org/standard/68560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 8872:2003,https://www.iso.org/standard/35060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 9187-1:2010,https://www.iso.org/standard/55920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 9187-2:2010,https://www.iso.org/standard/55921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 10985:2009,https://www.iso.org/standard/52179.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-1:2016,https://www.iso.org/standard/67702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-2:2016,https://www.iso.org/standard/66273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-2:2016/Amd 1:2017,https://www.iso.org/standard/73362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-3:2016,https://www.iso.org/standard/66275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-3:2016/Amd 1:2017,https://www.iso.org/standard/73361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-5:2015,https://www.iso.org/standard/66669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-7:2016,https://www.iso.org/standard/66688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 15010:1998,https://www.iso.org/standard/25574.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 15137:2005,https://www.iso.org/standard/37391.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 15375:2010,https://www.iso.org/standard/52805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 15747:2010,https://www.iso.org/standard/51479.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/DIS 15747,https://www.iso.org/standard/70727.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 15759:2005,https://www.iso.org/standard/40901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/TR 19727:2017,https://www.iso.org/standard/66132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 21649:2006,https://www.iso.org/standard/35954.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 22413:2010,https://www.iso.org/standard/56026.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/WD 22413,https://www.iso.org/standard/70728.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 28620:2010,https://www.iso.org/standard/44810.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/CD 28620,https://www.iso.org/standard/74736.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 80369-1:2010,https://www.iso.org/standard/45976.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/FDIS 80369-1,https://www.iso.org/standard/64419.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 6009:2016,https://www.iso.org/standard/63277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 7864:2016,https://www.iso.org/standard/60481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 7885:2010,https://www.iso.org/standard/45606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7886-1:2017,https://www.iso.org/standard/64790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 7886-2:1996,https://www.iso.org/standard/21017.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 7886-3:2005,https://www.iso.org/standard/36742.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/DIS 7886-3,https://www.iso.org/standard/66138.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 7886-4:2006,https://www.iso.org/standard/38024.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/DIS 7886-4,https://www.iso.org/standard/70326.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 8537:2016,https://www.iso.org/standard/60510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 8836:2014,https://www.iso.org/standard/59236.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO/CD 8836,https://www.iso.org/standard/73496.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 121/SC 2,https://www.iso.org/contents/data/committee/05/20/52006/x/catalogue/ -ISO 9626:2016,https://www.iso.org/standard/60480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 9997:1999,https://www.iso.org/standard/20416.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 10555-1:2013,https://www.iso.org/standard/54884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 10555-1:2013/Amd 1:2017,https://www.iso.org/standard/70319.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 10555-3:2013,https://www.iso.org/standard/57382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 10555-4:2013,https://www.iso.org/standard/57383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 10555-5:2013,https://www.iso.org/standard/54885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 10555-6:2015,https://www.iso.org/standard/61139.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 11040-1:2015,https://www.iso.org/standard/67064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-2:2011,https://www.iso.org/standard/53947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-3:2012,https://www.iso.org/standard/53948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-4:2015,https://www.iso.org/standard/58079.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-5:2012,https://www.iso.org/standard/53968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-6:2012,https://www.iso.org/standard/51919.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/DIS 11040-6,https://www.iso.org/standard/69487.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-7:2015,https://www.iso.org/standard/59937.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-8:2016,https://www.iso.org/standard/66036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11070:2014,https://www.iso.org/standard/63315.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 11070:2014/DAmd 1,https://www.iso.org/standard/72859.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 11608-1:2014,https://www.iso.org/standard/65021.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/NP 11608-1,https://www.iso.org/standard/70733.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 11608-2:2012,https://www.iso.org/standard/52526.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/NP 11608-2,https://www.iso.org/standard/70734.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 11608-3:2012,https://www.iso.org/standard/52527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 11608-4:2006,https://www.iso.org/standard/39219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 11608-5:2012,https://www.iso.org/standard/55729.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 11608-7:2016,https://www.iso.org/standard/62507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 13926-1:2004,https://www.iso.org/standard/40331.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/DIS 13926-1,https://www.iso.org/standard/73466.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 13926-2:2017,https://www.iso.org/standard/72576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 13926-3:2012,https://www.iso.org/standard/53950.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/CD 13926-3,https://www.iso.org/standard/75131.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 14972:1998,https://www.iso.org/standard/26128.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 17218:2014,https://www.iso.org/standard/59443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 18250-1,https://www.iso.org/standard/67284.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/DIS 18250-3,https://www.iso.org/standard/61895.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/CD 18250-6,https://www.iso.org/standard/69731.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/DIS 18250-7,https://www.iso.org/standard/69729.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/DIS 18250-8,https://www.iso.org/standard/65684.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 18746:2016,https://www.iso.org/standard/63263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 20487,https://www.iso.org/standard/68192.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 20695,https://www.iso.org/standard/68853.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/FDIS 20696,https://www.iso.org/standard/68854.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/FDIS 20697,https://www.iso.org/standard/68855.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/FDIS 20698,https://www.iso.org/standard/68856.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 23908:2011,https://www.iso.org/standard/50680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 26825:2008,https://www.iso.org/standard/43811.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 80369-3:2016,https://www.iso.org/standard/50731.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 80369-3:2016/DAmd 1,https://www.iso.org/standard/74038.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 80369-3:2016/DAmd 1,https://www.iso.org/standard/71925.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 80369-3:2016/DAmd 2,https://www.iso.org/standard/71927.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/DIS 80369-3,https://www.iso.org/standard/74964.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 80369-5:2016,https://www.iso.org/standard/50733.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 80369-5:2016/Cor 1:2017,https://www.iso.org/standard/73316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 80369-6:2016,https://www.iso.org/standard/50734.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 80369-7:2016,https://www.iso.org/standard/58011.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 80369-20:2015,https://www.iso.org/standard/63837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO 7151:1988,https://www.iso.org/standard/13745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 170,https://www.iso.org/contents/data/committee/05/36/53648/x/catalogue/ -ISO 7153-1:2016,https://www.iso.org/standard/66850.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 170,https://www.iso.org/contents/data/committee/05/36/53648/x/catalogue/ -ISO 7740:1985,https://www.iso.org/standard/14579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 170,https://www.iso.org/contents/data/committee/05/36/53648/x/catalogue/ -ISO 7741:1986,https://www.iso.org/standard/14580.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 170,https://www.iso.org/contents/data/committee/05/36/53648/x/catalogue/ -ISO 10936-1:2017,https://www.iso.org/standard/69819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 10936-2:2010,https://www.iso.org/standard/44537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11810:2015,https://www.iso.org/standard/65248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 13402:1995,https://www.iso.org/standard/21241.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 170,https://www.iso.org/contents/data/committee/05/36/53648/x/catalogue/ -ISO 5832-1:2016,https://www.iso.org/standard/66636.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-2,https://www.iso.org/standard/69907.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-2:1999,https://www.iso.org/standard/26829.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-3:2016,https://www.iso.org/standard/66637.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-4:2014,https://www.iso.org/standard/64614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-5:2005,https://www.iso.org/standard/35169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-6:1997,https://www.iso.org/standard/25357.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-7:2016,https://www.iso.org/standard/69131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-8:1997,https://www.iso.org/standard/21972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-9:2007,https://www.iso.org/standard/39022.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 5832-9,https://www.iso.org/standard/72593.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-11:2014,https://www.iso.org/standard/64615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-12:2007,https://www.iso.org/standard/39088.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-12:2007/Cor 1:2008,https://www.iso.org/standard/52282.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 5832-12,https://www.iso.org/standard/72594.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5832-14:2007,https://www.iso.org/standard/44018.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 5832-14,https://www.iso.org/standard/72595.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5833:2002,https://www.iso.org/standard/30980.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5834-1:2005,https://www.iso.org/standard/39900.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5834-1:2005/Cor 1:2007,https://www.iso.org/standard/46108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 5834-1,https://www.iso.org/standard/73674.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5834-2:2011,https://www.iso.org/standard/55602.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 5834-2,https://www.iso.org/standard/73675.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5834-3:2005,https://www.iso.org/standard/34400.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 5834-3,https://www.iso.org/standard/73676.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5834-4:2005,https://www.iso.org/standard/34401.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 5834-4,https://www.iso.org/standard/73677.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5834-5:2005,https://www.iso.org/standard/38207.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 5834-5,https://www.iso.org/standard/73678.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 5835:1991,https://www.iso.org/standard/12001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 5836:1988,https://www.iso.org/standard/12006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 5837-1:1985,https://www.iso.org/standard/12012.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 5838-1:2013,https://www.iso.org/standard/59183.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 5838-2:1991,https://www.iso.org/standard/12015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 5838-3:1993,https://www.iso.org/standard/12016.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 5840-1:2015,https://www.iso.org/standard/61732.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 5840-2:2015,https://www.iso.org/standard/51314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 5840-3:2013,https://www.iso.org/standard/51313.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/NP 5840-3,https://www.iso.org/standard/67606.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 5841-2:2014,https://www.iso.org/standard/60541.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 5841-3:2013,https://www.iso.org/standard/60542.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/FDIS 5910,https://www.iso.org/standard/66356.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 6474-1:2010,https://www.iso.org/standard/45577.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 6474-1,https://www.iso.org/standard/69906.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 6474-2:2012,https://www.iso.org/standard/50699.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 6474-2,https://www.iso.org/standard/72592.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 6475:1989,https://www.iso.org/standard/12838.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO/CD 6475,https://www.iso.org/standard/72354.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 7197:2006,https://www.iso.org/standard/38403.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 7197:2006/Cor 1:2007,https://www.iso.org/standard/46408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 7198:2016,https://www.iso.org/standard/50661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 7199:2016,https://www.iso.org/standard/67607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 7199:2016/CD Amd 1,https://www.iso.org/standard/74732.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 7206-1:2008,https://www.iso.org/standard/42768.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7206-2:2011,https://www.iso.org/standard/51947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7206-2:2011/Amd 1:2016,https://www.iso.org/standard/67929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7206-4:2010,https://www.iso.org/standard/42769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7206-4:2010/Amd 1:2016,https://www.iso.org/standard/69125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7206-6:2013,https://www.iso.org/standard/51186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7206-10:2003,https://www.iso.org/standard/31211.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO/FDIS 7206-10,https://www.iso.org/standard/71145.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7206-12:2016,https://www.iso.org/standard/63710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7206-13:2016,https://www.iso.org/standard/66485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7207-1:2007,https://www.iso.org/standard/39971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7207-2:2011,https://www.iso.org/standard/52683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7207-2:2011/Amd 1:2016,https://www.iso.org/standard/67928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 7207-2:2011/CD Amd 2,https://www.iso.org/standard/74552.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 8319-1:1996,https://www.iso.org/standard/21773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 8319-2:1986,https://www.iso.org/standard/15443.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 8548-1:1989,https://www.iso.org/standard/15796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8548-2:1993,https://www.iso.org/standard/15798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8548-3:1993,https://www.iso.org/standard/15799.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8548-4:1998,https://www.iso.org/standard/22327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8548-5:2003,https://www.iso.org/standard/36652.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8549-1:1989,https://www.iso.org/standard/15800.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8549-2:1989,https://www.iso.org/standard/15801.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8549-3:1989,https://www.iso.org/standard/15802.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8549-4:2014,https://www.iso.org/standard/63536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8551:2003,https://www.iso.org/standard/38506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 8615:1991,https://www.iso.org/standard/15945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 8637-1:2017,https://www.iso.org/standard/69843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/FDIS 8637-2,https://www.iso.org/standard/69844.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/FDIS 8637-3,https://www.iso.org/standard/69845.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 8638:2010,https://www.iso.org/standard/53690.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 8827:1988,https://www.iso.org/standard/16301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO/NP 8827,https://www.iso.org/standard/72355.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 8828:2014,https://www.iso.org/standard/59234.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 9268:1988,https://www.iso.org/standard/16918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 9269:1988,https://www.iso.org/standard/16919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 9583:1993,https://www.iso.org/standard/17349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 9584:1993,https://www.iso.org/standard/17350.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 9585:1990,https://www.iso.org/standard/17351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 9713:2002,https://www.iso.org/standard/21488.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO/WD 9713,https://www.iso.org/standard/75217.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 9714-1:2012,https://www.iso.org/standard/55438.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 10328:2016,https://www.iso.org/standard/70205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 10334:1994,https://www.iso.org/standard/18385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO/PRF TS 10974,https://www.iso.org/standard/65055.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/TS 10974:2012,https://www.iso.org/standard/46462.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 11318:2002,https://www.iso.org/standard/31511.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 11491:2017,https://www.iso.org/standard/50561.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 11658:2012,https://www.iso.org/standard/50659.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 11663:2014,https://www.iso.org/standard/61860.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 12189:2008,https://www.iso.org/standard/39288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 12417-1:2015,https://www.iso.org/standard/57697.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/TR 12417-2:2017,https://www.iso.org/standard/63851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 12891-1:2015,https://www.iso.org/standard/68008.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 12891-2:2014,https://www.iso.org/standard/59181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO/DIS 13019,https://www.iso.org/standard/67855.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 150/SC 7,https://www.iso.org/contents/data/committee/54/61/546151/x/catalogue/ -ISO 13175-3:2012,https://www.iso.org/standard/53447.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13179-1:2014,https://www.iso.org/standard/53448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13356:2015,https://www.iso.org/standard/62373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13404:2007,https://www.iso.org/standard/41480.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 13405-1:2015,https://www.iso.org/standard/42289.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 13405-2:2015,https://www.iso.org/standard/42290.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 13405-3:2015,https://www.iso.org/standard/42291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 13779-2:2008,https://www.iso.org/standard/43827.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 13779-2,https://www.iso.org/standard/64617.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13779-3:2008,https://www.iso.org/standard/40828.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 13779-3,https://www.iso.org/standard/64618.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13779-4:2002,https://www.iso.org/standard/30723.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 13779-4,https://www.iso.org/standard/64619.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13779-6:2015,https://www.iso.org/standard/53445.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13781:2017,https://www.iso.org/standard/64565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13782:1996,https://www.iso.org/standard/22468.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/DIS 13782,https://www.iso.org/standard/72596.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 13958:2014,https://www.iso.org/standard/61861.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 13959:2014,https://www.iso.org/standard/61862.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 13960:2010,https://www.iso.org/standard/53691.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 14117:2012,https://www.iso.org/standard/54472.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/CD 14117,https://www.iso.org/standard/67698.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/CD 14117,https://www.iso.org/standard/73915.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14242-1:2014,https://www.iso.org/standard/63073.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 14242-1:2014/DAmd 1,https://www.iso.org/standard/67925.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 14242-2:2016,https://www.iso.org/standard/70668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 14242-3:2009,https://www.iso.org/standard/44997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 14242-3:2009/DAmd 1,https://www.iso.org/standard/69850.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO/FDIS 14242-4,https://www.iso.org/standard/63835.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 14243-1:2009,https://www.iso.org/standard/44262.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 14243-2:2016,https://www.iso.org/standard/69851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 14243-3:2014,https://www.iso.org/standard/56649.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO/DIS 14243-5,https://www.iso.org/standard/67628.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO/TR 14283:2018,https://www.iso.org/standard/68007.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 14602:2010,https://www.iso.org/standard/52671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 14607,https://www.iso.org/standard/63973.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 14607:2007,https://www.iso.org/standard/38760.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 14630:2012,https://www.iso.org/standard/61749.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 14708-1:2014,https://www.iso.org/standard/52804.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14708-2:2012,https://www.iso.org/standard/51187.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/CD 14708-2,https://www.iso.org/standard/67699.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14708-3:2017,https://www.iso.org/standard/60539.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14708-4:2008,https://www.iso.org/standard/41942.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/NP 14708-4,https://www.iso.org/standard/73537.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14708-5:2010,https://www.iso.org/standard/52779.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/NP 14708-5,https://www.iso.org/standard/69898.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14708-6:2010,https://www.iso.org/standard/52427.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/CD 14708-6,https://www.iso.org/standard/67700.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14708-7:2013,https://www.iso.org/standard/57580.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/DIS 14708-7,https://www.iso.org/standard/67701.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14879-1:2000,https://www.iso.org/standard/25330.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO/CD 14879-1,https://www.iso.org/standard/72356.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 14949:2001,https://www.iso.org/standard/25392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 15032:2000,https://www.iso.org/standard/24632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 15142-1:2003,https://www.iso.org/standard/26461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 15142-2:2003,https://www.iso.org/standard/26462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 15142-3:2003,https://www.iso.org/standard/26463.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 15309:2013,https://www.iso.org/standard/55403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 15374:1998,https://www.iso.org/standard/26838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 15674:2016,https://www.iso.org/standard/67608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 15674:2016/CD Amd 1,https://www.iso.org/standard/74733.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 15675:2016,https://www.iso.org/standard/67609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 15675:2016/CD Amd 1,https://www.iso.org/standard/74734.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 15676:2016,https://www.iso.org/standard/66311.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 16054:2000,https://www.iso.org/standard/30045.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO/DIS 16054,https://www.iso.org/standard/69882.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 16061:2015,https://www.iso.org/standard/62113.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO/CD 16061,https://www.iso.org/standard/74548.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 16087:2013,https://www.iso.org/standard/55662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO/TR 16379:2014,https://www.iso.org/standard/56592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 7,https://www.iso.org/contents/data/committee/54/61/546151/x/catalogue/ -ISO 16402:2008,https://www.iso.org/standard/32212.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 16428:2005,https://www.iso.org/standard/30280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 16429:2004,https://www.iso.org/standard/30288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/TS 16955:2016,https://www.iso.org/standard/69821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO/NP TS 17137,https://www.iso.org/standard/74669.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/TS 17137:2014,https://www.iso.org/standard/59194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 17327-1,https://www.iso.org/standard/59591.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 17853:2011,https://www.iso.org/standard/57230.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 18192-1:2011,https://www.iso.org/standard/57235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 18192-2:2010,https://www.iso.org/standard/45696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 18192-3:2017,https://www.iso.org/standard/67605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 18241:2016,https://www.iso.org/standard/61854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 18241:2016/CD Amd 1,https://www.iso.org/standard/74735.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 18242:2016,https://www.iso.org/standard/61855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/DIS 18531,https://www.iso.org/standard/62806.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO/TR 19024:2016,https://www.iso.org/standard/63757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 19090:2018,https://www.iso.org/standard/63936.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 7,https://www.iso.org/contents/data/committee/54/61/546151/x/catalogue/ -ISO 19213:2017,https://www.iso.org/standard/64021.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 5,https://www.iso.org/contents/data/committee/05/31/53116/x/catalogue/ -ISO 19227,https://www.iso.org/standard/66817.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 19233-1:2017,https://www.iso.org/standard/64072.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 20160:2006,https://www.iso.org/standard/34097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 21063:2017,https://www.iso.org/standard/69812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 21064:2017,https://www.iso.org/standard/69813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 21065:2017,https://www.iso.org/standard/69814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 21534:2007,https://www.iso.org/standard/39024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 21535:2007,https://www.iso.org/standard/40372.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 21535:2007/Amd 1:2016,https://www.iso.org/standard/67926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 21536:2007,https://www.iso.org/standard/40373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 21536:2007/Amd 1:2014,https://www.iso.org/standard/59677.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO/DTR 21900,https://www.iso.org/standard/72119.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 22523:2006,https://www.iso.org/standard/37546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO/DIS 22622,https://www.iso.org/standard/73612.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 150/SC 4,https://www.iso.org/contents/data/committee/05/31/53110/x/catalogue/ -ISO 22675:2016,https://www.iso.org/standard/70203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO/TR 22676:2006,https://www.iso.org/standard/40417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 23317:2014,https://www.iso.org/standard/65054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 1,https://www.iso.org/contents/data/committee/05/30/53080/x/catalogue/ -ISO 23500:2014,https://www.iso.org/standard/61863.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/DIS 23500-1,https://www.iso.org/standard/67610.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/DIS 23500-2,https://www.iso.org/standard/67611.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/DIS 23500-3,https://www.iso.org/standard/67612.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/DIS 23500-4,https://www.iso.org/standard/67613.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/DIS 23500-5,https://www.iso.org/standard/67614.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/DTS 23810,https://www.iso.org/standard/69838.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/TS 23810:2012,https://www.iso.org/standard/59739.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 25539-1:2017,https://www.iso.org/standard/66925.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 25539-2:2012,https://www.iso.org/standard/60604.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/NP 25539-2,https://www.iso.org/standard/69835.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 25539-3:2011,https://www.iso.org/standard/35888.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 26722:2014,https://www.iso.org/standard/61864.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO 27185:2012,https://www.iso.org/standard/52552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 27186:2010,https://www.iso.org/standard/44045.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 29781:2008,https://www.iso.org/standard/45681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 29782:2008,https://www.iso.org/standard/45682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 29783-1:2008,https://www.iso.org/standard/45683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 29783-2:2015,https://www.iso.org/standard/63539.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO 29783-3:2016,https://www.iso.org/standard/66398.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 168,https://www.iso.org/contents/data/committee/05/36/53630/x/catalogue/ -ISO/TR 37137:2014,https://www.iso.org/standard/64887.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/DTR 37137-2,https://www.iso.org/standard/71147.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -IEC/TR 62653:2013,https://www.iso.org/standard/56611.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 150/SC 2,https://www.iso.org/contents/data/committee/05/30/53086/x/catalogue/ -ISO/CD 20047,https://www.iso.org/standard/66896.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 21439:2009,https://www.iso.org/standard/40240.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 8600-1:2015,https://www.iso.org/standard/67550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-2:2015,https://www.iso.org/standard/66090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-3:1997,https://www.iso.org/standard/2607.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-3:1997/Amd 1:2003,https://www.iso.org/standard/37727.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/AWI 8600-3,https://www.iso.org/standard/65018.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-4:2014,https://www.iso.org/standard/62967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-5:2005,https://www.iso.org/standard/34990.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/AWI 8600-5,https://www.iso.org/standard/65019.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-6:2005,https://www.iso.org/standard/36294.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/AWI 8600-6,https://www.iso.org/standard/65020.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-7:2012,https://www.iso.org/standard/53699.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/TR 13154:2017,https://www.iso.org/standard/69347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO/TS 18339:2015,https://www.iso.org/standard/62211.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/TS 18340:2015,https://www.iso.org/standard/62212.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/CD 18615,https://www.iso.org/standard/71491.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 19001:2013,https://www.iso.org/standard/51984.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 19614:2017,https://www.iso.org/standard/65479.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -IEC/FDIS 80601-2-49,https://www.iso.org/standard/67720.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-56:2017,https://www.iso.org/standard/67348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 80601-2-56:2017/DAmd 1,https://www.iso.org/standard/75005.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO/CD 80601-2-56,https://www.iso.org/standard/74861.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 80601-2-59:2017,https://www.iso.org/standard/69346.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -ISO 7998:2005,https://www.iso.org/standard/41203.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8429:1986,https://www.iso.org/standard/15607.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8596:2017,https://www.iso.org/standard/69042.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8598-1:2014,https://www.iso.org/standard/51053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8612:2009,https://www.iso.org/standard/44536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8624:2011,https://www.iso.org/standard/52490.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8624:2011/Amd 1:2015,https://www.iso.org/standard/62690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8624:2011/WD Amd 2,https://www.iso.org/standard/74111.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/NP 8624,https://www.iso.org/standard/75385.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8980-1:2017,https://www.iso.org/standard/65163.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8980-2:2017,https://www.iso.org/standard/65162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8980-3:2013,https://www.iso.org/standard/51052.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8980-4:2006,https://www.iso.org/standard/40122.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 8980-5:2005,https://www.iso.org/standard/38975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 9342-1:2005,https://www.iso.org/standard/36374.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 9342-2:2005,https://www.iso.org/standard/36378.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 9394:2012,https://www.iso.org/standard/57318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 9801:2009,https://www.iso.org/standard/52492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10322-1:2016,https://www.iso.org/standard/62496.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10322-2:2016,https://www.iso.org/standard/62495.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10341:2012,https://www.iso.org/standard/61824.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10342:2010,https://www.iso.org/standard/54964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10343:2014,https://www.iso.org/standard/59705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10685-1:2011,https://www.iso.org/standard/52929.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/WD 10685-1,https://www.iso.org/standard/69511.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10685-2:2016,https://www.iso.org/standard/69045.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10685-3:2012,https://www.iso.org/standard/54619.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/WD 10685-3,https://www.iso.org/standard/69512.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10938:2016,https://www.iso.org/standard/63691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10939:2017,https://www.iso.org/standard/71865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10940:2009,https://www.iso.org/standard/39140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10942:2006,https://www.iso.org/standard/39141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10943:2011,https://www.iso.org/standard/57205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10944:2009,https://www.iso.org/standard/52928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11380:1994,https://www.iso.org/standard/2551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11381:2016,https://www.iso.org/standard/70819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11978:2017,https://www.iso.org/standard/72603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-1:2012,https://www.iso.org/standard/55683.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/DIS 11979-1,https://www.iso.org/standard/72614.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-2:2014,https://www.iso.org/standard/55682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-3:2012,https://www.iso.org/standard/55681.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-4:2008,https://www.iso.org/standard/44163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-4:2008/Amd 1:2012,https://www.iso.org/standard/55580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-5:2006,https://www.iso.org/standard/36410.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/WD 11979-5,https://www.iso.org/standard/72602.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-6:2014,https://www.iso.org/standard/60573.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-7,https://www.iso.org/standard/69038.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-7:2014,https://www.iso.org/standard/55684.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-8:2017,https://www.iso.org/standard/69035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-9:2006,https://www.iso.org/standard/40919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-9:2006/Amd 1:2014,https://www.iso.org/standard/62173.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-10,https://www.iso.org/standard/69036.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-10:2006,https://www.iso.org/standard/41265.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11979-10:2006/Amd 1:2014,https://www.iso.org/standard/62174.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11980:2012,https://www.iso.org/standard/61825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11981:2017,https://www.iso.org/standard/69040.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11986:2017,https://www.iso.org/standard/72294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 11987:2012,https://www.iso.org/standard/51074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 12865:2006,https://www.iso.org/standard/39144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 12866:1999,https://www.iso.org/standard/2583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 12866:1999/Amd 1:2008,https://www.iso.org/standard/46323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 12867:2010,https://www.iso.org/standard/54969.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 12870:2016,https://www.iso.org/standard/68526.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/WD 12870,https://www.iso.org/standard/73566.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 13212:2014,https://www.iso.org/standard/61684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 13666:2012,https://www.iso.org/standard/55784.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/DIS 13666,https://www.iso.org/standard/68450.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 14534:2011,https://www.iso.org/standard/51051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 14729:2001,https://www.iso.org/standard/25382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 14729:2001/Amd 1:2010,https://www.iso.org/standard/51069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 14730:2014,https://www.iso.org/standard/65165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 14889:2013,https://www.iso.org/standard/58078.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 14889:2013/Amd 1:2017,https://www.iso.org/standard/72292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 15004-1:2006,https://www.iso.org/standard/38951.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/CD 15004-1,https://www.iso.org/standard/72616.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 15004-2:2007,https://www.iso.org/standard/38952.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 15253:2000,https://www.iso.org/standard/26286.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/WD 15253,https://www.iso.org/standard/69043.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 15254:2009,https://www.iso.org/standard/52493.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 15752:2010,https://www.iso.org/standard/44164.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 15798:2013,https://www.iso.org/standard/61827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 15798:2013/Amd 1:2017,https://www.iso.org/standard/69037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16034:2002,https://www.iso.org/standard/29886.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16034:2002/Cor 1:2006,https://www.iso.org/standard/44515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16284:2006,https://www.iso.org/standard/40120.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16671:2015,https://www.iso.org/standard/65166.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16671:2015/Amd 1:2017,https://www.iso.org/standard/72615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16672:2015,https://www.iso.org/standard/65164.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/CD 16672,https://www.iso.org/standard/70806.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16971:2015,https://www.iso.org/standard/58076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 18189:2016,https://www.iso.org/standard/61727.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 18259:2014,https://www.iso.org/standard/61901.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 18369-1:2017,https://www.iso.org/standard/66338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 18369-2:2017,https://www.iso.org/standard/66339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 18369-3:2017,https://www.iso.org/standard/66340.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 18369-4:2017,https://www.iso.org/standard/66341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/TR 18476:2017,https://www.iso.org/standard/62547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 19045:2015,https://www.iso.org/standard/63807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/TR 19498:2015,https://www.iso.org/standard/65193.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/PRF 19979,https://www.iso.org/standard/67859.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/TS 19979:2014,https://www.iso.org/standard/66337.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 19980:2012,https://www.iso.org/standard/54972.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/DTR 20772,https://www.iso.org/standard/69041.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/TR 20824:2007,https://www.iso.org/standard/44372.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 21987:2017,https://www.iso.org/standard/65161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 22665:2012,https://www.iso.org/standard/36390.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/TR 22979:2017,https://www.iso.org/standard/61830.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 24157:2008,https://www.iso.org/standard/42041.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/TS 24348:2014,https://www.iso.org/standard/61819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO/TR 28980:2007,https://www.iso.org/standard/41182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -IEC 80601-2-58:2014,https://www.iso.org/standard/62689.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -IEC 80601-2-58:2014/Amd 1:2016,https://www.iso.org/standard/69469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 16061:2015,https://www.iso.org/standard/62113.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO/CD 16061,https://www.iso.org/standard/74548.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 150,https://www.iso.org/contents/data/committee/05/30/53058/x/catalogue/ -ISO 18665:2015,https://www.iso.org/standard/63152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 18666:2015,https://www.iso.org/standard/63153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 18777:2005,https://www.iso.org/standard/38870.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 19054:2005,https://www.iso.org/standard/32078.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 19054:2005/Amd 1:2016,https://www.iso.org/standard/66152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 6,https://www.iso.org/contents/data/committee/05/20/52026/x/catalogue/ -ISO 19611:2017,https://www.iso.org/standard/65463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 20308:2017,https://www.iso.org/standard/67623.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/FDIS 20493,https://www.iso.org/standard/68210.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/FDIS 20495,https://www.iso.org/standard/68212.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 20498-1,https://www.iso.org/standard/68216.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 20498-2:2017,https://www.iso.org/standard/68215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/CD 21366,https://www.iso.org/standard/70791.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 23907:2012,https://www.iso.org/standard/52896.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO/DIS 23907-1,https://www.iso.org/standard/71506.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 23908:2011,https://www.iso.org/standard/50680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 84,https://www.iso.org/contents/data/committee/05/02/50252/x/catalogue/ -ISO 1942:2009,https://www.iso.org/standard/50179.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO/CD 1942,https://www.iso.org/standard/72249.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO 3950:2016,https://www.iso.org/standard/68292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO 12836:2015,https://www.iso.org/standard/68414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 9,https://www.iso.org/contents/data/committee/65/30/653079/x/catalogue/ -ISO 13078-2:2016,https://www.iso.org/standard/66196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/TR 15300:2001,https://www.iso.org/standard/34782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO/TR 15599:2002,https://www.iso.org/standard/27253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO/TR 15599:2002/Cor 1:2003,https://www.iso.org/standard/38892.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO 16059:2007,https://www.iso.org/standard/37693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO/CD 16202-1,https://www.iso.org/standard/73576.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO/CD 16202-2,https://www.iso.org/standard/73577.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO 16443:2014,https://www.iso.org/standard/56786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO 17937:2015,https://www.iso.org/standard/61064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/FDIS 18618,https://www.iso.org/standard/63031.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 106/SC 9,https://www.iso.org/contents/data/committee/65/30/653079/x/catalogue/ -ISO/DTR 18675,https://www.iso.org/standard/63172.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 106/SC 9,https://www.iso.org/contents/data/committee/65/30/653079/x/catalogue/ -ISO 18739:2016,https://www.iso.org/standard/63227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 9,https://www.iso.org/contents/data/committee/65/30/653079/x/catalogue/ -ISO/TR 18845:2017,https://www.iso.org/standard/63558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 9,https://www.iso.org/contents/data/committee/65/30/653079/x/catalogue/ -ISO/CD 20888,https://www.iso.org/standard/69372.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO/CD 20896,https://www.iso.org/standard/69402.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 106/SC 9,https://www.iso.org/contents/data/committee/65/30/653079/x/catalogue/ -ISO 21531:2009,https://www.iso.org/standard/34571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/CD 22457,https://www.iso.org/standard/73258.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 106/SC 3,https://www.iso.org/contents/data/committee/05/12/51286/x/catalogue/ -ISO 3107:2011,https://www.iso.org/standard/45800.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 4049:2009,https://www.iso.org/standard/42898.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO/DIS 4049,https://www.iso.org/standard/67596.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 4823:2015,https://www.iso.org/standard/60586.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/WD 4823,https://www.iso.org/standard/73328.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 6872:2015,https://www.iso.org/standard/59936.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 6872:2015/DAmd 1,https://www.iso.org/standard/74247.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/NP 6872,https://www.iso.org/standard/70085.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 6873:2013,https://www.iso.org/standard/54423.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 6874:2015,https://www.iso.org/standard/67595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 6876:2012,https://www.iso.org/standard/45117.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 6877:2006,https://www.iso.org/standard/37110.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 7405:2008,https://www.iso.org/standard/38059.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106,https://www.iso.org/contents/data/committee/05/12/51218/x/catalogue/ -ISO 7405:2008/Amd 1:2013,https://www.iso.org/standard/59502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106,https://www.iso.org/contents/data/committee/05/12/51218/x/catalogue/ -ISO/DIS 7405,https://www.iso.org/standard/71503.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 106,https://www.iso.org/contents/data/committee/05/12/51218/x/catalogue/ -ISO 7491:2000,https://www.iso.org/standard/26857.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/AWI 7491,https://www.iso.org/standard/75320.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 7551:1996,https://www.iso.org/standard/14335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 9333:2006,https://www.iso.org/standard/40139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 9693-1:2012,https://www.iso.org/standard/54946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 9693-2:2016,https://www.iso.org/standard/56750.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 9917-1:2007,https://www.iso.org/standard/45818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 9917-2:2017,https://www.iso.org/standard/69901.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 10139-1:2005,https://www.iso.org/standard/28274.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 10139-1:2005/Cor 1:2006,https://www.iso.org/standard/43972.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/PRF 10139-1,https://www.iso.org/standard/68195.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 10139-2:2016,https://www.iso.org/standard/70317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 10271:2011,https://www.iso.org/standard/53819.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/AWI 10271,https://www.iso.org/standard/73445.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 10477:2004,https://www.iso.org/standard/33709.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/FDIS 10477,https://www.iso.org/standard/68235.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/TS 11405:2015,https://www.iso.org/standard/62898.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 13017:2012,https://www.iso.org/standard/52350.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 13017:2012/Amd 1:2015,https://www.iso.org/standard/63938.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/DIS 13017,https://www.iso.org/standard/73578.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 13116:2014,https://www.iso.org/standard/63135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 13897,https://www.iso.org/standard/68819.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 13897:2003,https://www.iso.org/standard/35153.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 13897:2003/Cor 1:2003,https://www.iso.org/standard/39810.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 14233:2003,https://www.iso.org/standard/35428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 14356:2003,https://www.iso.org/standard/37269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/TR 14569-1:2007,https://www.iso.org/standard/45741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/TS 14569-2:2001,https://www.iso.org/standard/24300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 15841:2014,https://www.iso.org/standard/62223.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 15854:2005,https://www.iso.org/standard/37635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 15912:2016,https://www.iso.org/standard/63467.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/TS 16506:2017,https://www.iso.org/standard/56898.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 17254:2016,https://www.iso.org/standard/59481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 17304:2013,https://www.iso.org/standard/59772.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO/TS 17988:2014,https://www.iso.org/standard/61230.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 19023,https://www.iso.org/standard/63756.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO/TS 20746:2016,https://www.iso.org/standard/68962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 20749:2017,https://www.iso.org/standard/68977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 20795-1:2013,https://www.iso.org/standard/62277.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 20795-2:2013,https://www.iso.org/standard/62279.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 21563:2013,https://www.iso.org/standard/55314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 21606:2007,https://www.iso.org/standard/40342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 22112:2017,https://www.iso.org/standard/70086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 22674:2016,https://www.iso.org/standard/59620.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 24234:2015,https://www.iso.org/standard/59756.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 27020:2010,https://www.iso.org/standard/43959.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 28319:2010,https://www.iso.org/standard/44645.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/FDIS 28319,https://www.iso.org/standard/70629.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO/TR 28642:2016,https://www.iso.org/standard/69046.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 29022:2013,https://www.iso.org/standard/45285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -ISO 10451:2010,https://www.iso.org/standard/51071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO 11953:2010,https://www.iso.org/standard/51062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO/TS 13498:2011,https://www.iso.org/standard/53823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO 14801:2016,https://www.iso.org/standard/61997.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO/CD 14801,https://www.iso.org/standard/74590.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO 16498:2013,https://www.iso.org/standard/56888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO/TR 18130:2016,https://www.iso.org/standard/61530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO 19429:2015,https://www.iso.org/standard/64886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO 22794:2007,https://www.iso.org/standard/40138.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO/AWI 22794,https://www.iso.org/standard/74589.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO 22803:2004,https://www.iso.org/standard/35132.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO/TS 22911:2016,https://www.iso.org/standard/61084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 8,https://www.iso.org/contents/data/committee/05/13/51346/x/catalogue/ -ISO 1797:2017,https://www.iso.org/standard/63866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 2157:2016,https://www.iso.org/standard/66428.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3630-1:2008,https://www.iso.org/standard/37702.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/DIS 3630-1,https://www.iso.org/standard/75260.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3630-2:2013,https://www.iso.org/standard/51957.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3630-3:2015,https://www.iso.org/standard/59564.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3630-4:2009,https://www.iso.org/standard/43204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3630-5:2011,https://www.iso.org/standard/51954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/CD 3630-6,https://www.iso.org/standard/66967.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3823-1:1997,https://www.iso.org/standard/19990.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3823-2:2003,https://www.iso.org/standard/30891.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3823-2:2003/Amd 1:2008,https://www.iso.org/standard/44002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3964:2016,https://www.iso.org/standard/63930.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 3964:2016/DAmd 1,https://www.iso.org/standard/73624.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 4073:2009,https://www.iso.org/standard/45948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 6875:2011,https://www.iso.org/standard/52117.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 7488:1991,https://www.iso.org/standard/14239.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/FDIS 7488,https://www.iso.org/standard/68818.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 7492,https://www.iso.org/standard/66689.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7492:1997,https://www.iso.org/standard/14244.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7493:2006,https://www.iso.org/standard/39815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 7494-1:2011,https://www.iso.org/standard/50324.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/FDIS 7494-1,https://www.iso.org/standard/69100.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 7494-2:2015,https://www.iso.org/standard/59875.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/NP 7494-2,https://www.iso.org/standard/74497.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 7711-1:1997,https://www.iso.org/standard/21259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7711-1:1997/Amd 1:2009,https://www.iso.org/standard/44003.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7711-2:2011,https://www.iso.org/standard/51956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7711-3:2004,https://www.iso.org/standard/37701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7786:2001,https://www.iso.org/standard/26728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7787-1:2016,https://www.iso.org/standard/66427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7787-2:2000,https://www.iso.org/standard/31247.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/CD 7787-2,https://www.iso.org/standard/73459.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7787-3:2017,https://www.iso.org/standard/68488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7787-4:2002,https://www.iso.org/standard/33946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 7885:2010,https://www.iso.org/standard/45606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 8282:1994,https://www.iso.org/standard/15398.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/NP 8282,https://www.iso.org/standard/74498.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 8325:2004,https://www.iso.org/standard/38206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 9168:2009,https://www.iso.org/standard/46572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 9173-1:2016,https://www.iso.org/standard/65160.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 9173-2:2010,https://www.iso.org/standard/50033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 9173-3:2014,https://www.iso.org/standard/57402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 9680:2014,https://www.iso.org/standard/57944.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/NP 9680,https://www.iso.org/standard/74496.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 9687:2015,https://www.iso.org/standard/59876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 9687:2015/FDAmd 1,https://www.iso.org/standard/69317.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 9873:2017,https://www.iso.org/standard/66109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 9997:1999,https://www.iso.org/standard/20416.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 10323:2013,https://www.iso.org/standard/55278.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 10637:1999,https://www.iso.org/standard/18731.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/FDIS 10637,https://www.iso.org/standard/68461.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 10650:2015,https://www.iso.org/standard/63424.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 10650:2015/CD Amd 1,https://www.iso.org/standard/69442.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/DIS 10650,https://www.iso.org/standard/73302.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 11040-1:2015,https://www.iso.org/standard/67064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-2:2011,https://www.iso.org/standard/53947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11040-3:2012,https://www.iso.org/standard/53948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11143:2008,https://www.iso.org/standard/42288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 11499:2014,https://www.iso.org/standard/61170.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13078:2013,https://www.iso.org/standard/52659.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 13295:2007,https://www.iso.org/standard/40369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13397-1:1995,https://www.iso.org/standard/21885.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13397-2:2005,https://www.iso.org/standard/34572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13397-2:2005/Amd 1:2012,https://www.iso.org/standard/57910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13397-3:1996,https://www.iso.org/standard/21887.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13397-4:1997,https://www.iso.org/standard/23078.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13397-5:2015,https://www.iso.org/standard/60874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13402:1995,https://www.iso.org/standard/21241.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 170,https://www.iso.org/contents/data/committee/05/36/53648/x/catalogue/ -ISO 15087-1:1999,https://www.iso.org/standard/25927.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 15087-2:2000,https://www.iso.org/standard/25928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 15087-3:2000,https://www.iso.org/standard/25929.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 15087-4:2000,https://www.iso.org/standard/25930.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 15087-5:2000,https://www.iso.org/standard/25931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 15087-6:2000,https://www.iso.org/standard/25932.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/CD 15098,https://www.iso.org/standard/73463.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 15098-1:1999,https://www.iso.org/standard/25937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 15098-2:2000,https://www.iso.org/standard/26422.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 15098-3:2000,https://www.iso.org/standard/26423.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 16635-1:2013,https://www.iso.org/standard/57334.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 16635-2:2014,https://www.iso.org/standard/57335.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 16954:2015,https://www.iso.org/standard/58009.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 17509:2016,https://www.iso.org/standard/59926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 18556:2016,https://www.iso.org/standard/62877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 19715:2017,https://www.iso.org/standard/66108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/DIS 20569,https://www.iso.org/standard/68428.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/DIS 20570,https://www.iso.org/standard/68429.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/FDIS 20608,https://www.iso.org/standard/68527.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 21530:2004,https://www.iso.org/standard/34570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 21533:2018,https://www.iso.org/standard/70318.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 21671:2006,https://www.iso.org/standard/40370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 21671:2006/Amd 1:2011,https://www.iso.org/standard/51948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/CD 21850-1,https://www.iso.org/standard/71964.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/CD 22052,https://www.iso.org/standard/72421.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/CD 22570,https://www.iso.org/standard/73461.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO/TS 22595-1:2006,https://www.iso.org/standard/42080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/TS 22595-2:2008,https://www.iso.org/standard/42081.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO/DIS 27020,https://www.iso.org/standard/72549.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 106/SC 1,https://www.iso.org/contents/data/committee/05/12/51236/x/catalogue/ -IEC 80601-2-60:2012,https://www.iso.org/standard/51401.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -IEC/DIS 80601-2-60,https://www.iso.org/standard/70562.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 106/SC 6,https://www.iso.org/contents/data/committee/05/13/51320/x/catalogue/ -ISO 6360-1:2004,https://www.iso.org/standard/37301.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 6360-1:2004/Cor 1:2007,https://www.iso.org/standard/50106.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 6360-2:2004,https://www.iso.org/standard/37302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 6360-2:2004/Amd 1:2011,https://www.iso.org/standard/51949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 6360-3:2005,https://www.iso.org/standard/37303.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 6360-4:2004,https://www.iso.org/standard/37304.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 6360-5:2007,https://www.iso.org/standard/37305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 6360-6:2004,https://www.iso.org/standard/37306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 6360-7:2006,https://www.iso.org/standard/42401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 13504:2012,https://www.iso.org/standard/53939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 14457:2017,https://www.iso.org/standard/66429.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 18397:2016,https://www.iso.org/standard/62362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 19490:2017,https://www.iso.org/standard/65138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 21672-1:2012,https://www.iso.org/standard/53649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 21672-2:2012,https://www.iso.org/standard/53650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 106/SC 4,https://www.iso.org/contents/data/committee/05/12/51296/x/catalogue/ -ISO 11135:2014,https://www.iso.org/standard/56137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11135:2014/DAmd 1,https://www.iso.org/standard/70821.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11137-1:2006,https://www.iso.org/standard/33952.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11137-1:2006/Amd 1:2013,https://www.iso.org/standard/60165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11137-1:2006/DAmd 2,https://www.iso.org/standard/72106.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11137-2:2013,https://www.iso.org/standard/62442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11137-3:2017,https://www.iso.org/standard/63841.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11138-1:2017,https://www.iso.org/standard/66442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11138-2:2017,https://www.iso.org/standard/66445.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11138-3:2017,https://www.iso.org/standard/66446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11138-4:2017,https://www.iso.org/standard/66447.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11138-5:2017,https://www.iso.org/standard/66448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11138-5:2017/NP Amd 1,https://www.iso.org/standard/73392.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/DIS 11138-7,https://www.iso.org/standard/74113.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/CD 11138-8,https://www.iso.org/standard/62337.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/DIS 11139,https://www.iso.org/standard/66262.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/TS 11139:2006,https://www.iso.org/standard/40168.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11140-1:2014,https://www.iso.org/standard/55080.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11140-3:2007,https://www.iso.org/standard/40140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11140-3:2007/Cor 1:2007,https://www.iso.org/standard/50588.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11140-4:2007,https://www.iso.org/standard/42129.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11140-5:2007,https://www.iso.org/standard/40141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/CD 11140-6,https://www.iso.org/standard/66625.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11737-1:2018,https://www.iso.org/standard/66451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11737-2:2009,https://www.iso.org/standard/44955.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/CD 11737-2,https://www.iso.org/standard/70801.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/TS 13004:2013,https://www.iso.org/standard/52320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-1:2008,https://www.iso.org/standard/37842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-1:2008/Amd 1:2013,https://www.iso.org/standard/59475.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-2:2018,https://www.iso.org/standard/66452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-3:2006,https://www.iso.org/standard/39936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-4:2005,https://www.iso.org/standard/39781.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-5:2006,https://www.iso.org/standard/35290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-6:2005,https://www.iso.org/standard/39782.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-6:2005/Amd 1:2013,https://www.iso.org/standard/59476.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/NP 13408-6,https://www.iso.org/standard/72836.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 13408-7:2012,https://www.iso.org/standard/30061.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 14160:2011,https://www.iso.org/standard/44956.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/NP 14160,https://www.iso.org/standard/73159.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 14161:2009,https://www.iso.org/standard/43350.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/CD 14161,https://www.iso.org/standard/66449.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 14937:2009,https://www.iso.org/standard/44954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 15882:2008,https://www.iso.org/standard/43293.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 17664:2017,https://www.iso.org/standard/62952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 17665-1:2006,https://www.iso.org/standard/43187.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/NP 17665-1,https://www.iso.org/standard/70864.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/TS 17665-2:2009,https://www.iso.org/standard/43188.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/TS 17665-3:2013,https://www.iso.org/standard/54997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 18362:2016,https://www.iso.org/standard/62244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 18472:2006,https://www.iso.org/standard/35047.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/FDIS 18472,https://www.iso.org/standard/66450.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/DTS 19572,https://www.iso.org/standard/65304.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/TS 19930:2017,https://www.iso.org/standard/66566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/CD 20520,https://www.iso.org/standard/68240.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/PRF TR 20520,https://www.iso.org/standard/75169.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 20857:2010,https://www.iso.org/standard/39778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 25424:2009,https://www.iso.org/standard/51772.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/DIS 25424,https://www.iso.org/standard/70822.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 15883-1:2006,https://www.iso.org/standard/41076.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 15883-1:2006/Amd 1:2014,https://www.iso.org/standard/59843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/NP 15883-1,https://www.iso.org/standard/70844.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 15883-2:2006,https://www.iso.org/standard/41077.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 15883-3:2006,https://www.iso.org/standard/41078.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 15883-4:2008,https://www.iso.org/standard/42060.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/FDIS 15883-4,https://www.iso.org/standard/63696.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/CD 15883-5,https://www.iso.org/standard/68297.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/TS 15883-5:2005,https://www.iso.org/standard/41175.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 15883-6:2011,https://www.iso.org/standard/46487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 15883-7:2016,https://www.iso.org/standard/56650.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11607-1:2006,https://www.iso.org/standard/38712.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11607-1:2006/Amd 1:2014,https://www.iso.org/standard/59366.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/DIS 11607-1,https://www.iso.org/standard/70799.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11607-2:2006,https://www.iso.org/standard/38713.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO 11607-2:2006/Amd 1:2014,https://www.iso.org/standard/59368.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/DIS 11607-2,https://www.iso.org/standard/70800.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/TS 16775:2014,https://www.iso.org/standard/52517.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 198,https://www.iso.org/contents/data/committee/05/45/54576/x/catalogue/ -ISO/CD 21881,https://www.iso.org/standard/72035.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/CD 21882,https://www.iso.org/standard/72036.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 7713:1985,https://www.iso.org/standard/14541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 12771:1997,https://www.iso.org/standard/1699.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 12772:1997,https://www.iso.org/standard/1816.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 13130:2011,https://www.iso.org/standard/53051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 13132:2011,https://www.iso.org/standard/53054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 15189:2012,https://www.iso.org/standard/56115.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 15190:2003,https://www.iso.org/standard/38477.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/NP 15190,https://www.iso.org/standard/72191.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/TS 17518:2015,https://www.iso.org/standard/59944.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/TS 17822-1:2014,https://www.iso.org/standard/60601.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/TS 20658:2017,https://www.iso.org/standard/68763.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/CD 22367,https://www.iso.org/standard/71254.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/TS 22367:2008,https://www.iso.org/standard/40918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/TS 22367:2008/Cor 1:2009,https://www.iso.org/standard/53345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/TR 22869:2005,https://www.iso.org/standard/35172.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 22870:2016,https://www.iso.org/standard/71119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 24998:2008,https://www.iso.org/standard/42736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO/CD 35001,https://www.iso.org/standard/71293.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 13079:2011,https://www.iso.org/standard/52663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 15193:2009,https://www.iso.org/standard/42021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 15194:2009,https://www.iso.org/standard/42022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 15197:2013,https://www.iso.org/standard/54976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 15198:2004,https://www.iso.org/standard/39751.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 16256:2012,https://www.iso.org/standard/56027.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 17511:2003,https://www.iso.org/standard/30716.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/NP 17511,https://www.iso.org/standard/69984.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 18113-1:2009,https://www.iso.org/standard/40984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 18113-2:2009,https://www.iso.org/standard/40985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 18113-3:2009,https://www.iso.org/standard/40986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 18113-4:2009,https://www.iso.org/standard/40987.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 18113-5:2009,https://www.iso.org/standard/40988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 18153:2003,https://www.iso.org/standard/31718.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 19001:2013,https://www.iso.org/standard/51984.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20166-1,https://www.iso.org/standard/67179.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20166-2,https://www.iso.org/standard/69802.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20166-3,https://www.iso.org/standard/69803.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20184-1,https://www.iso.org/standard/67215.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20184-2,https://www.iso.org/standard/69801.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20186-1,https://www.iso.org/standard/67217.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20186-2,https://www.iso.org/standard/69799.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20186-3,https://www.iso.org/standard/69800.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DIS 20916,https://www.iso.org/standard/69455.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/CD 21474,https://www.iso.org/standard/70960.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 23640:2011,https://www.iso.org/standard/54868.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 29701:2010,https://www.iso.org/standard/45640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO 10993-1:2009,https://www.iso.org/standard/44908.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-1:2009/Cor 1:2010,https://www.iso.org/standard/56669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/FDIS 10993-1,https://www.iso.org/standard/68936.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-2:2006,https://www.iso.org/standard/36405.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-3:2014,https://www.iso.org/standard/55614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-4:2017,https://www.iso.org/standard/63448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-5:2009,https://www.iso.org/standard/36406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-6:2016,https://www.iso.org/standard/61089.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-7:2008,https://www.iso.org/standard/34213.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-7:2008/CD Amd 1,https://www.iso.org/standard/72766.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-7:2008/Cor 1:2009,https://www.iso.org/standard/55064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-9:2009,https://www.iso.org/standard/44049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/CD 10993-9,https://www.iso.org/standard/64580.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-10:2010,https://www.iso.org/standard/40884.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-11:2017,https://www.iso.org/standard/68426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-12:2012,https://www.iso.org/standard/53468.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-13:2010,https://www.iso.org/standard/44050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-14:2001,https://www.iso.org/standard/22693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-15:2000,https://www.iso.org/standard/22694.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/CD 10993-15,https://www.iso.org/standard/68937.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-16:2017,https://www.iso.org/standard/64582.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-17:2002,https://www.iso.org/standard/23955.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 10993-18:2005,https://www.iso.org/standard/41106.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/CD 10993-18,https://www.iso.org/standard/64750.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/DTR 10993-19,https://www.iso.org/standard/75138.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/TS 10993-19:2006,https://www.iso.org/standard/35978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/NP TS 10993-20,https://www.iso.org/standard/68938.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/TS 10993-20:2006,https://www.iso.org/standard/35979.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/TR 10993-22:2017,https://www.iso.org/standard/65918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/TR 10993-33:2015,https://www.iso.org/standard/65052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 13022:2012,https://www.iso.org/standard/52368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194/SC 1,https://www.iso.org/contents/data/committee/36/33/363330/x/catalogue/ -ISO 14155:2011,https://www.iso.org/standard/45557.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 14155:2011/Cor 1:2011,https://www.iso.org/standard/59992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/CD 14155,https://www.iso.org/standard/71690.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/TR 15499:2016,https://www.iso.org/standard/69217.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/TS 16782:2016,https://www.iso.org/standard/72141.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 17593:2007,https://www.iso.org/standard/36872.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 20776-1:2006,https://www.iso.org/standard/41630.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/CD 20776-1,https://www.iso.org/standard/70464.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 20776-2:2007,https://www.iso.org/standard/41631.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/DTR 21582,https://www.iso.org/standard/71150.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO/DTS 21726,https://www.iso.org/standard/71514.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 194,https://www.iso.org/contents/data/committee/05/45/54508/x/catalogue/ -ISO 22442-1:2015,https://www.iso.org/standard/68553.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194/SC 1,https://www.iso.org/contents/data/committee/36/33/363330/x/catalogue/ -ISO/NP 22442-1,https://www.iso.org/standard/74280.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 194/SC 1,https://www.iso.org/contents/data/committee/36/33/363330/x/catalogue/ -ISO 22442-2:2015,https://www.iso.org/standard/68554.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 194/SC 1,https://www.iso.org/contents/data/committee/36/33/363330/x/catalogue/ -ISO/NP 22442-2,https://www.iso.org/standard/74281.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 194/SC 1,https://www.iso.org/contents/data/committee/36/33/363330/x/catalogue/ -ISO 22442-3:2007,https://www.iso.org/standard/39351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194/SC 1,https://www.iso.org/contents/data/committee/36/33/363330/x/catalogue/ -ISO/TR 22442-4:2010,https://www.iso.org/standard/51985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 194/SC 1,https://www.iso.org/contents/data/committee/36/33/363330/x/catalogue/ -ISO 7405:2008,https://www.iso.org/standard/38059.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106,https://www.iso.org/contents/data/committee/05/12/51218/x/catalogue/ -ISO 7405:2008/Amd 1:2013,https://www.iso.org/standard/59502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106,https://www.iso.org/contents/data/committee/05/12/51218/x/catalogue/ -ISO/DIS 7405,https://www.iso.org/standard/71503.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 106,https://www.iso.org/contents/data/committee/05/12/51218/x/catalogue/ -ISO 15195:2003,https://www.iso.org/standard/38363.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO/CD 15195,https://www.iso.org/standard/69824.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 212,https://www.iso.org/contents/data/committee/05/49/54916/x/catalogue/ -ISO 18664:2015,https://www.iso.org/standard/63150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 18668-1:2016,https://www.iso.org/standard/63155.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 18668-2:2017,https://www.iso.org/standard/64958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 18668-3:2017,https://www.iso.org/standard/68354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 18668-4:2017,https://www.iso.org/standard/68355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 19610:2017,https://www.iso.org/standard/65462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/FDIS 19617,https://www.iso.org/standard/65504.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 20333:2017,https://www.iso.org/standard/67712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/FDIS 20334,https://www.iso.org/standard/67713.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 20409:2017,https://www.iso.org/standard/67921.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 20759:2017,https://www.iso.org/standard/68986.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 21314,https://www.iso.org/standard/70518.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 21315,https://www.iso.org/standard/70519.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 21316,https://www.iso.org/standard/70520.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 21370,https://www.iso.org/standard/70792.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 21371:2018,https://www.iso.org/standard/70793.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/CD 22212,https://www.iso.org/standard/72883.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/PRF TR 23021,https://www.iso.org/standard/74339.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/PRF TR 23022,https://www.iso.org/standard/74340.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 11418-1:2016,https://www.iso.org/standard/67702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-2:2016,https://www.iso.org/standard/66273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-2:2016/Amd 1:2017,https://www.iso.org/standard/73362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-3:2016,https://www.iso.org/standard/66275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-3:2016/Amd 1:2017,https://www.iso.org/standard/73361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-4:2005,https://www.iso.org/standard/38691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-5:2015,https://www.iso.org/standard/66669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 11418-7:2016,https://www.iso.org/standard/66688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO/DIS 21976,https://www.iso.org/standard/72331.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 10282:2014,https://www.iso.org/standard/63706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 11193-1:2008,https://www.iso.org/standard/50766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 11193-1:2008/Amd 1:2012,https://www.iso.org/standard/55603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/WD 11193-1,https://www.iso.org/standard/75379.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 11193-2:2006,https://www.iso.org/standard/37162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 21171:2006,https://www.iso.org/standard/36356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 22609:2004,https://www.iso.org/standard/35055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 22882:2016,https://www.iso.org/standard/68238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -IEC/CD 60601-2-31,https://www.iso.org/standard/72452.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -IEC/DIS 60601-2-26,https://www.iso.org/standard/67716.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 121/SC 3,https://www.iso.org/contents/data/committee/05/20/52012/x/catalogue/ -IEC 60601-2-52:2009,https://www.iso.org/standard/36067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -IEC 60601-2-52:2009/Amd 1:2015,https://www.iso.org/standard/68756.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -IEC 60601-2-52:2009/Cor 1:2010,https://www.iso.org/standard/57400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -IEC/TR 60601-4-1:2017,https://www.iso.org/standard/70755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -IEC 80601-2-35:2009,https://www.iso.org/standard/51975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -IEC 80601-2-35:2009/Amd 1:2016,https://www.iso.org/standard/70827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -IEC 80601-2-35:2009/Cor 1:2015,https://www.iso.org/standard/68614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -IEC 80601-2-35:2009/Cor 2:2015,https://www.iso.org/standard/68615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO/IEC Guide 71:2014,https://www.iso.org/standard/57385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 9999:2016,https://www.iso.org/standard/60547.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173/SC 2,https://www.iso.org/contents/data/committee/05/38/53812/x/catalogue/ -ISO/NP 9999,https://www.iso.org/standard/72464.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 173/SC 2,https://www.iso.org/contents/data/committee/05/38/53812/x/catalogue/ -ISO 16201:2006,https://www.iso.org/standard/32156.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 17069:2014,https://www.iso.org/standard/58090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO 17966:2016,https://www.iso.org/standard/61146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO/CD 20342-1,https://www.iso.org/standard/67750.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO/CD 21801,https://www.iso.org/standard/71711.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO/DIS 21802,https://www.iso.org/standard/71712.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO/TR 22411:2008,https://www.iso.org/standard/40933.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159,https://www.iso.org/contents/data/committee/05/33/53348/x/catalogue/ -ISO 7176-1:2014,https://www.iso.org/standard/56817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-2:2017,https://www.iso.org/standard/57753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-3:2012,https://www.iso.org/standard/53816.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-4:2008,https://www.iso.org/standard/40991.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-5:2008,https://www.iso.org/standard/46429.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-6:2001,https://www.iso.org/standard/23015.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/DIS 7176-6,https://www.iso.org/standard/70589.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-7:1998,https://www.iso.org/standard/13783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-8:2014,https://www.iso.org/standard/64902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-9:2009,https://www.iso.org/standard/50102.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-10:2008,https://www.iso.org/standard/45984.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-11:2012,https://www.iso.org/standard/53056.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-13:1989,https://www.iso.org/standard/13789.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-14:2008,https://www.iso.org/standard/39741.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/WD 7176-14,https://www.iso.org/standard/72408.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-15:1996,https://www.iso.org/standard/13791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-16:2012,https://www.iso.org/standard/40992.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-19:2008,https://www.iso.org/standard/40993.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-19:2008/Amd 1:2015,https://www.iso.org/standard/57023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/CD 7176-19,https://www.iso.org/standard/71919.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-21:2009,https://www.iso.org/standard/51048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-22:2014,https://www.iso.org/standard/60290.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-25:2013,https://www.iso.org/standard/54863.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-26:2007,https://www.iso.org/standard/44224.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 7176-28:2012,https://www.iso.org/standard/45653.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/DIS 7176-30,https://www.iso.org/standard/66524.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 9386-1:2000,https://www.iso.org/standard/33822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 9386-2:2000,https://www.iso.org/standard/33823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 10535:2006,https://www.iso.org/standard/32155.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO/AWI 10535,https://www.iso.org/standard/72711.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 10542-1:2012,https://www.iso.org/standard/60372.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 10542-1:2012/Cor 1:2013,https://www.iso.org/standard/64122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/CD 10542-1,https://www.iso.org/standard/71698.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 10865-1:2012,https://www.iso.org/standard/46214.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 10865-2:2015,https://www.iso.org/standard/46215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 11199-1:1999,https://www.iso.org/standard/19198.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 11199-2:2005,https://www.iso.org/standard/36053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 11199-3:2005,https://www.iso.org/standard/41191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 11334-1:2007,https://www.iso.org/standard/36054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 11334-4:1999,https://www.iso.org/standard/24915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO/TR 13570-1:2005,https://www.iso.org/standard/41686.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/TR 13570-2:2014,https://www.iso.org/standard/41687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 16840-1:2006,https://www.iso.org/standard/42064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 16840-2:2018,https://www.iso.org/standard/66972.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 16840-3:2014,https://www.iso.org/standard/61349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 16840-4:2009,https://www.iso.org/standard/40995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 16840-6:2015,https://www.iso.org/standard/50420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/TR 16840-9:2015,https://www.iso.org/standard/65198.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 16840-10:2014,https://www.iso.org/standard/57578.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/TS 16840-11:2014,https://www.iso.org/standard/63041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/TS 16840-12:2015,https://www.iso.org/standard/65506.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/DIS 19894,https://www.iso.org/standard/66523.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 24415-1:2009,https://www.iso.org/standard/42202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 24415-2:2011,https://www.iso.org/standard/42273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 19029:2016,https://www.iso.org/standard/63762.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO/CD 21388,https://www.iso.org/standard/74602.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO/CD 21388-1,https://www.iso.org/standard/70850.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 23600:2007,https://www.iso.org/standard/41683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 24500:2010,https://www.iso.org/standard/46170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/AWI 24500-1,https://www.iso.org/standard/72306.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/AWI 24500-2,https://www.iso.org/standard/72307.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 24501:2010,https://www.iso.org/standard/46171.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 8669-1:1988,https://www.iso.org/standard/16064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 8669-2:1996,https://www.iso.org/standard/2951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 8670-1:1988,https://www.iso.org/standard/16068.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 8670-2:1996,https://www.iso.org/standard/20228.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 9949-1:1993,https://www.iso.org/standard/17845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 9949-2:1993,https://www.iso.org/standard/17846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 9949-3:1993,https://www.iso.org/standard/17847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 11948-1:1996,https://www.iso.org/standard/20546.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 12505-1:2014,https://www.iso.org/standard/60178.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 12505-2:2016,https://www.iso.org/standard/68415.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 15621:2017,https://www.iso.org/standard/65740.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 16021:2000,https://www.iso.org/standard/29832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 16391:2002,https://www.iso.org/standard/30270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-1:2001,https://www.iso.org/standard/34032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-2:2001,https://www.iso.org/standard/34033.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-3:2001,https://www.iso.org/standard/34034.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-4:2001,https://www.iso.org/standard/34035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-5:2001,https://www.iso.org/standard/34036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-6:2001,https://www.iso.org/standard/34037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-7:2001,https://www.iso.org/standard/34038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-8:2001,https://www.iso.org/standard/34039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-9:2001,https://www.iso.org/standard/34040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-9:2001/Cor 1:2002,https://www.iso.org/standard/37385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-10:2001,https://www.iso.org/standard/34041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17190-11:2001,https://www.iso.org/standard/34042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO 17191:2004,https://www.iso.org/standard/34043.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO/CD 19331,https://www.iso.org/standard/64642.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 173/SC 3,https://www.iso.org/contents/data/committee/05/38/53832/x/catalogue/ -ISO/TR 11548-1:2001,https://www.iso.org/standard/35270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO/TR 11548-2:2001,https://www.iso.org/standard/35271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 11683:1997,https://www.iso.org/standard/26907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17049:2013,https://www.iso.org/standard/58086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO 19028:2016,https://www.iso.org/standard/63761.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO/DIS 21056,https://www.iso.org/standard/69767.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 23599:2012,https://www.iso.org/standard/55867.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 23600:2007,https://www.iso.org/standard/41683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO 24502:2010,https://www.iso.org/standard/46172.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 24503:2011,https://www.iso.org/standard/46173.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/IEC 10779:2008,https://www.iso.org/standard/46086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 11156:2011,https://www.iso.org/standard/50175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/IEC 13066-1:2011,https://www.iso.org/standard/53770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 13066-2:2016,https://www.iso.org/standard/65936.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 13066-3:2012,https://www.iso.org/standard/53998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 13066-4:2015,https://www.iso.org/standard/54001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 13066-6:2014,https://www.iso.org/standard/54004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO 17966:2016,https://www.iso.org/standard/61146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173,https://www.iso.org/contents/data/committee/05/37/53782/x/catalogue/ -ISO/IEC 29136:2012,https://www.iso.org/standard/45159.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC DIS 29138-1,https://www.iso.org/standard/71953.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 29138-1:2009,https://www.iso.org/standard/45161.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29138-2:2009,https://www.iso.org/standard/51341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29138-3:2009,https://www.iso.org/standard/51342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 4074:2015,https://www.iso.org/standard/67615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 4074:2015/CD Amd 1,https://www.iso.org/standard/74722.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 7439:2015,https://www.iso.org/standard/66174.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 8009:2014,https://www.iso.org/standard/66173.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 11249,https://www.iso.org/standard/64612.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 16037:2002,https://www.iso.org/standard/29905.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 16037:2002/Amd 1:2011,https://www.iso.org/standard/52725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 16038:2017,https://www.iso.org/standard/68333.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO/DIS 19671,https://www.iso.org/standard/65979.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO/DTR 19969,https://www.iso.org/standard/66773.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 23409:2011,https://www.iso.org/standard/45589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 25841:2017,https://www.iso.org/standard/66676.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 29941:2010,https://www.iso.org/standard/45747.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO/NP 29941,https://www.iso.org/standard/74721.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 29942:2011,https://www.iso.org/standard/45748.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 29943-1:2017,https://www.iso.org/standard/62497.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -ISO 29943-2:2017,https://www.iso.org/standard/62498.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 157,https://www.iso.org/contents/data/committee/05/32/53290/x/catalogue/ -IWA 9:2011,https://www.iso.org/standard/55328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO Guide 64:2008,https://www.iso.org/standard/41352.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO Guide 82:2014,https://www.iso.org/standard/57775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/TS 13811:2015,https://www.iso.org/standard/54307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 14055-1:2017,https://www.iso.org/standard/64646.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207,https://www.iso.org/contents/data/committee/05/48/54808/x/catalogue/ -ISO 17422:2002,https://www.iso.org/standard/33053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 17422,https://www.iso.org/standard/70028.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 18601:2013,https://www.iso.org/standard/55869.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO 18602:2013,https://www.iso.org/standard/55870.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO/CD 19991,https://www.iso.org/standard/66813.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 207,https://www.iso.org/contents/data/committee/05/48/54808/x/catalogue/ -ISO 13315-1:2012,https://www.iso.org/standard/53687.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 13315-2:2014,https://www.iso.org/standard/57645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 13315-4:2017,https://www.iso.org/standard/66540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO/CD 13315-6,https://www.iso.org/standard/67994.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO/DIS 13315-8.2,https://www.iso.org/standard/66541.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 14001:2015,https://www.iso.org/standard/60857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 14004:2016,https://www.iso.org/standard/60856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 14005:2010,https://www.iso.org/standard/43208.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO/DIS 14005,https://www.iso.org/standard/72333.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 14006:2011,https://www.iso.org/standard/43241.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO/CD 14006,https://www.iso.org/standard/72644.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 14015:2001,https://www.iso.org/standard/23164.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 207/SC 2,https://www.iso.org/contents/data/committee/05/48/54824/x/catalogue/ -ISO/CD 14016,https://www.iso.org/standard/43246.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 207/SC 2,https://www.iso.org/contents/data/committee/05/48/54824/x/catalogue/ -ISO 14031:2013,https://www.iso.org/standard/52297.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 4,https://www.iso.org/contents/data/committee/05/48/54846/x/catalogue/ -ISO/CD 14033,https://www.iso.org/standard/71237.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 207/SC 4,https://www.iso.org/contents/data/committee/05/48/54846/x/catalogue/ -ISO/TS 14033:2012,https://www.iso.org/standard/43268.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 4,https://www.iso.org/contents/data/committee/05/48/54846/x/catalogue/ -ISO 14034:2016,https://www.iso.org/standard/43256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 4,https://www.iso.org/contents/data/committee/05/48/54846/x/catalogue/ -ISO 14040:2006,https://www.iso.org/standard/37456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14044:2006,https://www.iso.org/standard/38498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14044:2006/Amd 1:2017,https://www.iso.org/standard/72357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14045:2012,https://www.iso.org/standard/43262.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14046:2014,https://www.iso.org/standard/43263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TR 14047:2012,https://www.iso.org/standard/57109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TS 14048:2002,https://www.iso.org/standard/29872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TR 14049:2012,https://www.iso.org/standard/57110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14050:2009,https://www.iso.org/standard/41492.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207,https://www.iso.org/contents/data/committee/05/48/54808/x/catalogue/ -ISO 14051:2011,https://www.iso.org/standard/50986.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 207,https://www.iso.org/contents/data/committee/05/48/54808/x/catalogue/ -ISO 14052:2017,https://www.iso.org/standard/54811.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207,https://www.iso.org/contents/data/committee/05/48/54808/x/catalogue/ -ISO/TR 14062:2002,https://www.iso.org/standard/33020.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207,https://www.iso.org/contents/data/committee/05/48/54808/x/catalogue/ -ISO 14063:2006,https://www.iso.org/standard/34676.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 4,https://www.iso.org/contents/data/committee/05/48/54846/x/catalogue/ -ISO/CD 14063,https://www.iso.org/standard/72888.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 207/SC 4,https://www.iso.org/contents/data/committee/05/48/54846/x/catalogue/ -ISO/TR 14073:2017,https://www.iso.org/standard/72264.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 19011:2011,https://www.iso.org/standard/50675.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -IWA 13:2014,https://www.iso.org/standard/63129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -IWA 19:2017,https://www.iso.org/standard/69354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -IWA 24:2016,https://www.iso.org/standard/70604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/DIS 14008,https://www.iso.org/standard/43243.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 207/SC 1,https://www.iso.org/contents/data/committee/05/48/54818/x/catalogue/ -ISO 20121:2012,https://www.iso.org/standard/54552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 20400:2017,https://www.iso.org/standard/63026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/DIS 20611,https://www.iso.org/standard/68548.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/CD 21416,https://www.iso.org/standard/70875.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO/DIS 30500,https://www.iso.org/standard/72523.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/PC 305,https://www.iso.org/contents/data/committee/61/70/6170397/x/catalogue/ -ISO 37100:2016,https://www.iso.org/standard/71914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO 37101:2016,https://www.iso.org/standard/61885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO/CD 37104,https://www.iso.org/standard/69895.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO/CD 37105,https://www.iso.org/standard/62064.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO/FDIS 37106,https://www.iso.org/standard/62065.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO 37120:2014,https://www.iso.org/standard/62436.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO/FDIS 37120,https://www.iso.org/standard/68498.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO/TR 37121:2017,https://www.iso.org/standard/63790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO/CD 37122,https://www.iso.org/standard/69050.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 268,https://www.iso.org/contents/data/committee/65/69/656906/x/catalogue/ -ISO/TR 37150:2014,https://www.iso.org/standard/62564.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO/TS 37151:2015,https://www.iso.org/standard/61057.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO/TR 37152:2016,https://www.iso.org/standard/66898.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO 37153:2017,https://www.iso.org/standard/69225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO 37154:2017,https://www.iso.org/standard/69965.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO/CD 37155,https://www.iso.org/standard/69241.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO/FDIS 37157,https://www.iso.org/standard/69243.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO/DIS 37158,https://www.iso.org/standard/69244.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -ISO/CD 37159,https://www.iso.org/standard/69245.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 268/SC 1,https://www.iso.org/contents/data/committee/65/69/656967/x/catalogue/ -IWA 16:2015,https://www.iso.org/standard/67844.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 14064-1:2006,https://www.iso.org/standard/38381.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO/DIS 14064-1,https://www.iso.org/standard/66453.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO 14064-2:2006,https://www.iso.org/standard/38382.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO/DIS 14064-2,https://www.iso.org/standard/66454.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO 14064-3:2006,https://www.iso.org/standard/38700.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO/DIS 14064-3,https://www.iso.org/standard/66455.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO 14065:2013,https://www.iso.org/standard/60168.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO/CD 14065,https://www.iso.org/standard/74257.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO 14066:2011,https://www.iso.org/standard/43277.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO/DIS 14067,https://www.iso.org/standard/71206.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO/TR 14069:2013,https://www.iso.org/standard/43280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO/FDIS 14080,https://www.iso.org/standard/67452.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO 16165:2013,https://www.iso.org/standard/59294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 16446:2013,https://www.iso.org/standard/60050.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 18557:2017,https://www.iso.org/standard/62879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/CD 20468-2,https://www.iso.org/standard/73032.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 282/SC 3,https://www.iso.org/contents/data/committee/52/61/5261857/x/catalogue/ -ISO/DIS 20951,https://www.iso.org/standard/69534.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO/TS 21396:2017,https://www.iso.org/standard/70858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/CD 22403,https://www.iso.org/standard/73121.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/CD 22526-1,https://www.iso.org/standard/73389.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 22526-2,https://www.iso.org/standard/73390.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 22526-3,https://www.iso.org/standard/73391.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DTS 22638,https://www.iso.org/standard/73634.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/DTS 22640,https://www.iso.org/standard/73636.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/DTS 22687,https://www.iso.org/standard/73681.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/TR 27912:2016,https://www.iso.org/standard/64233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO 27913:2016,https://www.iso.org/standard/64235.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO 27914:2017,https://www.iso.org/standard/64148.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO/TR 27915:2017,https://www.iso.org/standard/65981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO/DIS 27916,https://www.iso.org/standard/65937.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO 27917:2017,https://www.iso.org/standard/72969.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO/PRF TR 27918,https://www.iso.org/standard/67694.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO/FDIS 27919-1,https://www.iso.org/standard/67271.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 265,https://www.iso.org/contents/data/committee/64/86/648607/x/catalogue/ -ISO 14020:2000,https://www.iso.org/standard/34425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 207/SC 3,https://www.iso.org/contents/data/committee/05/48/54836/x/catalogue/ -ISO 14021:2016,https://www.iso.org/standard/66652.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 3,https://www.iso.org/contents/data/committee/05/48/54836/x/catalogue/ -ISO 14024,https://www.iso.org/standard/72458.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 207/SC 3,https://www.iso.org/contents/data/committee/05/48/54836/x/catalogue/ -ISO 14024:1999,https://www.iso.org/standard/23145.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 3,https://www.iso.org/contents/data/committee/05/48/54836/x/catalogue/ -ISO 14025:2006,https://www.iso.org/standard/38131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 207/SC 3,https://www.iso.org/contents/data/committee/05/48/54836/x/catalogue/ -ISO 14026:2017,https://www.iso.org/standard/67401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 3,https://www.iso.org/contents/data/committee/05/48/54836/x/catalogue/ -ISO/TS 14027:2017,https://www.iso.org/standard/66123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 3,https://www.iso.org/contents/data/committee/05/48/54836/x/catalogue/ -ISO 14040:2006,https://www.iso.org/standard/37456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14044:2006,https://www.iso.org/standard/38498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14044:2006/Amd 1:2017,https://www.iso.org/standard/72357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14045:2012,https://www.iso.org/standard/43262.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 14046:2014,https://www.iso.org/standard/43263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TR 14047:2012,https://www.iso.org/standard/57109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TS 14048:2002,https://www.iso.org/standard/29872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TR 14049:2012,https://www.iso.org/standard/57110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TS 14067:2013,https://www.iso.org/standard/59521.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 207/SC 7,https://www.iso.org/contents/data/committee/54/63/546318/x/catalogue/ -ISO/TS 14071:2014,https://www.iso.org/standard/61103.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TS 14072:2014,https://www.iso.org/standard/61104.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO/TR 14073:2017,https://www.iso.org/standard/72264.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 207/SC 5,https://www.iso.org/contents/data/committee/05/48/54854/x/catalogue/ -ISO 16759:2013,https://www.iso.org/standard/57615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DIS 20294,https://www.iso.org/standard/67559.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 13065:2015,https://www.iso.org/standard/52528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 13073-1:2012,https://www.iso.org/standard/52601.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 13073-2:2013,https://www.iso.org/standard/56668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 13073-3:2016,https://www.iso.org/standard/65517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/CD 16122-5,https://www.iso.org/standard/68907.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16304:2013,https://www.iso.org/standard/56129.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/PRF 16304,https://www.iso.org/standard/66931.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 17325-1:2014,https://www.iso.org/standard/59583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 17325-2:2014,https://www.iso.org/standard/59584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/DIS 17325-3,https://www.iso.org/standard/65228.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/DIS 17325-4,https://www.iso.org/standard/65229.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 18611-1:2014,https://www.iso.org/standard/63000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 18611-2:2014,https://www.iso.org/standard/63001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 18611-3:2014,https://www.iso.org/standard/63002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 20053:2017,https://www.iso.org/standard/66909.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 21070:2017,https://www.iso.org/standard/66930.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 21072-1:2009,https://www.iso.org/standard/40269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 21072-2:2009,https://www.iso.org/standard/42307.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 21072-3:2010,https://www.iso.org/standard/44983.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/CD 21417,https://www.iso.org/standard/70876.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 228,https://www.iso.org/contents/data/committee/37/53/375396/x/catalogue/ -ISO 11932:1996,https://www.iso.org/standard/20482.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -IWA 28,https://www.iso.org/standard/73400.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/CD 19698,https://www.iso.org/standard/74262.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 275,https://www.iso.org/contents/data/committee/44/93/4493530/x/catalogue/ -ISO/CD 22447,https://www.iso.org/standard/73237.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 282/SC 4,https://www.iso.org/contents/data/committee/62/15/6215620/x/catalogue/ -ISO 6849:1996,https://www.iso.org/standard/13358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6851:2001,https://www.iso.org/standard/32493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6853:2001,https://www.iso.org/standard/32494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6962:2004,https://www.iso.org/standard/39739.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 7760:2001,https://www.iso.org/standard/32495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 7766:2003,https://www.iso.org/standard/34988.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10348:1993,https://www.iso.org/standard/18405.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 16797:2004,https://www.iso.org/standard/31073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 11599:1997,https://www.iso.org/standard/19534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 13617:2001,https://www.iso.org/standard/31725.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/DIS 13617,https://www.iso.org/standard/66932.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 18309:2014,https://www.iso.org/standard/62100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 15270:2008,https://www.iso.org/standard/45089.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 4225:1994,https://www.iso.org/standard/10025.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 4226:2007,https://www.iso.org/standard/44994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 7168-1:1999,https://www.iso.org/standard/13766.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 7168-2:1999,https://www.iso.org/standard/27081.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 7708:1995,https://www.iso.org/standard/14534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 8756:1994,https://www.iso.org/standard/16165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 9169:2006,https://www.iso.org/standard/31496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 11222:2002,https://www.iso.org/standard/32066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 11665-1:2012,https://www.iso.org/standard/52187.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-2:2012,https://www.iso.org/standard/52188.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-3:2012,https://www.iso.org/standard/52189.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-4:2012,https://www.iso.org/standard/52190.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-5:2012,https://www.iso.org/standard/52191.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-6:2012,https://www.iso.org/standard/52192.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-7:2012,https://www.iso.org/standard/52193.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-8:2012,https://www.iso.org/standard/52194.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-9:2016,https://www.iso.org/standard/56653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-11:2016,https://www.iso.org/standard/61351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DTS 11665-12,https://www.iso.org/standard/70842.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/TS 11665-13:2017,https://www.iso.org/standard/70843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11771:2010,https://www.iso.org/standard/50765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 13138:2012,https://www.iso.org/standard/53331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 13752:1998,https://www.iso.org/standard/2821.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 14956:2002,https://www.iso.org/standard/26036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 16017-1:2000,https://www.iso.org/standard/29194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16017-2:2003,https://www.iso.org/standard/29195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16362:2005,https://www.iso.org/standard/32201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 20988:2007,https://www.iso.org/standard/35605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 4219:1979,https://www.iso.org/standard/10013.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 4220:1983,https://www.iso.org/standard/10014.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 4221:1980,https://www.iso.org/standard/10015.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 4224:2000,https://www.iso.org/standard/32229.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 6767:1990,https://www.iso.org/standard/13260.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 6768:1998,https://www.iso.org/standard/13262.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 7996:1985,https://www.iso.org/standard/14995.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 8186:1989,https://www.iso.org/standard/15276.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 9359:1989,https://www.iso.org/standard/17043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 4,https://www.iso.org/contents/data/committee/05/27/52792/x/catalogue/ -ISO 9835:1993,https://www.iso.org/standard/17715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 9855:1993,https://www.iso.org/standard/17734.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 10312:1995,https://www.iso.org/standard/18358.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 10313:1993,https://www.iso.org/standard/18359.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 10473:2000,https://www.iso.org/standard/32943.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 10498:2004,https://www.iso.org/standard/38904.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 12219-1:2012,https://www.iso.org/standard/50019.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/CD 12219-1,https://www.iso.org/standard/72410.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-2:2012,https://www.iso.org/standard/54865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-3:2012,https://www.iso.org/standard/54866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-4:2013,https://www.iso.org/standard/54867.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-5:2014,https://www.iso.org/standard/56876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-6:2017,https://www.iso.org/standard/62640.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-7:2017,https://www.iso.org/standard/62641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/DIS 12219-8,https://www.iso.org/standard/65510.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/CD 12219-9,https://www.iso.org/standard/68920.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12884:2000,https://www.iso.org/standard/1343.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 13794:1999,https://www.iso.org/standard/22933.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 13964:1998,https://www.iso.org/standard/23528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 14965:2000,https://www.iso.org/standard/26111.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 14966:2002,https://www.iso.org/standard/36256.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 14966:2002/Cor 1:2007,https://www.iso.org/standard/46438.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 15337:2009,https://www.iso.org/standard/37510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 15593:2001,https://www.iso.org/standard/27440.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 16000-1:2004,https://www.iso.org/standard/39844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-2:2004,https://www.iso.org/standard/29048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-3:2011,https://www.iso.org/standard/51812.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-4:2011,https://www.iso.org/standard/52214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-5:2007,https://www.iso.org/standard/37388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-6:2011,https://www.iso.org/standard/52213.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/AWI 16000-6,https://www.iso.org/standard/73522.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-7:2007,https://www.iso.org/standard/34975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-8:2007,https://www.iso.org/standard/41497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-9:2006,https://www.iso.org/standard/38203.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-9:2006/Cor 1:2007,https://www.iso.org/standard/50117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-10:2006,https://www.iso.org/standard/38204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-11:2006,https://www.iso.org/standard/38205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-12:2008,https://www.iso.org/standard/40338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-13:2008,https://www.iso.org/standard/40339.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-14:2009,https://www.iso.org/standard/44295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-15:2008,https://www.iso.org/standard/40340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-16:2008,https://www.iso.org/standard/40796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-17:2008,https://www.iso.org/standard/41215.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-17:2008/Cor 1:2009,https://www.iso.org/standard/55058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-18:2011,https://www.iso.org/standard/44325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-18:2011/Cor 1:2011,https://www.iso.org/standard/60840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-19:2012,https://www.iso.org/standard/44326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-20:2014,https://www.iso.org/standard/44327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-21:2013,https://www.iso.org/standard/44328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-23:2009,https://www.iso.org/standard/42960.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/DIS 16000-23,https://www.iso.org/standard/70809.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-24:2009,https://www.iso.org/standard/44296.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/DIS 16000-24,https://www.iso.org/standard/70810.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-25:2011,https://www.iso.org/standard/44892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-26:2012,https://www.iso.org/standard/52140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-27:2014,https://www.iso.org/standard/50104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-28:2012,https://www.iso.org/standard/50005.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/AWI 16000-28,https://www.iso.org/standard/72032.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-29:2014,https://www.iso.org/standard/55227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-30:2014,https://www.iso.org/standard/55558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-31:2014,https://www.iso.org/standard/57055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-32:2014,https://www.iso.org/standard/59409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16000-33:2017,https://www.iso.org/standard/63690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/DIS 16000-34,https://www.iso.org/standard/64069.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/DIS 16000-36,https://www.iso.org/standard/65001.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/DIS 16000-37,https://www.iso.org/standard/66283.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 16814:2008,https://www.iso.org/standard/42720.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 18144:2003,https://www.iso.org/standard/33326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 18145:2003,https://www.iso.org/standard/33327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/TS 20593:2017,https://www.iso.org/standard/68470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 22262-1:2012,https://www.iso.org/standard/40834.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 22262-2:2014,https://www.iso.org/standard/56773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 22262-3:2016,https://www.iso.org/standard/62502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 3,https://www.iso.org/contents/data/committee/05/27/52750/x/catalogue/ -ISO 8518:2001,https://www.iso.org/standard/26501.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 8672:2014,https://www.iso.org/standard/53413.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 8760:1990,https://www.iso.org/standard/16170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 8760:1990/Cor 1:2009,https://www.iso.org/standard/54704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 8761:1989,https://www.iso.org/standard/16171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 8761:1989/Cor 1:2009,https://www.iso.org/standard/54705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 9486:1991,https://www.iso.org/standard/17215.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 9487:1991,https://www.iso.org/standard/17216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 11041:1996,https://www.iso.org/standard/19021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 11174:1996,https://www.iso.org/standard/19181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 13137:2013,https://www.iso.org/standard/53330.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/TR 14294:2011,https://www.iso.org/standard/54575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 14382:2012,https://www.iso.org/standard/54616.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 15202-1:2012,https://www.iso.org/standard/51315.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/NP 15202-1,https://www.iso.org/standard/74937.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 15202-2:2012,https://www.iso.org/standard/51316.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/NP 15202-2,https://www.iso.org/standard/74938.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 15202-3:2004,https://www.iso.org/standard/38497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 15767:2009,https://www.iso.org/standard/44693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 16107:2007,https://www.iso.org/standard/41966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 16200-1:2001,https://www.iso.org/standard/30187.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 16200-2:2000,https://www.iso.org/standard/30188.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 16258-1:2015,https://www.iso.org/standard/56034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 16258-2:2015,https://www.iso.org/standard/56035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 16702:2007,https://www.iso.org/standard/42007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 16740:2005,https://www.iso.org/standard/30432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 17091:2013,https://www.iso.org/standard/58092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 17621:2015,https://www.iso.org/standard/60167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 17733:2015,https://www.iso.org/standard/67798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 17734-1:2013,https://www.iso.org/standard/58006.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 17734-2:2013,https://www.iso.org/standard/58007.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 17735:2009,https://www.iso.org/standard/46544.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/DIS 17735,https://www.iso.org/standard/70406.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 17736:2010,https://www.iso.org/standard/31517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/TR 17737:2012,https://www.iso.org/standard/57579.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 18158:2016,https://www.iso.org/standard/61638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/DIS 19087,https://www.iso.org/standard/63905.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 20552:2007,https://www.iso.org/standard/39544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 20581:2016,https://www.iso.org/standard/68455.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 21438-1:2007,https://www.iso.org/standard/40239.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/NP 21438-1,https://www.iso.org/standard/72921.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 21438-2:2009,https://www.iso.org/standard/43381.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 21438-3:2010,https://www.iso.org/standard/45768.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/TS 21623:2017,https://www.iso.org/standard/71272.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/DIS 21832,https://www.iso.org/standard/71912.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/CD 22065,https://www.iso.org/standard/72487.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 24095:2009,https://www.iso.org/standard/42006.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/CD 24095,https://www.iso.org/standard/69899.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO/TR 27628:2007,https://www.iso.org/standard/44243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 28439:2011,https://www.iso.org/standard/44697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 30011:2010,https://www.iso.org/standard/45769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -IEC/DIS 62990-1,https://www.iso.org/standard/68020.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -IEC/CD 62990-2,https://www.iso.org/standard/72751.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 146/SC 2,https://www.iso.org/contents/data/committee/05/27/52736/x/catalogue/ -ISO 14644-1:2015,https://www.iso.org/standard/53394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-2:2015,https://www.iso.org/standard/53393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-3:2005,https://www.iso.org/standard/37261.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO/DIS 14644-3,https://www.iso.org/standard/60598.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-4:2001,https://www.iso.org/standard/25007.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-5:2004,https://www.iso.org/standard/33445.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-7:2004,https://www.iso.org/standard/38264.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-8:2013,https://www.iso.org/standard/59424.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-9:2012,https://www.iso.org/standard/45826.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-10:2013,https://www.iso.org/standard/52440.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO/DIS 14644-12,https://www.iso.org/standard/69432.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-13:2017,https://www.iso.org/standard/61270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-14:2016,https://www.iso.org/standard/60970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14644-15:2017,https://www.iso.org/standard/65266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO/CD 14644-16,https://www.iso.org/standard/66331.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14698-1:2003,https://www.iso.org/standard/25015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14698-2:2003,https://www.iso.org/standard/25014.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 14698-2:2003/Cor 1:2004,https://www.iso.org/standard/41179.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 209,https://www.iso.org/contents/data/committee/05/48/54874/x/catalogue/ -ISO 7934:1989,https://www.iso.org/standard/14904.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 7934:1989/Amd 1:1998,https://www.iso.org/standard/24926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 7935:1992,https://www.iso.org/standard/14905.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 9096:2017,https://www.iso.org/standard/70547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 10155:1995,https://www.iso.org/standard/18150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 10155:1995/Cor 1:2002,https://www.iso.org/standard/36481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 10396:2007,https://www.iso.org/standard/39508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 10397:1993,https://www.iso.org/standard/18458.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 10780:1994,https://www.iso.org/standard/18855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 10849:1996,https://www.iso.org/standard/18881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 11042-1:1996,https://www.iso.org/standard/19022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 11042-2:1996,https://www.iso.org/standard/21427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 11057:2011,https://www.iso.org/standard/50020.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 11338-1:2003,https://www.iso.org/standard/32903.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 11338-2:2003,https://www.iso.org/standard/37250.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 11564:1998,https://www.iso.org/standard/19516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 11564:1998/Cor 1:2000,https://www.iso.org/standard/33729.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 11632:1998,https://www.iso.org/standard/19563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 12039:2001,https://www.iso.org/standard/20797.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO/AWI 12039,https://www.iso.org/standard/71638.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 12141:2002,https://www.iso.org/standard/21011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 13199:2012,https://www.iso.org/standard/53494.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 13271:2012,https://www.iso.org/standard/53581.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 13833:2013,https://www.iso.org/standard/54332.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 14164:1999,https://www.iso.org/standard/23777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 14385-1:2014,https://www.iso.org/standard/54621.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 14385-2:2014,https://www.iso.org/standard/54622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 15713:2006,https://www.iso.org/standard/42792.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 16911-1:2013,https://www.iso.org/standard/57947.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 16911-2:2013,https://www.iso.org/standard/57948.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 17179:2016,https://www.iso.org/standard/59257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 17211:2015,https://www.iso.org/standard/59408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 18466:2016,https://www.iso.org/standard/62513.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO/DIS 20264,https://www.iso.org/standard/67439.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 21258:2010,https://www.iso.org/standard/40113.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO/CD 21741,https://www.iso.org/standard/71532.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO/CD 21877,https://www.iso.org/standard/72025.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 23210:2009,https://www.iso.org/standard/53379.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 25139:2011,https://www.iso.org/standard/42777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 25140:2010,https://www.iso.org/standard/42778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 25597:2013,https://www.iso.org/standard/43029.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 789-4:1986,https://www.iso.org/standard/5116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 3929:2003,https://www.iso.org/standard/36351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6460-1:2007,https://www.iso.org/standard/43294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6460-1:2007/Amd 1:2015,https://www.iso.org/standard/65507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6460-2:2014,https://www.iso.org/standard/62685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6460-3:2007,https://www.iso.org/standard/43296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6460-3:2007/Amd 1:2015,https://www.iso.org/standard/65478.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6855-1:2012,https://www.iso.org/standard/55400.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6855-2:2012,https://www.iso.org/standard/55401.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6855-3:2012,https://www.iso.org/standard/55402.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 8178-1:2017,https://www.iso.org/standard/64710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-2:2008,https://www.iso.org/standard/41171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-3:1994,https://www.iso.org/standard/15270.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/CD 8178-3,https://www.iso.org/standard/74451.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-4:2017,https://www.iso.org/standard/65278.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-5:2015,https://www.iso.org/standard/62420.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/NP 8178-5,https://www.iso.org/standard/74082.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-6:2000,https://www.iso.org/standard/22484.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/PRF 8178-6,https://www.iso.org/standard/64711.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-7:2015,https://www.iso.org/standard/62077.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-8:2015,https://www.iso.org/standard/62078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-9:2012,https://www.iso.org/standard/56091.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/NP 8178-9,https://www.iso.org/standard/72721.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-10:2002,https://www.iso.org/standard/32824.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 10054:1998,https://www.iso.org/standard/18019.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 11614:1999,https://www.iso.org/standard/19551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 15031-1:2010,https://www.iso.org/standard/51828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-2:2010,https://www.iso.org/standard/50815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-3:2016,https://www.iso.org/standard/64636.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-4:2014,https://www.iso.org/standard/55047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-5:2015,https://www.iso.org/standard/66368.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-6:2015,https://www.iso.org/standard/66369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-7:2013,https://www.iso.org/standard/62489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16183:2002,https://www.iso.org/standard/32152.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 16232,https://www.iso.org/standard/70267.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-1:2007,https://www.iso.org/standard/39230.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-2:2007,https://www.iso.org/standard/39231.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-3:2007,https://www.iso.org/standard/39232.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-4:2007,https://www.iso.org/standard/39233.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-5:2007,https://www.iso.org/standard/39234.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-6:2007,https://www.iso.org/standard/39235.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-7:2007,https://www.iso.org/standard/39236.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-8:2007,https://www.iso.org/standard/39237.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-9:2007,https://www.iso.org/standard/39238.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-10:2007,https://www.iso.org/standard/39239.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 17479:2013,https://www.iso.org/standard/59880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 18854:2015,https://www.iso.org/standard/63594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 19449:2015,https://www.iso.org/standard/64928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO/DIS 21755-1,https://www.iso.org/standard/71555.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 28902-1:2012,https://www.iso.org/standard/45022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 6107-1:2004,https://www.iso.org/standard/37669.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-2:2006,https://www.iso.org/standard/41238.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-2:2006/Amd 1:2012,https://www.iso.org/standard/57506.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-3:1993,https://www.iso.org/standard/12313.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-3:1993/Amd 1:2001,https://www.iso.org/standard/32405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-4:1993,https://www.iso.org/standard/12315.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-5:2004,https://www.iso.org/standard/37845.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-6:2004,https://www.iso.org/standard/38793.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-7:2006,https://www.iso.org/standard/41239.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-8:1993,https://www.iso.org/standard/12321.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-8:1993/Amd 1:2001,https://www.iso.org/standard/32407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 6107-9:1997,https://www.iso.org/standard/23753.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 147/SC 1,https://www.iso.org/contents/data/committee/05/28/52842/x/catalogue/ -ISO 8466-1:1990,https://www.iso.org/standard/15664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 8466-2:2001,https://www.iso.org/standard/34816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15839:2003,https://www.iso.org/standard/28740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147,https://www.iso.org/contents/data/committee/05/28/52834/x/catalogue/ -ISO 16075-1:2015,https://www.iso.org/standard/62756.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/NP 16075-1,https://www.iso.org/standard/73482.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO 16075-2:2015,https://www.iso.org/standard/62758.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/NP 16075-2,https://www.iso.org/standard/73483.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO 16075-3:2015,https://www.iso.org/standard/62759.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/NP 16075-3,https://www.iso.org/standard/73484.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO 16075-4:2016,https://www.iso.org/standard/62760.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/NP 16075-4,https://www.iso.org/standard/73485.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/DIS 20325,https://www.iso.org/standard/67691.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/FDIS 20426,https://www.iso.org/standard/67972.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 282/SC 3,https://www.iso.org/contents/data/committee/52/61/5261857/x/catalogue/ -ISO/DIS 20468-1,https://www.iso.org/standard/68137.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 282/SC 3,https://www.iso.org/contents/data/committee/52/61/5261857/x/catalogue/ -ISO/CD 20468-2,https://www.iso.org/standard/73032.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 282/SC 3,https://www.iso.org/contents/data/committee/52/61/5261857/x/catalogue/ -ISO/DIS 20469,https://www.iso.org/standard/68138.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 282/SC 3,https://www.iso.org/contents/data/committee/52/61/5261857/x/catalogue/ -ISO/DIS 20670,https://www.iso.org/standard/68785.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 282,https://www.iso.org/contents/data/committee/48/56/4856734/x/catalogue/ -ISO 20760-1,https://www.iso.org/standard/68987.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 282/SC 2,https://www.iso.org/contents/data/committee/52/61/5261836/x/catalogue/ -ISO 20760-2:2017,https://www.iso.org/standard/68988.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 282/SC 2,https://www.iso.org/contents/data/committee/52/61/5261836/x/catalogue/ -ISO/FDIS 20761,https://www.iso.org/standard/68989.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 282/SC 2,https://www.iso.org/contents/data/committee/52/61/5261836/x/catalogue/ -ISO/CD 21939-1,https://www.iso.org/standard/72252.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 282/SC 4,https://www.iso.org/contents/data/committee/62/15/6215620/x/catalogue/ -ISO 24516-1:2016,https://www.iso.org/standard/64117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DIS 24516-2,https://www.iso.org/standard/64667.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24516-3:2017,https://www.iso.org/standard/64668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DIS 24516-4,https://www.iso.org/standard/64669.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24518:2015,https://www.iso.org/standard/64118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/CD 24526,https://www.iso.org/standard/68286.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 5667-4:2016,https://www.iso.org/standard/55450.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-6:2014,https://www.iso.org/standard/55451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-9:1992,https://www.iso.org/standard/11772.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO/NP 5667-9,https://www.iso.org/standard/65557.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-11:2009,https://www.iso.org/standard/42990.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-19:2004,https://www.iso.org/standard/32349.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-24:2016,https://www.iso.org/standard/60577.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 8689-1:2000,https://www.iso.org/standard/28368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 8689-2:2000,https://www.iso.org/standard/28369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 16665:2014,https://www.iso.org/standard/54846.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 19493:2007,https://www.iso.org/standard/39107.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 5667-5:2006,https://www.iso.org/standard/36694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-21:2010,https://www.iso.org/standard/46316.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 10359-1:1992,https://www.iso.org/standard/18416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 24510:2007,https://www.iso.org/standard/37246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24512:2007,https://www.iso.org/standard/37248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DIS 24513,https://www.iso.org/standard/72607.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/PRF TR 24514,https://www.iso.org/standard/64115.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24516-1:2016,https://www.iso.org/standard/64117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/TS 24520:2017,https://www.iso.org/standard/64680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DTS 24522,https://www.iso.org/standard/59813.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24523:2017,https://www.iso.org/standard/59814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 5667-7:1993,https://www.iso.org/standard/11770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO/CD 22449-1,https://www.iso.org/standard/73239.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 282/SC 4,https://www.iso.org/contents/data/committee/62/15/6215620/x/catalogue/ -ISO/CD 22449-2,https://www.iso.org/standard/73245.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 282/SC 4,https://www.iso.org/contents/data/committee/62/15/6215620/x/catalogue/ -ISO/CD 22524,https://www.iso.org/standard/73385.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 282/SC 4,https://www.iso.org/contents/data/committee/62/15/6215620/x/catalogue/ -ISO 5667-10:1992,https://www.iso.org/standard/11773.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO/CD 5667-10,https://www.iso.org/standard/70934.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-13:2011,https://www.iso.org/standard/45450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-15:2009,https://www.iso.org/standard/42892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 16075-1:2015,https://www.iso.org/standard/62756.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/NP 16075-1,https://www.iso.org/standard/73482.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO 16075-2:2015,https://www.iso.org/standard/62758.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/NP 16075-2,https://www.iso.org/standard/73483.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO 16075-3:2015,https://www.iso.org/standard/62759.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/NP 16075-3,https://www.iso.org/standard/73484.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO 16075-4:2016,https://www.iso.org/standard/62760.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/NP 16075-4,https://www.iso.org/standard/73485.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/DIS 20419,https://www.iso.org/standard/67959.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/CD 21939-1,https://www.iso.org/standard/72252.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 282/SC 4,https://www.iso.org/contents/data/committee/62/15/6215620/x/catalogue/ -ISO 24510:2007,https://www.iso.org/standard/37246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24511:2007,https://www.iso.org/standard/37247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DIS 24513,https://www.iso.org/standard/72607.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/PRF TR 24514,https://www.iso.org/standard/64115.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24516-3:2017,https://www.iso.org/standard/64668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DIS 24516-4,https://www.iso.org/standard/64669.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/TS 24520:2017,https://www.iso.org/standard/64680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24521:2016,https://www.iso.org/standard/64679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO/DTS 24522,https://www.iso.org/standard/59813.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 24523:2017,https://www.iso.org/standard/59814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 5667-1:2006,https://www.iso.org/standard/36693.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO/NP 5667-1,https://www.iso.org/standard/72369.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-3:2012,https://www.iso.org/standard/53569.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO/FDIS 5667-3,https://www.iso.org/standard/72370.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-4:2016,https://www.iso.org/standard/55450.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-5:2006,https://www.iso.org/standard/36694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-6:2014,https://www.iso.org/standard/55451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-7:1993,https://www.iso.org/standard/11770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-8:1993,https://www.iso.org/standard/11771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-9:1992,https://www.iso.org/standard/11772.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO/NP 5667-9,https://www.iso.org/standard/65557.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-11:2009,https://www.iso.org/standard/42990.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-12:2017,https://www.iso.org/standard/59903.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-13:2011,https://www.iso.org/standard/45450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-14:2014,https://www.iso.org/standard/55452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-15:2009,https://www.iso.org/standard/42892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-16:2017,https://www.iso.org/standard/65556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-17:2008,https://www.iso.org/standard/42891.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-19:2004,https://www.iso.org/standard/32349.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-20:2008,https://www.iso.org/standard/40003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-21:2010,https://www.iso.org/standard/46316.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-22:2010,https://www.iso.org/standard/46242.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-23:2011,https://www.iso.org/standard/50679.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 5667-24:2016,https://www.iso.org/standard/60577.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 6,https://www.iso.org/contents/data/committee/05/29/52994/x/catalogue/ -ISO 11352:2012,https://www.iso.org/standard/50399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 13530:2009,https://www.iso.org/standard/52910.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15839:2003,https://www.iso.org/standard/28740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147,https://www.iso.org/contents/data/committee/05/28/52834/x/catalogue/ -ISO/TS 16489:2006,https://www.iso.org/standard/39959.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 16489:2006/Cor 1:2006,https://www.iso.org/standard/45279.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17381:2003,https://www.iso.org/standard/30626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147,https://www.iso.org/contents/data/committee/05/28/52834/x/catalogue/ -ISO 19458:2006,https://www.iso.org/standard/33845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO/FDIS 20426,https://www.iso.org/standard/67972.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 282/SC 3,https://www.iso.org/contents/data/committee/52/61/5261857/x/catalogue/ -ISO/TS 20612:2007,https://www.iso.org/standard/46269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 5663:1984,https://www.iso.org/standard/11756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 5664:1984,https://www.iso.org/standard/11757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 5813:1983,https://www.iso.org/standard/11959.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 5814:2012,https://www.iso.org/standard/45346.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 5815-1:2003,https://www.iso.org/standard/31090.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/DIS 5815-1,https://www.iso.org/standard/69058.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 5815-2:2003,https://www.iso.org/standard/31091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 5961:1994,https://www.iso.org/standard/12157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6058:1984,https://www.iso.org/standard/12257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6059:1984,https://www.iso.org/standard/12258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6060:1989,https://www.iso.org/standard/12260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6332:1988,https://www.iso.org/standard/12630.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6333:1986,https://www.iso.org/standard/12631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6439:1990,https://www.iso.org/standard/12795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6468:1996,https://www.iso.org/standard/12826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6703-1:1984,https://www.iso.org/standard/13141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6703-2:1984,https://www.iso.org/standard/13142.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6703-3:1984,https://www.iso.org/standard/13143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6777:1984,https://www.iso.org/standard/13273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6778:1984,https://www.iso.org/standard/13274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 6878:2004,https://www.iso.org/standard/36917.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7150-1:1984,https://www.iso.org/standard/13742.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7393-1:1985,https://www.iso.org/standard/14105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7393-1:1985/Cor 1:2001,https://www.iso.org/standard/35235.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7393-2:2017,https://www.iso.org/standard/65560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7393-3:1990,https://www.iso.org/standard/14108.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7875-1:1996,https://www.iso.org/standard/24784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7875-1:1996/Cor 1:2003,https://www.iso.org/standard/38714.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7875-2:1984,https://www.iso.org/standard/14809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7890-3:1988,https://www.iso.org/standard/14842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7980:1986,https://www.iso.org/standard/14972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7981-1:2005,https://www.iso.org/standard/33883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7981-2:2005,https://www.iso.org/standard/33884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 8165-1:1992,https://www.iso.org/standard/15249.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 8165-2:1999,https://www.iso.org/standard/15250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 8245:1999,https://www.iso.org/standard/29920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 8288:1986,https://www.iso.org/standard/15408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 8467:1993,https://www.iso.org/standard/15669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9174:1998,https://www.iso.org/standard/28636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9297:1989,https://www.iso.org/standard/16952.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9377-2:2000,https://www.iso.org/standard/27604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9390:1990,https://www.iso.org/standard/17082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9562:2004,https://www.iso.org/standard/36918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9963-1:1994,https://www.iso.org/standard/17868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9963-2:1994,https://www.iso.org/standard/20105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9964-1:1993,https://www.iso.org/standard/17869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9964-2:1993,https://www.iso.org/standard/17870.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9964-3:1993,https://www.iso.org/standard/17871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10260:1992,https://www.iso.org/standard/18300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10301:1997,https://www.iso.org/standard/18345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10304-1:2007,https://www.iso.org/standard/46004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10304-1:2007/Cor 1:2010,https://www.iso.org/standard/56509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10304-3:1997,https://www.iso.org/standard/20651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10304-4:1997,https://www.iso.org/standard/22573.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10359-1:1992,https://www.iso.org/standard/18416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10359-2:1994,https://www.iso.org/standard/18417.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10523:2008,https://www.iso.org/standard/51994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10530:1992,https://www.iso.org/standard/18599.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10566:1994,https://www.iso.org/standard/18651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 10695:2000,https://www.iso.org/standard/18783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11083:1994,https://www.iso.org/standard/19070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11206:2011,https://www.iso.org/standard/50243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11349:2010,https://www.iso.org/standard/50392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11369:1997,https://www.iso.org/standard/19314.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 11370:2000,https://www.iso.org/standard/19315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11423-1:1997,https://www.iso.org/standard/19362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11423-2:1997,https://www.iso.org/standard/19363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11732:2005,https://www.iso.org/standard/38924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11885:2007,https://www.iso.org/standard/36250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 11905-1:1997,https://www.iso.org/standard/2155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 12010:2012,https://www.iso.org/standard/51124.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/DIS 12010,https://www.iso.org/standard/72127.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 12020:1997,https://www.iso.org/standard/20784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 12846:2012,https://www.iso.org/standard/51964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 13358:1997,https://www.iso.org/standard/21232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 13395:1996,https://www.iso.org/standard/21870.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 14402:1999,https://www.iso.org/standard/23708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 14403-1:2012,https://www.iso.org/standard/51083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 14403-2:2012,https://www.iso.org/standard/52208.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 14911:1998,https://www.iso.org/standard/25591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15061:2001,https://www.iso.org/standard/25863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15089:2000,https://www.iso.org/standard/25938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15586:2003,https://www.iso.org/standard/38111.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15587-1:2002,https://www.iso.org/standard/31354.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15587-2:2002,https://www.iso.org/standard/31355.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15680:2003,https://www.iso.org/standard/27983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15681-1:2003,https://www.iso.org/standard/35050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15681-2:2003,https://www.iso.org/standard/35051.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/DIS 15681-2,https://www.iso.org/standard/66474.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15682:2000,https://www.iso.org/standard/27984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15705:2002,https://www.iso.org/standard/28778.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15913:2000,https://www.iso.org/standard/29523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 15923-1:2013,https://www.iso.org/standard/55559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 15923-2:2017,https://www.iso.org/standard/66484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 16264:2002,https://www.iso.org/standard/30224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 16265:2009,https://www.iso.org/standard/52130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 16308:2014,https://www.iso.org/standard/56140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 16588:2002,https://www.iso.org/standard/31030.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 16588:2002/Amd 1:2004,https://www.iso.org/standard/39575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 16780:2015,https://www.iso.org/standard/68420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17289:2014,https://www.iso.org/standard/59515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17294-1:2004,https://www.iso.org/standard/32957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17294-2:2016,https://www.iso.org/standard/62962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17353:2004,https://www.iso.org/standard/31362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17378-1:2014,https://www.iso.org/standard/55219.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17378-2:2014,https://www.iso.org/standard/55220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 17379-1:2013,https://www.iso.org/standard/55222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 17379-2:2013,https://www.iso.org/standard/55221.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17495:2001,https://www.iso.org/standard/30700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17690:2015,https://www.iso.org/standard/60268.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17852:2006,https://www.iso.org/standard/38502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17858:2007,https://www.iso.org/standard/38503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17943:2016,https://www.iso.org/standard/61076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 17951-1:2016,https://www.iso.org/standard/71104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 17951-2:2016,https://www.iso.org/standard/71105.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 17993:2002,https://www.iso.org/standard/31666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 18073:2004,https://www.iso.org/standard/31687.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 18191:2015,https://www.iso.org/standard/61730.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 18412:2005,https://www.iso.org/standard/36916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 18635:2016,https://www.iso.org/standard/63093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 18856:2004,https://www.iso.org/standard/33680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 18857-1:2005,https://www.iso.org/standard/33681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 18857-2:2009,https://www.iso.org/standard/34673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 19340:2017,https://www.iso.org/standard/64654.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 19620:2018,https://www.iso.org/standard/65512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 20179:2005,https://www.iso.org/standard/34098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/DIS 20236,https://www.iso.org/standard/67389.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 20595:2018,https://www.iso.org/standard/68479.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/FDIS 20596-1,https://www.iso.org/standard/72386.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/CD 20596-2,https://www.iso.org/standard/72387.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/FDIS 20950-1,https://www.iso.org/standard/69533.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/DTS 21231,https://www.iso.org/standard/70157.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/CD 21253-1,https://www.iso.org/standard/70256.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/CD 21253-2,https://www.iso.org/standard/70255.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 21458:2008,https://www.iso.org/standard/40245.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/CD 21675,https://www.iso.org/standard/71338.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/DIS 21676,https://www.iso.org/standard/71340.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/CD 21793,https://www.iso.org/standard/71646.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/CD 21863,https://www.iso.org/standard/72011.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 22032:2006,https://www.iso.org/standard/36069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/CD 22104,https://www.iso.org/standard/72563.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 22478:2006,https://www.iso.org/standard/36255.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 22719:2008,https://www.iso.org/standard/41074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 22743:2006,https://www.iso.org/standard/38339.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 22743:2006/Cor 1:2007,https://www.iso.org/standard/50001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 23631:2006,https://www.iso.org/standard/36915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 23913:2006,https://www.iso.org/standard/37017.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 24293:2009,https://www.iso.org/standard/42156.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 25101:2009,https://www.iso.org/standard/42742.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 27108:2010,https://www.iso.org/standard/44000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 28540:2011,https://www.iso.org/standard/44752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/TS 28581:2012,https://www.iso.org/standard/44775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 29441:2010,https://www.iso.org/standard/45480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7027:1999,https://www.iso.org/standard/30123.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7027-1:2016,https://www.iso.org/standard/62801.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO/DIS 7027-2,https://www.iso.org/standard/69545.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7887:2011,https://www.iso.org/standard/46425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 7888:1985,https://www.iso.org/standard/14838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 9696:2017,https://www.iso.org/standard/66766.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 9697:2015,https://www.iso.org/standard/63382.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 9697,https://www.iso.org/standard/72374.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 9698:2010,https://www.iso.org/standard/51944.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 9698,https://www.iso.org/standard/69649.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 10703:2007,https://www.iso.org/standard/42756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 10704:2009,https://www.iso.org/standard/46063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 10704,https://www.iso.org/standard/70597.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 11704:2010,https://www.iso.org/standard/50700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 11704,https://www.iso.org/standard/71996.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 11923:1997,https://www.iso.org/standard/20654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 2,https://www.iso.org/contents/data/committee/05/28/52846/x/catalogue/ -ISO 13160:2012,https://www.iso.org/standard/53332.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13161:2011,https://www.iso.org/standard/53402.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/NP 13161,https://www.iso.org/standard/74776.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13162:2011,https://www.iso.org/standard/53403.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13163:2013,https://www.iso.org/standard/56463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-1:2013,https://www.iso.org/standard/53405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-2:2013,https://www.iso.org/standard/56108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-3:2013,https://www.iso.org/standard/56109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-4:2015,https://www.iso.org/standard/62424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13165-1:2013,https://www.iso.org/standard/56464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13165-2:2014,https://www.iso.org/standard/53406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13165-3:2016,https://www.iso.org/standard/60146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13166:2014,https://www.iso.org/standard/59209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13167:2015,https://www.iso.org/standard/53408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13168:2015,https://www.iso.org/standard/53409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 13169,https://www.iso.org/standard/68769.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 20899,https://www.iso.org/standard/69404.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 21338:2010,https://www.iso.org/standard/44880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/CD 22125-1,https://www.iso.org/standard/72631.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/CD 22125-2,https://www.iso.org/standard/72647.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/CD 22515,https://www.iso.org/standard/73375.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 6341:2012,https://www.iso.org/standard/54614.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 7346-1:1996,https://www.iso.org/standard/14026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 7346-2:1996,https://www.iso.org/standard/14028.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 7346-3:1996,https://www.iso.org/standard/14030.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 7827:2010,https://www.iso.org/standard/46248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 8192:2007,https://www.iso.org/standard/37369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 8692:2012,https://www.iso.org/standard/54150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 9408:1999,https://www.iso.org/standard/28120.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 9439:1999,https://www.iso.org/standard/26727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 9509:2006,https://www.iso.org/standard/34812.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 9887:1992,https://www.iso.org/standard/17768.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 9888:1999,https://www.iso.org/standard/28121.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10229:1994,https://www.iso.org/standard/18265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10253:2016,https://www.iso.org/standard/66657.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10634:1995,https://www.iso.org/standard/18728.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/DIS 10634,https://www.iso.org/standard/69573.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10706:2000,https://www.iso.org/standard/18795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10707:1994,https://www.iso.org/standard/18796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10708:1997,https://www.iso.org/standard/18797.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10710:2010,https://www.iso.org/standard/46064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10712:1995,https://www.iso.org/standard/18800.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10870:2012,https://www.iso.org/standard/46251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 10872:2010,https://www.iso.org/standard/46253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/TR 11044:2008,https://www.iso.org/standard/50000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11348-1:2007,https://www.iso.org/standard/40516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11348-1:2007/DAmd 1,https://www.iso.org/standard/73340.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11348-2:2007,https://www.iso.org/standard/40517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11348-2:2007/DAmd 1,https://www.iso.org/standard/73341.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11348-3:2007,https://www.iso.org/standard/40518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11348-3:2007/DAmd 1,https://www.iso.org/standard/73342.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11350:2012,https://www.iso.org/standard/50393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11733:2004,https://www.iso.org/standard/34416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 11734:1995,https://www.iso.org/standard/19656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 12890:1999,https://www.iso.org/standard/2171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 13641-1:2003,https://www.iso.org/standard/36232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 13641-2:2003,https://www.iso.org/standard/36231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 13829:2000,https://www.iso.org/standard/22626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 14371:2012,https://www.iso.org/standard/54612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 14380:2011,https://www.iso.org/standard/54613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 14442:2006,https://www.iso.org/standard/34814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 14592-1:2002,https://www.iso.org/standard/24870.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 14592-2:2002,https://www.iso.org/standard/24871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 14593:1999,https://www.iso.org/standard/24154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 14669:1999,https://www.iso.org/standard/25162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 15088:2007,https://www.iso.org/standard/37368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/TR 15462:2006,https://www.iso.org/standard/40718.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 15522:1999,https://www.iso.org/standard/27554.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 16191:2013,https://www.iso.org/standard/55809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 16221:2001,https://www.iso.org/standard/30205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 16240:2005,https://www.iso.org/standard/32160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 16266:2006,https://www.iso.org/standard/39272.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO/FDIS 16266-2,https://www.iso.org/standard/70091.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 16303:2013,https://www.iso.org/standard/56127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 16665:2014,https://www.iso.org/standard/54846.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 16778:2015,https://www.iso.org/standard/57698.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 17244:2015,https://www.iso.org/standard/59472.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 17994:2014,https://www.iso.org/standard/56617.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO/TS 18220:2016,https://www.iso.org/standard/61809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 18749:2004,https://www.iso.org/standard/33631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/FDIS 19040-1,https://www.iso.org/standard/64450.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/FDIS 19040-2,https://www.iso.org/standard/64451.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/FDIS 19040-3,https://www.iso.org/standard/66297.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 19493:2007,https://www.iso.org/standard/39107.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 19820:2016,https://www.iso.org/standard/66269.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 19827:2016,https://www.iso.org/standard/66282.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 20079:2005,https://www.iso.org/standard/34074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 20227:2017,https://www.iso.org/standard/67326.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/TS 20281:2006,https://www.iso.org/standard/34121.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 20665:2008,https://www.iso.org/standard/39673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 20666:2008,https://www.iso.org/standard/39674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/CD 21115,https://www.iso.org/standard/69933.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 21427-1:2006,https://www.iso.org/standard/39680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 21427-2:2006,https://www.iso.org/standard/39681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 21427-2:2006/Cor 1:2009,https://www.iso.org/standard/54062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 23893-1:2007,https://www.iso.org/standard/40566.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/TS 23893-2:2007,https://www.iso.org/standard/40567.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 23893-3:2013,https://www.iso.org/standard/53579.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO 29201:2012,https://www.iso.org/standard/45348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 4,https://www.iso.org/contents/data/committee/05/29/52944/x/catalogue/ -ISO 11074:2015,https://www.iso.org/standard/59259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO 11074:2015/DAmd 1,https://www.iso.org/standard/74731.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO 11504:2017,https://www.iso.org/standard/64939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 14507:2003,https://www.iso.org/standard/32421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 15903:2002,https://www.iso.org/standard/29028.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO 16133:2004,https://www.iso.org/standard/30868.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 16133,https://www.iso.org/standard/68254.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 17402:2008,https://www.iso.org/standard/38349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 18504:2017,https://www.iso.org/standard/62688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 18589-1:2005,https://www.iso.org/standard/35655.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/NP 18589-1,https://www.iso.org/standard/71210.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-2:2015,https://www.iso.org/standard/63916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-3:2015,https://www.iso.org/standard/60059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-4:2009,https://www.iso.org/standard/40876.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 18589-4,https://www.iso.org/standard/69086.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-5:2009,https://www.iso.org/standard/40877.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 18589-5,https://www.iso.org/standard/69074.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-6:2009,https://www.iso.org/standard/40878.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 18589-6,https://www.iso.org/standard/69069.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-7:2013,https://www.iso.org/standard/55362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 19204:2017,https://www.iso.org/standard/63989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 20951,https://www.iso.org/standard/69534.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO/CD 21365,https://www.iso.org/standard/70772.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 25177:2008,https://www.iso.org/standard/42783.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO/DIS 25177,https://www.iso.org/standard/69585.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO 28258:2013,https://www.iso.org/standard/44595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO 28258:2013/DAmd 1,https://www.iso.org/standard/72743.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO 10381-1:2002,https://www.iso.org/standard/32423.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 10381-4:2003,https://www.iso.org/standard/32426.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 10381-5:2005,https://www.iso.org/standard/32427.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 10381-8:2006,https://www.iso.org/standard/30941.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 10930:2012,https://www.iso.org/standard/46433.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11464:2006,https://www.iso.org/standard/37718.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 12782-1:2012,https://www.iso.org/standard/51697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 12782-2:2012,https://www.iso.org/standard/51698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 12782-3:2012,https://www.iso.org/standard/51699.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 12782-4:2012,https://www.iso.org/standard/51700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 12782-5:2012,https://www.iso.org/standard/51701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 17616:2008,https://www.iso.org/standard/38417.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/CD 17616,https://www.iso.org/standard/73592.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 18400-100:2017,https://www.iso.org/standard/67788.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18400-101:2017,https://www.iso.org/standard/62842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18400-102:2017,https://www.iso.org/standard/62843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18400-103:2017,https://www.iso.org/standard/62363.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO/DIS 18400-104,https://www.iso.org/standard/65223.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18400-105:2017,https://www.iso.org/standard/62364.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18400-106:2017,https://www.iso.org/standard/62841.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18400-107:2017,https://www.iso.org/standard/62365.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18400-201:2017,https://www.iso.org/standard/62366.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO/DIS 18400-202,https://www.iso.org/standard/65225.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO/DIS 18400-203,https://www.iso.org/standard/65226.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18400-204:2017,https://www.iso.org/standard/65224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO/DIS 18400-205,https://www.iso.org/standard/67787.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO/FDIS 18400-206,https://www.iso.org/standard/68249.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 18512:2007,https://www.iso.org/standard/38721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 2,https://www.iso.org/contents/data/committee/05/43/54338/x/catalogue/ -ISO 18772:2008,https://www.iso.org/standard/38867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/CD 19648,https://www.iso.org/standard/65647.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 21268-1,https://www.iso.org/standard/68250.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/TS 21268-1:2007,https://www.iso.org/standard/44145.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 21268-2,https://www.iso.org/standard/68251.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/TS 21268-2:2007,https://www.iso.org/standard/44146.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 21268-3,https://www.iso.org/standard/68252.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/TS 21268-3:2007,https://www.iso.org/standard/44147.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 21268-4,https://www.iso.org/standard/68730.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/TS 21268-4:2007,https://www.iso.org/standard/39105.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 22892:2006,https://www.iso.org/standard/35198.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 23611-1:2006,https://www.iso.org/standard/36914.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/FDIS 23611-1,https://www.iso.org/standard/70449.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-2:2006,https://www.iso.org/standard/37027.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-3:2007,https://www.iso.org/standard/39246.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/DIS 23611-3,https://www.iso.org/standard/72744.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-4:2007,https://www.iso.org/standard/41868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-5:2011,https://www.iso.org/standard/50777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-6:2012,https://www.iso.org/standard/50778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23909:2008,https://www.iso.org/standard/41918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 10382:2002,https://www.iso.org/standard/32422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 10390:2005,https://www.iso.org/standard/40879.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 10693:1995,https://www.iso.org/standard/18781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 10694:1995,https://www.iso.org/standard/18782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11047:1998,https://www.iso.org/standard/24010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11048:1995,https://www.iso.org/standard/19029.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11260:1994,https://www.iso.org/standard/19238.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11260:1994/Cor 1:1996,https://www.iso.org/standard/26905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/FDIS 11260,https://www.iso.org/standard/60566.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11261:1995,https://www.iso.org/standard/19239.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11262:2011,https://www.iso.org/standard/53737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11263:1994,https://www.iso.org/standard/19241.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11264:2005,https://www.iso.org/standard/41478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11466:1995,https://www.iso.org/standard/19418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11916-1:2013,https://www.iso.org/standard/51022.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11916-2:2013,https://www.iso.org/standard/53532.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 12404:2011,https://www.iso.org/standard/51407.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 12914:2012,https://www.iso.org/standard/52171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 13196:2013,https://www.iso.org/standard/53490.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 13536:1995,https://www.iso.org/standard/22180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 13859:2014,https://www.iso.org/standard/54337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 13876:2013,https://www.iso.org/standard/54338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 13878:1998,https://www.iso.org/standard/23117.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 13896:2012,https://www.iso.org/standard/54339.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 13907:2012,https://www.iso.org/standard/54341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 13913:2014,https://www.iso.org/standard/54342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 13914:2013,https://www.iso.org/standard/54343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14154:2005,https://www.iso.org/standard/36132.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14235:1998,https://www.iso.org/standard/23140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14254:2001,https://www.iso.org/standard/22919.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/FDIS 14254,https://www.iso.org/standard/60567.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14255:1998,https://www.iso.org/standard/23081.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 14256-1:2003,https://www.iso.org/standard/36706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14256-2:2005,https://www.iso.org/standard/32399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14388-1:2014,https://www.iso.org/standard/54708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14388-2:2014,https://www.iso.org/standard/54709.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14388-3:2014,https://www.iso.org/standard/54710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14869-1:2001,https://www.iso.org/standard/28454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14869-2:2002,https://www.iso.org/standard/28453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14869-3:2017,https://www.iso.org/standard/60536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 14870:2001,https://www.iso.org/standard/25232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 15009:2016,https://www.iso.org/standard/65179.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 15178:2000,https://www.iso.org/standard/26682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 15192:2010,https://www.iso.org/standard/50389.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 16558-1:2015,https://www.iso.org/standard/57106.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 16558-1:2015/DAmd 1,https://www.iso.org/standard/75097.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 16558-2:2015,https://www.iso.org/standard/59263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 16558-2:2015/DAmd 1,https://www.iso.org/standard/75187.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 16703:2004,https://www.iso.org/standard/39937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 16727:2013,https://www.iso.org/standard/57561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 16729:2013,https://www.iso.org/standard/57562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 16772:2004,https://www.iso.org/standard/32401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 16965:2013,https://www.iso.org/standard/58056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 17182:2014,https://www.iso.org/standard/59260.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 17183:2016,https://www.iso.org/standard/65917.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 17184:2014,https://www.iso.org/standard/59262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 17380:2013,https://www.iso.org/standard/55886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 17586:2016,https://www.iso.org/standard/60060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TR 18105:2014,https://www.iso.org/standard/61450.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 18227:2014,https://www.iso.org/standard/61816.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 18287:2006,https://www.iso.org/standard/33387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TR 19588:2017,https://www.iso.org/standard/65215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 19730:2008,https://www.iso.org/standard/41019.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/DIS 20244,https://www.iso.org/standard/67406.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 20279:2005,https://www.iso.org/standard/34119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 20280:2007,https://www.iso.org/standard/44538.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/DIS 20295,https://www.iso.org/standard/67560.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/CD 21226,https://www.iso.org/standard/70136.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 22036:2008,https://www.iso.org/standard/40653.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 22155:2016,https://www.iso.org/standard/65184.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 23161:2009,https://www.iso.org/standard/53382.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/DIS 23161,https://www.iso.org/standard/73990.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/DIS 23161,https://www.iso.org/standard/70100.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11265:1994,https://www.iso.org/standard/19243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11265:1994/Cor 1:1996,https://www.iso.org/standard/26684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11271:2002,https://www.iso.org/standard/34002.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11272:2017,https://www.iso.org/standard/68255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11277:2009,https://www.iso.org/standard/54151.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO/DIS 11277,https://www.iso.org/standard/69496.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11465:1993,https://www.iso.org/standard/20886.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11465:1993/Cor 1:1994,https://www.iso.org/standard/23695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11508:2017,https://www.iso.org/standard/68257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 16720:2005,https://www.iso.org/standard/30427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 17628:2015,https://www.iso.org/standard/60199.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-1:2014,https://www.iso.org/standard/55243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-2:2014,https://www.iso.org/standard/55244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-3:2015,https://www.iso.org/standard/55245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-4:2016,https://www.iso.org/standard/55246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-5:2017,https://www.iso.org/standard/55247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-6:2017,https://www.iso.org/standard/55248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-7:2017,https://www.iso.org/standard/70789.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-8,https://www.iso.org/standard/70790.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-8:2004,https://www.iso.org/standard/38521.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-8:2004/Cor 1:2006,https://www.iso.org/standard/43546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-9,https://www.iso.org/standard/70954.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-9:2004,https://www.iso.org/standard/38522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-9:2004/Cor 1:2006,https://www.iso.org/standard/43547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/DIS 17892-10,https://www.iso.org/standard/72015.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-10:2004,https://www.iso.org/standard/38523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-10:2004/Cor 1:2006,https://www.iso.org/standard/43548.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/DIS 17892-11,https://www.iso.org/standard/72016.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-11:2004,https://www.iso.org/standard/38524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-11:2004/Cor 1:2006,https://www.iso.org/standard/43549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/FDIS 17892-12,https://www.iso.org/standard/72017.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-12:2004,https://www.iso.org/standard/38525.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-12:2004/Cor 1:2006,https://www.iso.org/standard/43550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 18674-1:2015,https://www.iso.org/standard/63168.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 18674-2:2016,https://www.iso.org/standard/67123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 18674-3:2017,https://www.iso.org/standard/69207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 23470:2007,https://www.iso.org/standard/36879.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/DIS 23470,https://www.iso.org/standard/68765.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO/TS 10832:2009,https://www.iso.org/standard/46187.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 11063:2012,https://www.iso.org/standard/50025.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 11266:1994,https://www.iso.org/standard/19244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 11267:2014,https://www.iso.org/standard/57582.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 11268-1:2012,https://www.iso.org/standard/53527.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 11268-2:2012,https://www.iso.org/standard/53528.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 11268-3:2014,https://www.iso.org/standard/57583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 11269-1:2012,https://www.iso.org/standard/51388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 11269-2:2012,https://www.iso.org/standard/51382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 14238:2012,https://www.iso.org/standard/56033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 14239:2017,https://www.iso.org/standard/69583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 14240-1:1997,https://www.iso.org/standard/21530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 14240-2:1997,https://www.iso.org/standard/23951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 15473:2002,https://www.iso.org/standard/27189.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 15685:2012,https://www.iso.org/standard/53530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 15952:2006,https://www.iso.org/standard/37667.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/FDIS 15952,https://www.iso.org/standard/70144.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 16072:2002,https://www.iso.org/standard/32096.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 16198:2015,https://www.iso.org/standard/55834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 16387:2014,https://www.iso.org/standard/57067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 16712:2005,https://www.iso.org/standard/32370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 5,https://www.iso.org/contents/data/committee/05/29/52972/x/catalogue/ -ISO/PRF TS 16751,https://www.iso.org/standard/64272.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 17126:2005,https://www.iso.org/standard/31214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 17155:2012,https://www.iso.org/standard/53529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 17512-1:2008,https://www.iso.org/standard/38402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 17512-2:2011,https://www.iso.org/standard/50779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 17601:2016,https://www.iso.org/standard/60106.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/DIS 17924,https://www.iso.org/standard/64938.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/TS 17924:2007,https://www.iso.org/standard/45728.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 18187:2016,https://www.iso.org/standard/61723.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 18311:2016,https://www.iso.org/standard/62102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 18763:2016,https://www.iso.org/standard/63317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/FDIS 20130,https://www.iso.org/standard/67074.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/PRF TS 20131-1,https://www.iso.org/standard/67075.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/PRF TS 20131-2,https://www.iso.org/standard/67076.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 20963:2005,https://www.iso.org/standard/34352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/DIS 21285,https://www.iso.org/standard/70429.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/DIS 21286,https://www.iso.org/standard/70448.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/CD 21479,https://www.iso.org/standard/70974.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 22030:2005,https://www.iso.org/standard/36065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/NP TS 22939,https://www.iso.org/standard/74739.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/TS 22939:2010,https://www.iso.org/standard/41226.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-1:2006,https://www.iso.org/standard/36914.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/FDIS 23611-1,https://www.iso.org/standard/70449.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-2:2006,https://www.iso.org/standard/37027.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-3:2007,https://www.iso.org/standard/39246.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/DIS 23611-3,https://www.iso.org/standard/72744.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-4:2007,https://www.iso.org/standard/41868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-5:2011,https://www.iso.org/standard/50777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23611-6:2012,https://www.iso.org/standard/50778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23753-1:2005,https://www.iso.org/standard/37975.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/DIS 23753-1,https://www.iso.org/standard/70145.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 23753-2:2005,https://www.iso.org/standard/37976.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/DIS 23753-2,https://www.iso.org/standard/70146.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 29200:2013,https://www.iso.org/standard/45340.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/TS 29843-1:2010,https://www.iso.org/standard/45703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO/TS 29843-2:2011,https://www.iso.org/standard/54070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 4,https://www.iso.org/contents/data/committee/05/43/54366/x/catalogue/ -ISO 10573:1995,https://www.iso.org/standard/18658.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 11274:1998,https://www.iso.org/standard/19252.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 11274:1998/Cor 1:2009,https://www.iso.org/standard/54670.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO/DIS 11274,https://www.iso.org/standard/68256.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 3,https://www.iso.org/contents/data/committee/05/43/54346/x/catalogue/ -ISO 11275:2004,https://www.iso.org/standard/33032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 11276:1995,https://www.iso.org/standard/19254.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 11461:2001,https://www.iso.org/standard/33031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 15175:2004,https://www.iso.org/standard/39519.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 15175,https://www.iso.org/standard/68253.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 15709:2002,https://www.iso.org/standard/28781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 1,https://www.iso.org/contents/data/committee/05/43/54330/x/catalogue/ -ISO 16586:2003,https://www.iso.org/standard/32317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 16586:2003/Cor 1:2009,https://www.iso.org/standard/54130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 17312:2005,https://www.iso.org/standard/32976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 17313:2004,https://www.iso.org/standard/32977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190,https://www.iso.org/contents/data/committee/05/43/54328/x/catalogue/ -ISO 15176:2002,https://www.iso.org/standard/26680.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 15176,https://www.iso.org/standard/70771.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 15799:2003,https://www.iso.org/standard/29085.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 15799,https://www.iso.org/standard/70770.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 15800:2003,https://www.iso.org/standard/29087.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 15800,https://www.iso.org/standard/68239.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 19258:2005,https://www.iso.org/standard/33772.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO/DIS 19258,https://www.iso.org/standard/67982.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 28901:2011,https://www.iso.org/standard/45021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 190/SC 7,https://www.iso.org/contents/data/committee/05/44/54408/x/catalogue/ -ISO 8528-12:1997,https://www.iso.org/standard/20681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 10882-1:2011,https://www.iso.org/standard/43385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 10882-2:2000,https://www.iso.org/standard/26144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/DTR 12885,https://www.iso.org/standard/67446.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 12885:2008,https://www.iso.org/standard/52093.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO 12894:2001,https://www.iso.org/standard/34755.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/TS 12901-1:2012,https://www.iso.org/standard/52125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TS 12901-2:2014,https://www.iso.org/standard/53375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 13329:2012,https://www.iso.org/standard/53705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 229,https://www.iso.org/contents/data/committee/38/19/381983/x/catalogue/ -ISO/TR 13392:2014,https://www.iso.org/standard/53743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 13577-1:2016,https://www.iso.org/standard/68019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13577-2:2014,https://www.iso.org/standard/54033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13577-3:2016,https://www.iso.org/standard/57988.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13577-4:2014,https://www.iso.org/standard/57989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13578:2017,https://www.iso.org/standard/57990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 15011-1:2009,https://www.iso.org/standard/42808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/DIS 15011-1,https://www.iso.org/standard/67260.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15011-2:2009,https://www.iso.org/standard/42789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15011-3:2009,https://www.iso.org/standard/42193.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15011-4:2017,https://www.iso.org/standard/69598.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15011-5:2011,https://www.iso.org/standard/51458.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/TS 15011-6:2012,https://www.iso.org/standard/50945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/TS 15011-6:2012/Cor 1:2012,https://www.iso.org/standard/62751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15012-1:2013,https://www.iso.org/standard/53013.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15012-2:2008,https://www.iso.org/standard/42810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15012-4:2016,https://www.iso.org/standard/57900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/TR 18786:2014,https://www.iso.org/standard/65946.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/WD 21904-1,https://www.iso.org/standard/72132.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/NP 21904-2,https://www.iso.org/standard/72137.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/FDIS 21904-3,https://www.iso.org/standard/73006.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/CD 21904-4,https://www.iso.org/standard/72139.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 25980:2014,https://www.iso.org/standard/61903.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 45001,https://www.iso.org/standard/63787.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/PC 283,https://www.iso.org/contents/data/committee/48/57/4857129/x/catalogue/ -ISO Guide 78:2012,https://www.iso.org/standard/57206.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 11161:2007,https://www.iso.org/standard/35996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 11161:2007/Amd 1:2010,https://www.iso.org/standard/50323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 11553-1:2005,https://www.iso.org/standard/30654.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 11553-1,https://www.iso.org/standard/67658.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11553-2:2007,https://www.iso.org/standard/37590.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 11553-2,https://www.iso.org/standard/67409.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11553-3:2013,https://www.iso.org/standard/45011.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 12100:2010,https://www.iso.org/standard/51528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13105-2:2014,https://www.iso.org/standard/62285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 13105-2:2014/Amd 1:2017,https://www.iso.org/standard/72561.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 13849-1:2015,https://www.iso.org/standard/69883.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/AWI 13849-1,https://www.iso.org/standard/73481.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13849-2:2012,https://www.iso.org/standard/53640.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13850:2015,https://www.iso.org/standard/59970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13851:2002,https://www.iso.org/standard/35560.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/DIS 13851,https://www.iso.org/standard/70295.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13854:2017,https://www.iso.org/standard/66459.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13855:2010,https://www.iso.org/standard/42845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13856-1:2013,https://www.iso.org/standard/57017.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13856-2:2013,https://www.iso.org/standard/57108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13856-3:2013,https://www.iso.org/standard/57872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 13857:2008,https://www.iso.org/standard/39255.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/DIS 13857,https://www.iso.org/standard/69569.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14118:2017,https://www.iso.org/standard/66460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14119:2013,https://www.iso.org/standard/45291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14120:2015,https://www.iso.org/standard/59545.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/TR 14121-2:2012,https://www.iso.org/standard/57180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14122-1:2016,https://www.iso.org/standard/61279.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14122-2:2016,https://www.iso.org/standard/61281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14122-3:2016,https://www.iso.org/standard/61282.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14122-4:2016,https://www.iso.org/standard/61283.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14123-1:2015,https://www.iso.org/standard/66983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14123-2:2015,https://www.iso.org/standard/66984.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14159:2002,https://www.iso.org/standard/23748.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 14738:2002,https://www.iso.org/standard/27556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 14738:2002/Cor 1:2003,https://www.iso.org/standard/39776.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 14738:2002/Cor 2:2005,https://www.iso.org/standard/41725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15534-1:2000,https://www.iso.org/standard/27559.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15534-2:2000,https://www.iso.org/standard/30263.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15534-3:2000,https://www.iso.org/standard/30264.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15537:2004,https://www.iso.org/standard/27581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 19085-1:2017,https://www.iso.org/standard/63896.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-2:2017,https://www.iso.org/standard/63897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-3:2017,https://www.iso.org/standard/63898.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/FDIS 19085-4.2,https://www.iso.org/standard/63899.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-5:2017,https://www.iso.org/standard/63900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-6:2017,https://www.iso.org/standard/66333.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/DIS 19085-7,https://www.iso.org/standard/66780.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-8:2017,https://www.iso.org/standard/67635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/DIS 19085-9,https://www.iso.org/standard/67636.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-10,https://www.iso.org/standard/67637.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/CD 19085-11,https://www.iso.org/standard/67638.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/FDIS 19085-12,https://www.iso.org/standard/67639.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/FDIS 19085-13,https://www.iso.org/standard/67640.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/CD 19085-14,https://www.iso.org/standard/67641.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/CD 19085-15,https://www.iso.org/standard/71274.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19296,https://www.iso.org/standard/64455.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 19353:2015,https://www.iso.org/standard/60177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 19353:2015/DAmd 1,https://www.iso.org/standard/73334.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/PRF TS 19837,https://www.iso.org/standard/66335.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/DIS 20321,https://www.iso.org/standard/67666.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/DIS 20607,https://www.iso.org/standard/68519.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/CD 21260,https://www.iso.org/standard/70298.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 21469:2006,https://www.iso.org/standard/35884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/TR 22100-1:2015,https://www.iso.org/standard/63159.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/TR 22100-2:2013,https://www.iso.org/standard/63158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/TR 22100-3:2016,https://www.iso.org/standard/62296.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/TR 23849:2010,https://www.iso.org/standard/54424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO/TR 24119:2015,https://www.iso.org/standard/63160.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-1:2008,https://www.iso.org/standard/45287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-2:2009,https://www.iso.org/standard/45288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-3:2009,https://www.iso.org/standard/45289.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-4:2009,https://www.iso.org/standard/45290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-5:2010,https://www.iso.org/standard/51534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-6:2010,https://www.iso.org/standard/51535.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-7:2010,https://www.iso.org/standard/51536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-8:2011,https://www.iso.org/standard/51785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 29042-9:2011,https://www.iso.org/standard/51786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 10377:2013,https://www.iso.org/standard/45967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 10393:2013,https://www.iso.org/standard/45968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 226:2003,https://www.iso.org/standard/34222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-1:2017,https://www.iso.org/standard/69855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-2:1994,https://www.iso.org/standard/4378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-3:2016,https://www.iso.org/standard/59759.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-4:1994,https://www.iso.org/standard/22496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-5:2006,https://www.iso.org/standard/40535.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-6:2007,https://www.iso.org/standard/40278.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-7:2005,https://www.iso.org/standard/38976.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-7:2005/Amd 1:2016,https://www.iso.org/standard/67239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-8:2004,https://www.iso.org/standard/32440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 389-9:2009,https://www.iso.org/standard/35251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 1996-1:2016,https://www.iso.org/standard/59765.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 1996-2:2017,https://www.iso.org/standard/59766.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 1999:2013,https://www.iso.org/standard/45103.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 7029:2017,https://www.iso.org/standard/42916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 8253-1:2010,https://www.iso.org/standard/43601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 8253-2:2009,https://www.iso.org/standard/51997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 8253-3:2012,https://www.iso.org/standard/45101.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO/NP 8253-3,https://www.iso.org/standard/74049.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 9612:2009,https://www.iso.org/standard/41718.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11690-1:1996,https://www.iso.org/standard/19617.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11690-2:1996,https://www.iso.org/standard/19618.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TR 11690-3:1997,https://www.iso.org/standard/19619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 14257:2001,https://www.iso.org/standard/24014.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP TS 15666,https://www.iso.org/standard/74048.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 15666:2003,https://www.iso.org/standard/28630.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17624:2004,https://www.iso.org/standard/33148.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 22868:2011,https://www.iso.org/standard/51129.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/CD 22868,https://www.iso.org/standard/72397.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 28961:2012,https://www.iso.org/standard/45104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 2631-1:1997,https://www.iso.org/standard/7612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 2631-1:1997/Amd 1:2010,https://www.iso.org/standard/45604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 2631-2:2003,https://www.iso.org/standard/23012.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 2631-4:2001,https://www.iso.org/standard/32178.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 2631-4:2001/Amd 1:2010,https://www.iso.org/standard/35596.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 2631-5:2004,https://www.iso.org/standard/35595.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/DIS 2631-5,https://www.iso.org/standard/50905.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 5007:2003,https://www.iso.org/standard/26861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5008:2002,https://www.iso.org/standard/1743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5008:2002/Cor 1:2005,https://www.iso.org/standard/43444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5349-1:2001,https://www.iso.org/standard/32355.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 5349-2:2001,https://www.iso.org/standard/27511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 5349-2:2001/Amd 1:2015,https://www.iso.org/standard/60726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 5805:1997,https://www.iso.org/standard/11953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 5982:2001,https://www.iso.org/standard/32917.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/CD 5982,https://www.iso.org/standard/73185.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 6897:1984,https://www.iso.org/standard/13419.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 7096:2000,https://www.iso.org/standard/25592.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 8041:2005,https://www.iso.org/standard/30145.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 8041-1:2017,https://www.iso.org/standard/70648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 8662-11:1999,https://www.iso.org/standard/23170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 8662-11:1999/Amd 1:2001,https://www.iso.org/standard/34630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 8727:1997,https://www.iso.org/standard/16130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 8727:1997/Amd 1:2015,https://www.iso.org/standard/66284.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 9996:1996,https://www.iso.org/standard/17931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10068:2012,https://www.iso.org/standard/53714.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10227:1996,https://www.iso.org/standard/18260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10326-1:2016,https://www.iso.org/standard/67659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10326-2:2001,https://www.iso.org/standard/33066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/NP TR 10687,https://www.iso.org/standard/75294.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/TR 10687:2012,https://www.iso.org/standard/46055.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10819:2013,https://www.iso.org/standard/46313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10819:2013/FDAmd 1,https://www.iso.org/standard/67657.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 13090-1:1998,https://www.iso.org/standard/20825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 13091-1:2001,https://www.iso.org/standard/32509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 13091-1:2001/Amd 1:2010,https://www.iso.org/standard/40055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 13091-2:2003,https://www.iso.org/standard/27716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 13753:1998,https://www.iso.org/standard/20824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 14835-1:2016,https://www.iso.org/standard/69973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 14835-2:2005,https://www.iso.org/standard/33763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/TS 15694:2004,https://www.iso.org/standard/40386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/TR 18570:2017,https://www.iso.org/standard/67688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/TR 19664:2017,https://www.iso.org/standard/65939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 20643:2005,https://www.iso.org/standard/34244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 20643:2005/Amd 1:2012,https://www.iso.org/standard/52920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 22867:2011,https://www.iso.org/standard/51143.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/TR 25398:2006,https://www.iso.org/standard/42905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/TR 27609:2007,https://www.iso.org/standard/44238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-1:2009,https://www.iso.org/standard/40798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-1:2009/Amd 1:2017,https://www.iso.org/standard/68218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-2:2009,https://www.iso.org/standard/45051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-2:2009/Amd 1:2017,https://www.iso.org/standard/71213.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-3:2009,https://www.iso.org/standard/43230.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-4:2010,https://www.iso.org/standard/45052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-4:2010/Amd 1:2017,https://www.iso.org/standard/71212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-5:2009,https://www.iso.org/standard/50151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-5:2009/Amd 1:2015,https://www.iso.org/standard/59823.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-6:2009,https://www.iso.org/standard/50152.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-7:2009,https://www.iso.org/standard/50153.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-8:2009,https://www.iso.org/standard/50166.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-8:2009/Amd 1:2015,https://www.iso.org/standard/56708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-8:2009/CD Amd 2,https://www.iso.org/standard/73648.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/NP 28927-8,https://www.iso.org/standard/73647.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-9:2009,https://www.iso.org/standard/50167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-10:2011,https://www.iso.org/standard/50610.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-11:2011,https://www.iso.org/standard/50611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-12:2012,https://www.iso.org/standard/55876.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/DIS 28927-13,https://www.iso.org/standard/59824.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/IEC Guide 71:2014,https://www.iso.org/standard/57385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 1503:2008,https://www.iso.org/standard/40302.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 6385:2016,https://www.iso.org/standard/63785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO 7243:2017,https://www.iso.org/standard/67188.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 7250-1:2017,https://www.iso.org/standard/65246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO/TR 7250-2:2010,https://www.iso.org/standard/41249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO/TR 7250-2:2010/Amd 1:2013,https://www.iso.org/standard/62899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 7250-3:2015,https://www.iso.org/standard/64237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 7726:1998,https://www.iso.org/standard/14562.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/NP 7726,https://www.iso.org/standard/67189.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 7730:2005,https://www.iso.org/standard/39155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 7731:2003,https://www.iso.org/standard/33590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 7933:2004,https://www.iso.org/standard/37600.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/CD 7933,https://www.iso.org/standard/67185.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 8995-1:2002/Cor 1:2005,https://www.iso.org/standard/43196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO 8995-1:2002,https://www.iso.org/standard/28857.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO 8995-3:2006,https://www.iso.org/standard/44630.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO/CIE 8995-3,https://www.iso.org/standard/70593.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO 8996:2004,https://www.iso.org/standard/34251.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/CD 8996,https://www.iso.org/standard/74443.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 9241-1:1997,https://www.iso.org/standard/21922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-1:1997/Amd 1:2001,https://www.iso.org/standard/31246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-2:1992,https://www.iso.org/standard/16874.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-5:1998,https://www.iso.org/standard/16877.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-6:1999,https://www.iso.org/standard/16878.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-11,https://www.iso.org/standard/63500.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-11:1998,https://www.iso.org/standard/16883.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-13:1998,https://www.iso.org/standard/16885.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-14:1997,https://www.iso.org/standard/16886.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-15:1997,https://www.iso.org/standard/16887.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-16:1999,https://www.iso.org/standard/16888.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-20:2008,https://www.iso.org/standard/40727.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-100:2010,https://www.iso.org/standard/52712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-110:2006,https://www.iso.org/standard/38009.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-112:2017,https://www.iso.org/standard/64840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-125:2017,https://www.iso.org/standard/64839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-129:2010,https://www.iso.org/standard/50014.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-143:2012,https://www.iso.org/standard/53590.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-151:2008,https://www.iso.org/standard/37031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-154:2013,https://www.iso.org/standard/52172.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-161:2016,https://www.iso.org/standard/60476.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-171:2008,https://www.iso.org/standard/39080.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-210:2010,https://www.iso.org/standard/52075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/FDIS 9241-220,https://www.iso.org/standard/63462.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-300:2008,https://www.iso.org/standard/40096.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-302:2008,https://www.iso.org/standard/40097.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-303:2011,https://www.iso.org/standard/57992.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-304:2008,https://www.iso.org/standard/40099.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-305:2008,https://www.iso.org/standard/40100.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-306:2008,https://www.iso.org/standard/40101.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/FDIS 9241-306,https://www.iso.org/standard/65063.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-307:2008,https://www.iso.org/standard/40102.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-308:2008,https://www.iso.org/standard/44843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-309:2008,https://www.iso.org/standard/51308.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-310:2010,https://www.iso.org/standard/54117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-331:2012,https://www.iso.org/standard/57233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-333:2017,https://www.iso.org/standard/66004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-391:2016,https://www.iso.org/standard/56350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-392:2015,https://www.iso.org/standard/60317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/DTR 9241-393,https://www.iso.org/standard/73225.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-400:2007,https://www.iso.org/standard/38896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-410:2008,https://www.iso.org/standard/38899.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-410:2008/Amd 1:2012,https://www.iso.org/standard/54107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TS 9241-411:2012,https://www.iso.org/standard/54106.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-420:2011,https://www.iso.org/standard/52938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/DIS 9241-500,https://www.iso.org/standard/72135.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-910:2011,https://www.iso.org/standard/51097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-920:2009,https://www.iso.org/standard/42904.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-940:2017,https://www.iso.org/standard/61362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-960:2017,https://www.iso.org/standard/62535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9355-1:1999,https://www.iso.org/standard/21919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9355-2:1999,https://www.iso.org/standard/21920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9355-3:2006,https://www.iso.org/standard/40188.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9886:2004,https://www.iso.org/standard/34110.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 9920:2007,https://www.iso.org/standard/39257.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 9921:2003,https://www.iso.org/standard/33589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 10075-1:2017,https://www.iso.org/standard/66900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO 10075-2:1996,https://www.iso.org/standard/20264.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO 10075-3:2004,https://www.iso.org/standard/27571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO 10551:1995,https://www.iso.org/standard/18636.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/DIS 10551,https://www.iso.org/standard/67186.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 11064-1:2000,https://www.iso.org/standard/19042.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 11064-2:2000,https://www.iso.org/standard/19043.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 11064-3:1999,https://www.iso.org/standard/19044.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 11064-3:1999/Cor 1:2002,https://www.iso.org/standard/36577.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 11064-4:2013,https://www.iso.org/standard/54419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 11064-5:2008,https://www.iso.org/standard/44691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 11064-6:2005,https://www.iso.org/standard/39713.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 11064-7:2006,https://www.iso.org/standard/22470.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 11079:2007,https://www.iso.org/standard/38900.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 11226:2000,https://www.iso.org/standard/25573.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 11226:2000/Cor 1:2006,https://www.iso.org/standard/44143.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 11228-1:2003,https://www.iso.org/standard/26520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 11228-2:2007,https://www.iso.org/standard/26521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 11228-3:2007,https://www.iso.org/standard/26522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 11399:1995,https://www.iso.org/standard/19340.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 11428:1996,https://www.iso.org/standard/19368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 11429:1996,https://www.iso.org/standard/19369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/TR 12295:2014,https://www.iso.org/standard/51309.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO/TR 12296:2012,https://www.iso.org/standard/51310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 12894:2001,https://www.iso.org/standard/34755.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 13731:2001,https://www.iso.org/standard/22450.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/CD 13731,https://www.iso.org/standard/67187.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 13732-1:2006,https://www.iso.org/standard/43558.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/TS 13732-2:2001,https://www.iso.org/standard/34076.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 13732-3:2005,https://www.iso.org/standard/34077.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/NP TS 14198,https://www.iso.org/standard/71509.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TS 14198:2012,https://www.iso.org/standard/54496.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TS 14505-1:2007,https://www.iso.org/standard/38265.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 14505-2:2006,https://www.iso.org/standard/38266.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 14505-2:2006/Cor 1:2007,https://www.iso.org/standard/46527.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 14505-3:2006,https://www.iso.org/standard/38901.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 14738:2002,https://www.iso.org/standard/27556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 14738:2002/Cor 1:2003,https://www.iso.org/standard/39776.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 14738:2002/Cor 2:2005,https://www.iso.org/standard/41725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 14915-1:2002,https://www.iso.org/standard/25578.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 14915-2:2003,https://www.iso.org/standard/28583.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 14915-3:2002,https://www.iso.org/standard/28584.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 15005:2017,https://www.iso.org/standard/69238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15006:2011,https://www.iso.org/standard/55322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15007-1:2014,https://www.iso.org/standard/56621.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TS 15007-2:2014,https://www.iso.org/standard/56622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15008:2017,https://www.iso.org/standard/62784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15265:2004,https://www.iso.org/standard/26129.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 15534-1:2000,https://www.iso.org/standard/27559.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15534-2:2000,https://www.iso.org/standard/30263.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15534-3:2000,https://www.iso.org/standard/30264.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15535:2012,https://www.iso.org/standard/57179.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15536-1:2005,https://www.iso.org/standard/27580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15536-2:2007,https://www.iso.org/standard/34220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15537:2004,https://www.iso.org/standard/27581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 15743:2008,https://www.iso.org/standard/38895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 16121-1:2012,https://www.iso.org/standard/56173.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 16121-2:2011,https://www.iso.org/standard/56532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 16121-3:2011,https://www.iso.org/standard/59367.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 16121-4:2011,https://www.iso.org/standard/56533.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TR 16352:2005,https://www.iso.org/standard/37859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/DTS 16418,https://www.iso.org/standard/63714.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 16505:2015,https://www.iso.org/standard/56896.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/DIS 16505,https://www.iso.org/standard/72000.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 16673:2017,https://www.iso.org/standard/71508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TS 16951:2004,https://www.iso.org/standard/29024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TR 16982:2002,https://www.iso.org/standard/31176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 17049:2013,https://www.iso.org/standard/58086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO 17069:2014,https://www.iso.org/standard/58090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO 17287:2003,https://www.iso.org/standard/30597.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TS 17929:2014,https://www.iso.org/standard/61027.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 254,https://www.iso.org/contents/data/committee/61/70/617082/x/catalogue/ -ISO/TS 18152:2010,https://www.iso.org/standard/56174.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 18529:2000,https://www.iso.org/standard/33499.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 19026:2015,https://www.iso.org/standard/63759.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO 19027:2016,https://www.iso.org/standard/63760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO 19028:2016,https://www.iso.org/standard/63761.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO 19029:2016,https://www.iso.org/standard/63762.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO/TR 19358:2002,https://www.iso.org/standard/33795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/TR 20278:2015,https://www.iso.org/standard/67471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 20282-1:2006,https://www.iso.org/standard/34122.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TS 20282-2:2013,https://www.iso.org/standard/62733.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TS 20646:2014,https://www.iso.org/standard/63231.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 20685:2010,https://www.iso.org/standard/54909.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO/DIS 20685-1,https://www.iso.org/standard/63260.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO 20685-2:2015,https://www.iso.org/standard/63261.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 3,https://www.iso.org/contents/data/committee/05/33/53362/x/catalogue/ -ISO/CD 21055,https://www.iso.org/standard/69766.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/DIS 21056,https://www.iso.org/standard/69767.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TS 21144:2016,https://www.iso.org/standard/69978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/DTR 21756,https://www.iso.org/standard/71558.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/CD 21956,https://www.iso.org/standard/72290.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TR 22100-3:2016,https://www.iso.org/standard/62296.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 24500:2010,https://www.iso.org/standard/46170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/AWI 24500-1,https://www.iso.org/standard/72306.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/AWI 24500-2,https://www.iso.org/standard/72307.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 24501:2010,https://www.iso.org/standard/46171.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 24502:2010,https://www.iso.org/standard/46172.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 24503:2011,https://www.iso.org/standard/46173.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 24504:2014,https://www.iso.org/standard/57270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 24505:2016,https://www.iso.org/standard/63752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/CD 24507,https://www.iso.org/standard/66907.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/CD 25065,https://www.iso.org/standard/72189.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 26022:2010,https://www.iso.org/standard/43361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 26800:2011,https://www.iso.org/standard/42885.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO 27500:2016,https://www.iso.org/standard/64239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO/DIS 27501,https://www.iso.org/standard/64241.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 159/SC 1,https://www.iso.org/contents/data/committee/05/33/53352/x/catalogue/ -ISO 28802:2012,https://www.iso.org/standard/44964.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 28803:2012,https://www.iso.org/standard/44965.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO/IEC TR 29194:2015,https://www.iso.org/standard/45273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/TR 19083-1:2016,https://www.iso.org/standard/71510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 3941:2007,https://www.iso.org/standard/38025.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 2,https://www.iso.org/contents/data/committee/04/66/46646/x/catalogue/ -ISO 8421-1:1987,https://www.iso.org/standard/15590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO 8421-2:1987,https://www.iso.org/standard/15591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO 8421-6:1987,https://www.iso.org/standard/15595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO 8421-7:1987,https://www.iso.org/standard/15596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO 12828-1:2011,https://www.iso.org/standard/51825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 12828-2:2016,https://www.iso.org/standard/60189.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/TS 13447:2013,https://www.iso.org/standard/53799.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 13571:2012,https://www.iso.org/standard/56172.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/NP 13571-1,https://www.iso.org/standard/73217.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/TR 13571-2:2016,https://www.iso.org/standard/65996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 13943:2017,https://www.iso.org/standard/63321.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92,https://www.iso.org/contents/data/committee/05/04/50492/x/catalogue/ -ISO/TR 15656:2003,https://www.iso.org/standard/38528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 15657:2013,https://www.iso.org/standard/55658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 15658:2009,https://www.iso.org/standard/43580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 16405:2015,https://www.iso.org/standard/56693.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 16576:2017,https://www.iso.org/standard/57181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 16730-1:2015,https://www.iso.org/standard/62111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 16730-2:2013,https://www.iso.org/standard/62112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 16730-3:2013,https://www.iso.org/standard/53795.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 16730-4:2013,https://www.iso.org/standard/53796.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 16730-5:2013,https://www.iso.org/standard/53797.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 16732-1:2012,https://www.iso.org/standard/54789.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 16732-2:2012,https://www.iso.org/standard/50474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 16732-3:2013,https://www.iso.org/standard/55866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 16733-1:2015,https://www.iso.org/standard/63140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 16734:2006,https://www.iso.org/standard/37656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 16735:2006,https://www.iso.org/standard/37657.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 16736:2006,https://www.iso.org/standard/37658.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 16737:2012,https://www.iso.org/standard/51599.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 16738:2009,https://www.iso.org/standard/42887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/DIS 19677,https://www.iso.org/standard/65997.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/DTS 19677,https://www.iso.org/standard/74843.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/TS 19700:2016,https://www.iso.org/standard/70630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 19701:2013,https://www.iso.org/standard/51334.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 19702:2015,https://www.iso.org/standard/63169.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 19703:2010,https://www.iso.org/standard/51335.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/DIS 19703,https://www.iso.org/standard/70652.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 19706:2011,https://www.iso.org/standard/56864.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/NP 19706,https://www.iso.org/standard/73556.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/CD 21397,https://www.iso.org/standard/70860.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 22898:2006/WD Amd 1,https://www.iso.org/standard/65988.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 23932:2009,https://www.iso.org/standard/41932.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/DIS 23932-1,https://www.iso.org/standard/63933.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/DTR 23932-2,https://www.iso.org/standard/68891.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 24678-6:2016,https://www.iso.org/standard/42356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/DIS 24678-7,https://www.iso.org/standard/70459.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TS 24679:2011,https://www.iso.org/standard/42357.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/DIS 24679-1,https://www.iso.org/standard/72893.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 24679-2:2017,https://www.iso.org/standard/73055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 24679-3:2015,https://www.iso.org/standard/61172.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 24679-4:2017,https://www.iso.org/standard/63023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO/TR 24679-6:2017,https://www.iso.org/standard/63935.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 26367-1:2011,https://www.iso.org/standard/43529.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/DIS 26367-1,https://www.iso.org/standard/72536.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 26367-2:2017,https://www.iso.org/standard/50635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/TR 26368:2012,https://www.iso.org/standard/43530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 29473:2010,https://www.iso.org/standard/45494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TS 29761:2015,https://www.iso.org/standard/45659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 4,https://www.iso.org/contents/data/committee/05/05/50552/x/catalogue/ -ISO 29903:2012,https://www.iso.org/standard/45734.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 29904:2013,https://www.iso.org/standard/45735.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 3500:2005,https://www.iso.org/standard/35829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 3500:2005/Amd 1:2010,https://www.iso.org/standard/51576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 4642-1:2015,https://www.iso.org/standard/68031.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4642-2:2015,https://www.iso.org/standard/68032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6183:2009,https://www.iso.org/standard/50545.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 6183:2009/Amd 1:2017,https://www.iso.org/standard/72829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO/NP 6183,https://www.iso.org/standard/74513.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 7076-1:2012,https://www.iso.org/standard/55407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7076-2:2012,https://www.iso.org/standard/55408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7076-3:2016,https://www.iso.org/standard/63818.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7076-4:2016,https://www.iso.org/standard/63820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7076-5:2014,https://www.iso.org/standard/55717.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7076-6:2016,https://www.iso.org/standard/63735.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7165:2017,https://www.iso.org/standard/65987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 2,https://www.iso.org/contents/data/committee/04/66/46646/x/catalogue/ -ISO 7201-1:1989,https://www.iso.org/standard/13821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 7201-2:1991,https://www.iso.org/standard/13822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 7202:2012,https://www.iso.org/standard/52817.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO/DIS 7202,https://www.iso.org/standard/70451.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7203-1:2011,https://www.iso.org/standard/51960.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO/CD 7203-1,https://www.iso.org/standard/70452.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7203-2:2011,https://www.iso.org/standard/52818.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO/CD 7203-2,https://www.iso.org/standard/70453.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 7203-3:2011,https://www.iso.org/standard/52819.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO/CD 7203-3,https://www.iso.org/standard/70454.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 21/SC 6,https://www.iso.org/contents/data/committee/04/66/46692/x/catalogue/ -ISO 11601:2017,https://www.iso.org/standard/65986.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 2,https://www.iso.org/contents/data/committee/04/66/46646/x/catalogue/ -ISO/TS 11602-1:2010,https://www.iso.org/standard/44782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 2,https://www.iso.org/contents/data/committee/04/66/46646/x/catalogue/ -ISO/TS 11602-2:2010,https://www.iso.org/standard/44783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 2,https://www.iso.org/contents/data/committee/04/66/46646/x/catalogue/ -ISO/TS 12854:2009,https://www.iso.org/standard/52010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-1:2015,https://www.iso.org/standard/55340.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-5:2016,https://www.iso.org/standard/55342.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-8:2016,https://www.iso.org/standard/55344.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-9:2016,https://www.iso.org/standard/55345.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-10:2016,https://www.iso.org/standard/55346.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-11:2016,https://www.iso.org/standard/55347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-12:2015,https://www.iso.org/standard/55348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-13:2015,https://www.iso.org/standard/55350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-14:2015,https://www.iso.org/standard/55349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14520-15:2015,https://www.iso.org/standard/55351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 14557:2002,https://www.iso.org/standard/37067.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 14557:2002/Amd 1:2007,https://www.iso.org/standard/43817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 15371:2015,https://www.iso.org/standard/68559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 15779:2011,https://www.iso.org/standard/52016.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 16003:2008,https://www.iso.org/standard/44471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 16073:2011,https://www.iso.org/standard/37696.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/CD 16073,https://www.iso.org/standard/72717.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/NP 16073-1,https://www.iso.org/standard/74209.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/NP 16073-2,https://www.iso.org/standard/74210.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 16852:2016,https://www.iso.org/standard/61649.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21,https://www.iso.org/contents/data/committee/04/66/46628/x/catalogue/ -ISO/CD 20338,https://www.iso.org/standard/67742.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 21/SC 8,https://www.iso.org/contents/data/committee/04/67/46700/x/catalogue/ -ISO 5925-1:2007,https://www.iso.org/standard/35264.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 5925-1:2007/Amd 1:2015,https://www.iso.org/standard/63725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 5925-2:2006,https://www.iso.org/standard/39802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 6182-1:2014,https://www.iso.org/standard/56548.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-2:2012,https://www.iso.org/standard/55812.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-3:2012,https://www.iso.org/standard/55813.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/CD 6182-3,https://www.iso.org/standard/68538.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-4:1993,https://www.iso.org/standard/12435.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/DIS 6182-4,https://www.iso.org/standard/68536.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-5:2012,https://www.iso.org/standard/55875.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-6:2006,https://www.iso.org/standard/39631.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/DIS 6182-6.2,https://www.iso.org/standard/68757.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-7:2004,https://www.iso.org/standard/28964.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/DIS 6182-7,https://www.iso.org/standard/68758.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-8:2006,https://www.iso.org/standard/39632.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/DIS 6182-8,https://www.iso.org/standard/68535.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-9:2005,https://www.iso.org/standard/42117.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-10:2014,https://www.iso.org/standard/56731.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-11:2003,https://www.iso.org/standard/31663.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/DIS 6182-11,https://www.iso.org/standard/68537.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-12:2014,https://www.iso.org/standard/64257.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/DIS 6182-12,https://www.iso.org/standard/69493.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6182-13:2017,https://www.iso.org/standard/64230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/DIS 6182-14.2,https://www.iso.org/standard/64153.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/CD 6182-16,https://www.iso.org/standard/69618.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/CD 6182-17,https://www.iso.org/standard/69699.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO/CD 6182-18,https://www.iso.org/standard/71057.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 7240-1:2014,https://www.iso.org/standard/55316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-2:2017,https://www.iso.org/standard/68437.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-3:2010,https://www.iso.org/standard/53566.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO/NP 7240-3,https://www.iso.org/standard/72258.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-4:2017,https://www.iso.org/standard/68438.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-5:2012,https://www.iso.org/standard/55317.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO/PRF 7240-5,https://www.iso.org/standard/67759.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-6:2011,https://www.iso.org/standard/51600.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-7:2011,https://www.iso.org/standard/51166.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO/PRF 7240-7,https://www.iso.org/standard/68583.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-8:2014,https://www.iso.org/standard/60829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO/TS 7240-9:2012,https://www.iso.org/standard/55318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-10:2012,https://www.iso.org/standard/57473.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-11:2011,https://www.iso.org/standard/55319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-12:2014,https://www.iso.org/standard/62764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-13:2005,https://www.iso.org/standard/38946.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-14:2013,https://www.iso.org/standard/57982.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-15:2014,https://www.iso.org/standard/63053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-16:2007,https://www.iso.org/standard/42978.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-17:2009,https://www.iso.org/standard/51209.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO/NP 7240-17,https://www.iso.org/standard/69463.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-18:2017,https://www.iso.org/standard/69508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-19:2007,https://www.iso.org/standard/42979.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-20:2010,https://www.iso.org/standard/50806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-21:2005,https://www.iso.org/standard/40170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-22:2017,https://www.iso.org/standard/68991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-23:2013,https://www.iso.org/standard/54400.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-24:2016,https://www.iso.org/standard/69879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-25:2010,https://www.iso.org/standard/51212.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-27:2009,https://www.iso.org/standard/44133.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO/FDIS 7240-27,https://www.iso.org/standard/67746.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 7240-28:2014,https://www.iso.org/standard/61949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO/TS 7240-29:2017,https://www.iso.org/standard/72262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 12239:2010,https://www.iso.org/standard/55265.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO/NP 12239,https://www.iso.org/standard/74519.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 14186:2013,https://www.iso.org/standard/54485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 16437:2012,https://www.iso.org/standard/56746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/TR 17755:2014,https://www.iso.org/standard/60469.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92,https://www.iso.org/contents/data/committee/05/04/50492/x/catalogue/ -ISO/NP TR 17755-1,https://www.iso.org/standard/72998.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 92,https://www.iso.org/contents/data/committee/05/04/50492/x/catalogue/ -ISO/DIS 17755-2,https://www.iso.org/standard/69440.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 92,https://www.iso.org/contents/data/committee/05/04/50492/x/catalogue/ -ISO 19891-1:2017,https://www.iso.org/standard/71641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 21927-1:2008,https://www.iso.org/standard/40512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 21927-2:2006,https://www.iso.org/standard/40513.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 21927-2:2006/Amd 1:2010,https://www.iso.org/standard/53775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO/DIS 21927-2,https://www.iso.org/standard/70998.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 21927-3:2006,https://www.iso.org/standard/40514.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 21927-3:2006/Amd 1:2010,https://www.iso.org/standard/53774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO/DIS 21927-3,https://www.iso.org/standard/70999.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO/DIS 21927-4,https://www.iso.org/standard/71089.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO/DIS 21927-5,https://www.iso.org/standard/71090.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 21927-7:2017,https://www.iso.org/standard/45739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 21927-8:2017,https://www.iso.org/standard/62783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 21927-9:2012,https://www.iso.org/standard/53776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 21927-10:2011,https://www.iso.org/standard/53777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 21/SC 11,https://www.iso.org/contents/data/committee/31/43/314324/x/catalogue/ -ISO 340:2013,https://www.iso.org/standard/61039.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 871:2006,https://www.iso.org/standard/40775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 3582:2000,https://www.iso.org/standard/2202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3582:2000/Amd 1:2007,https://www.iso.org/standard/43718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3795:1989,https://www.iso.org/standard/9328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 4589-1:2017,https://www.iso.org/standard/60785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 4589-2:2017,https://www.iso.org/standard/60786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 4589-3:2017,https://www.iso.org/standard/60787.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 4880:1997,https://www.iso.org/standard/24009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 5659-2:2017,https://www.iso.org/standard/65243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 6940:2004,https://www.iso.org/standard/35665.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 6941:2003,https://www.iso.org/standard/35667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 7176-16:2012,https://www.iso.org/standard/40992.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 8030:2014,https://www.iso.org/standard/62580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8191-1:1987,https://www.iso.org/standard/15282.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 8191-2:1988,https://www.iso.org/standard/15283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 9239-1:2010,https://www.iso.org/standard/45781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 9239-2:2002,https://www.iso.org/standard/27181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 9240:1992,https://www.iso.org/standard/16872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9772:2012,https://www.iso.org/standard/54778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 9773:1998,https://www.iso.org/standard/26822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 9773:1998/Amd 1:2003,https://www.iso.org/standard/34807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 10047:1993,https://www.iso.org/standard/18012.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DTR 10093,https://www.iso.org/standard/75298.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/TR 10093:2017,https://www.iso.org/standard/67762.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 10528:1995,https://www.iso.org/standard/18597.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 10840:2008,https://www.iso.org/standard/41636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 11907-1:1998,https://www.iso.org/standard/22158.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/CD 11907-1,https://www.iso.org/standard/65244.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 11907-2:1995,https://www.iso.org/standard/20405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 11907-3:1998,https://www.iso.org/standard/20406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 11907-4:1998,https://www.iso.org/standard/24920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 12136:2011,https://www.iso.org/standard/51237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12138:2017,https://www.iso.org/standard/65147.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/TR 12470-1:2017,https://www.iso.org/standard/65497.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 12470-2:2017,https://www.iso.org/standard/65498.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 12863:2010,https://www.iso.org/standard/52074.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12863:2010/Amd 1:2016,https://www.iso.org/standard/69778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12863:2010/Cor 1:2011,https://www.iso.org/standard/58040.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12952-1:2010,https://www.iso.org/standard/46259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 12952-2:2010,https://www.iso.org/standard/55986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 12992:2017,https://www.iso.org/standard/65245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 13774:1998,https://www.iso.org/standard/22512.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 14624-1:2003,https://www.iso.org/standard/28953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-2:2003,https://www.iso.org/standard/28954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-4:2003,https://www.iso.org/standard/28956.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 14624-4,https://www.iso.org/standard/71598.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14696:2009,https://www.iso.org/standard/40903.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14934-1:2010,https://www.iso.org/standard/46058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14934-2:2013,https://www.iso.org/standard/55659.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14934-3:2012,https://www.iso.org/standard/53697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14934-4:2014,https://www.iso.org/standard/60967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 15029-1:1999,https://www.iso.org/standard/26260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/FDIS 15029-2,https://www.iso.org/standard/66950.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TS 15029-2:2012,https://www.iso.org/standard/59967.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TR 15655:2003,https://www.iso.org/standard/37516.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/WD TR 15655,https://www.iso.org/standard/63506.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 15791-1:2014,https://www.iso.org/standard/50594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/TS 15791-2:2017,https://www.iso.org/standard/63435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/TS 16697:2012,https://www.iso.org/standard/57450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/NP TR 17252,https://www.iso.org/standard/67884.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 17252:2008,https://www.iso.org/standard/44692.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TS 17431:2006,https://www.iso.org/standard/43919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 17554:2014,https://www.iso.org/standard/55678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/PRF TS 19021,https://www.iso.org/standard/72541.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 21367:2007,https://www.iso.org/standard/34492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 24473:2008,https://www.iso.org/standard/42247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 25762:2009,https://www.iso.org/standard/43211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 30021:2013,https://www.iso.org/standard/57863.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -IEC 60695-11-10:1999,https://www.iso.org/standard/26271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -IEC 60695-11-10:1999/Amd 1:2003,https://www.iso.org/standard/34808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -IEC 60695-11-20:1999,https://www.iso.org/standard/26272.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -IEC 60695-11-20:1999/Amd 1:2003,https://www.iso.org/standard/34809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 834-1:1999,https://www.iso.org/standard/2576.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-1:1999/Amd 1:2012,https://www.iso.org/standard/54878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 834-2:2009,https://www.iso.org/standard/51800.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 834-3:2012,https://www.iso.org/standard/53956.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-4:2000,https://www.iso.org/standard/21812.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-5:2000,https://www.iso.org/standard/30319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-6:2000,https://www.iso.org/standard/30320.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-7:2000,https://www.iso.org/standard/30323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-8:2002,https://www.iso.org/standard/30325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-8:2002/Cor 1:2009,https://www.iso.org/standard/53609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-9:2003,https://www.iso.org/standard/30326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-9:2003/Cor 1:2009,https://www.iso.org/standard/53550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-10:2014,https://www.iso.org/standard/57577.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-11:2014,https://www.iso.org/standard/57595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 834-12:2012,https://www.iso.org/standard/55660.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/CD 834-13,https://www.iso.org/standard/66439.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/CD 834-14,https://www.iso.org/standard/70811.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 1182:2010,https://www.iso.org/standard/45779.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/CD 1182,https://www.iso.org/standard/70178.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 1716:2010,https://www.iso.org/standard/45780.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/FDIS 1716,https://www.iso.org/standard/70177.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 3008:2007,https://www.iso.org/standard/45472.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/CD 3008-1,https://www.iso.org/standard/73900.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 3008-2:2017,https://www.iso.org/standard/69092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 3008-3:2016,https://www.iso.org/standard/66756.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 3009:2003,https://www.iso.org/standard/37415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TS 3814:2014,https://www.iso.org/standard/55976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 5657:1997,https://www.iso.org/standard/22128.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TS 5658-1:2006,https://www.iso.org/standard/36962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 5658-2:2006,https://www.iso.org/standard/36963.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 5658-2:2006/Amd 1:2011,https://www.iso.org/standard/54327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 5658-4:2001,https://www.iso.org/standard/24934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 5660-1:2015,https://www.iso.org/standard/57957.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TS 5660-3:2012,https://www.iso.org/standard/54583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TS 5660-4:2016,https://www.iso.org/standard/63325.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/CD 5660-5,https://www.iso.org/standard/71346.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 5925-1:2007,https://www.iso.org/standard/35264.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 5925-1:2007/Amd 1:2015,https://www.iso.org/standard/63725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 5925-2:2006,https://www.iso.org/standard/39802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 6944-1:2008,https://www.iso.org/standard/50385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 6944-1:2008/Amd 1:2015,https://www.iso.org/standard/63038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 6944-2:2009,https://www.iso.org/standard/43424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 9705-1:2016,https://www.iso.org/standard/59895.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 9705-2:2001,https://www.iso.org/standard/24937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 10294-1:1996,https://www.iso.org/standard/18336.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-1:1996/Amd 1:2014,https://www.iso.org/standard/66350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-2:1999,https://www.iso.org/standard/18337.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-3:1999,https://www.iso.org/standard/18338.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-4:2001,https://www.iso.org/standard/29925.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-4:2001/Amd 1:2014,https://www.iso.org/standard/66351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-5:2005,https://www.iso.org/standard/37675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10295-1:2007,https://www.iso.org/standard/45503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10295-2:2009,https://www.iso.org/standard/50254.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10295-2:2009/Cor 1:2009,https://www.iso.org/standard/54027.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 10295-3:2012,https://www.iso.org/standard/50719.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 11696-1:1999,https://www.iso.org/standard/32105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 11696-2:1999,https://www.iso.org/standard/24935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 11925-1:1999,https://www.iso.org/standard/2478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 11925-2:2010,https://www.iso.org/standard/45782.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 11925-2:2010/Cor 1:2011,https://www.iso.org/standard/57951.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/CD 11925-2,https://www.iso.org/standard/71204.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 11925-3:1997,https://www.iso.org/standard/21805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 11925-3:1997/Cor 1:1998,https://www.iso.org/standard/30336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12136:2011,https://www.iso.org/standard/51237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12468-1:2013,https://www.iso.org/standard/59885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 12468-2:2013,https://www.iso.org/standard/61317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 12468-3:2014,https://www.iso.org/standard/52439.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 12470-1:2017,https://www.iso.org/standard/65497.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 12470-2:2017,https://www.iso.org/standard/65498.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 12471:2004,https://www.iso.org/standard/37515.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 12472:2003,https://www.iso.org/standard/37626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 12949:2011,https://www.iso.org/standard/52250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 13784-1:2014,https://www.iso.org/standard/53738.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 13784-2:2002,https://www.iso.org/standard/30292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 13785-1:2002,https://www.iso.org/standard/27183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 13785-2:2002,https://www.iso.org/standard/22928.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/NP 13785-2,https://www.iso.org/standard/72321.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14696:2009,https://www.iso.org/standard/40903.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14697:2007,https://www.iso.org/standard/40902.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14934-1:2010,https://www.iso.org/standard/46058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14934-2:2013,https://www.iso.org/standard/55659.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14934-3:2012,https://www.iso.org/standard/53697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 14934-4:2014,https://www.iso.org/standard/60967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/NP TR 17252,https://www.iso.org/standard/67884.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 17252:2008,https://www.iso.org/standard/44692.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TS 17431:2006,https://www.iso.org/standard/43919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 17554:2014,https://www.iso.org/standard/55678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 20632:2008,https://www.iso.org/standard/39572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 20902-1,https://www.iso.org/standard/69412.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/DTR 21721,https://www.iso.org/standard/71492.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/DIS 21843,https://www.iso.org/standard/71959.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/DIS 21925-1,https://www.iso.org/standard/72082.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TS 22269:2005,https://www.iso.org/standard/34933.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/TR 22898:2006/WD Amd 1,https://www.iso.org/standard/65988.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 22899-1:2007,https://www.iso.org/standard/39750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 22899-2:2013,https://www.iso.org/standard/56733.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 24473:2008,https://www.iso.org/standard/42247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 13344:2015,https://www.iso.org/standard/68029.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 15928-4:2017,https://www.iso.org/standard/72465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 16312-1:2016,https://www.iso.org/standard/70342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO/TR 16312-2:2007,https://www.iso.org/standard/42993.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 27368:2008,https://www.iso.org/standard/44127.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 3,https://www.iso.org/contents/data/committee/05/05/50540/x/catalogue/ -ISO 6184-1:1985,https://www.iso.org/standard/12438.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6184-2:1985,https://www.iso.org/standard/12439.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6184-3:1985,https://www.iso.org/standard/12440.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 6184-4:1985,https://www.iso.org/standard/12441.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 21/SC 5,https://www.iso.org/contents/data/committee/04/66/46676/x/catalogue/ -ISO 4126-1:2013,https://www.iso.org/standard/50826.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-1:2013/Amd 1:2016,https://www.iso.org/standard/70107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-2:2003,https://www.iso.org/standard/34605.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO/DIS 4126-2,https://www.iso.org/standard/65062.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-3:2006,https://www.iso.org/standard/34203.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO/CD 4126-3,https://www.iso.org/standard/69646.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-4:2013,https://www.iso.org/standard/50827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-5:2013,https://www.iso.org/standard/50828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-5:2013/Amd 1:2016,https://www.iso.org/standard/70108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-6:2014,https://www.iso.org/standard/54303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-7:2013,https://www.iso.org/standard/50829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-7:2013/Amd 1:2016,https://www.iso.org/standard/70109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-9:2008,https://www.iso.org/standard/35393.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 4126-10:2010,https://www.iso.org/standard/45959.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 185,https://www.iso.org/contents/data/committee/05/42/54204/x/catalogue/ -ISO 361:1975,https://www.iso.org/standard/4327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 2889:2010,https://www.iso.org/standard/40347.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 2919:2012,https://www.iso.org/standard/54441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 3925:2014,https://www.iso.org/standard/60058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 6962:2004,https://www.iso.org/standard/39739.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 7212:1986,https://www.iso.org/standard/13847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 7503-1:2016,https://www.iso.org/standard/60522.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 7503-2:2016,https://www.iso.org/standard/60056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 7503-3:2016,https://www.iso.org/standard/61532.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 8194:1987,https://www.iso.org/standard/15286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 8690:1988,https://www.iso.org/standard/16094.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 8690,https://www.iso.org/standard/74178.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 9271:1992,https://www.iso.org/standard/16921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 9404-1:1991,https://www.iso.org/standard/17102.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 9697:2015,https://www.iso.org/standard/63382.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 9697,https://www.iso.org/standard/72374.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 9698:2010,https://www.iso.org/standard/51944.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 9698,https://www.iso.org/standard/69649.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 9978:1992,https://www.iso.org/standard/17886.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/NP 9978,https://www.iso.org/standard/70598.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 10648-1:1997,https://www.iso.org/standard/2614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 10648-2:1994,https://www.iso.org/standard/20483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 10704:2009,https://www.iso.org/standard/46063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 10704,https://www.iso.org/standard/70597.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 11932:1996,https://www.iso.org/standard/20482.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 11933-1:1997,https://www.iso.org/standard/2626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11933-2:1997,https://www.iso.org/standard/2606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11933-3:1998,https://www.iso.org/standard/2610.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11933-4:2001,https://www.iso.org/standard/32145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11933-5:2001,https://www.iso.org/standard/32146.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 12749-2:2013,https://www.iso.org/standard/59404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 12749-3:2015,https://www.iso.org/standard/61019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 12749-4:2015,https://www.iso.org/standard/62886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 12749-5,https://www.iso.org/standard/67429.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 12807:1996,https://www.iso.org/standard/2496.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/FDIS 12807,https://www.iso.org/standard/50162.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 13164-1:2013,https://www.iso.org/standard/53405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-2:2013,https://www.iso.org/standard/56108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-3:2013,https://www.iso.org/standard/56109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-4:2015,https://www.iso.org/standard/62424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13166:2014,https://www.iso.org/standard/59209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13168:2015,https://www.iso.org/standard/53409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13304-1:2013,https://www.iso.org/standard/53662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 13304-2,https://www.iso.org/standard/66891.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 14146:2000,https://www.iso.org/standard/20876.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/FDIS 14146,https://www.iso.org/standard/66894.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 14152:2001,https://www.iso.org/standard/33941.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 14152:2001/Cor 1:2002,https://www.iso.org/standard/36959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 15080:2001,https://www.iso.org/standard/26396.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/NP 15080,https://www.iso.org/standard/74179.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 15382:2015,https://www.iso.org/standard/61582.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 15690:2013,https://www.iso.org/standard/55521.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 16637:2016,https://www.iso.org/standard/57343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 16639:2017,https://www.iso.org/standard/57345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 16645:2016,https://www.iso.org/standard/57351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 17099:2014,https://www.iso.org/standard/59141.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 17874-1:2010,https://www.iso.org/standard/52156.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 17874-2:2004,https://www.iso.org/standard/36507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 17874-3:2011,https://www.iso.org/standard/36508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 17874-4:2006,https://www.iso.org/standard/36509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 17874-5:2007,https://www.iso.org/standard/36510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/TS 18090-1:2015,https://www.iso.org/standard/61352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18310-1:2017,https://www.iso.org/standard/62101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18417:2017,https://www.iso.org/standard/62419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 19238:2014,https://www.iso.org/standard/52157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/FDIS 19461-1,https://www.iso.org/standard/64942.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 20031,https://www.iso.org/standard/66877.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 20042,https://www.iso.org/standard/66887.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 20046,https://www.iso.org/standard/66892.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 20553:2006,https://www.iso.org/standard/39545.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 20785-1:2012,https://www.iso.org/standard/55485.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 20785-2:2011,https://www.iso.org/standard/44177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 20785-3:2015,https://www.iso.org/standard/57348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 20785-4,https://www.iso.org/standard/66895.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 20899,https://www.iso.org/standard/69404.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 21243:2008,https://www.iso.org/standard/40088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 21482:2007,https://www.iso.org/standard/40264.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 21909-1:2015,https://www.iso.org/standard/61586.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 22127,https://www.iso.org/standard/72639.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 22188:2004,https://www.iso.org/standard/34902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 27048:2011,https://www.iso.org/standard/43976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 28057:2014,https://www.iso.org/standard/44482.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 28057,https://www.iso.org/standard/71211.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CIE 28077:2016,https://www.iso.org/standard/69651.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 28218:2010,https://www.iso.org/standard/40869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 29661:2012,https://www.iso.org/standard/45622.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 29661:2012/Amd 1:2015,https://www.iso.org/standard/66875.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 13274:2013,https://www.iso.org/standard/53591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 13274:2013/Cor 1:2014,https://www.iso.org/standard/65663.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 16103:2005,https://www.iso.org/standard/30133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 16106:2006,https://www.iso.org/standard/39762.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO/CD 16106,https://www.iso.org/standard/69053.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 16495:2013,https://www.iso.org/standard/56877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 16678:2014,https://www.iso.org/standard/57391.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO 18788:2015,https://www.iso.org/standard/63380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 292,https://www.iso.org/contents/data/committee/52/59/5259148/x/catalogue/ -ISO/IEC 20243:2015,https://www.iso.org/standard/67394.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20243-1,https://www.iso.org/standard/74399.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20243-2:2018,https://www.iso.org/standard/74400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 22076,https://www.iso.org/standard/72506.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 22448:2010,https://www.iso.org/standard/50566.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 7731:2003,https://www.iso.org/standard/33590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 8201:2017,https://www.iso.org/standard/67046.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 21/SC 3,https://www.iso.org/contents/data/committee/04/66/46656/x/catalogue/ -ISO 11428:1996,https://www.iso.org/standard/19368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 11429:1996,https://www.iso.org/standard/19369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 13475-1:1999,https://www.iso.org/standard/22074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 13475-2:2000,https://www.iso.org/standard/22823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 18639-1:2018,https://www.iso.org/standard/67124.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/CD 18639-2,https://www.iso.org/standard/67125.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 21924-1:2017,https://www.iso.org/standard/72209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO/TR 2801:2007,https://www.iso.org/standard/39087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 6529:2013,https://www.iso.org/standard/44800.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 6530:2005,https://www.iso.org/standard/38303.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 6942:2002,https://www.iso.org/standard/26327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 8194:1987,https://www.iso.org/standard/15286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 9150:1988,https://www.iso.org/standard/16747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 9151:2016,https://www.iso.org/standard/55326.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 9185:2007,https://www.iso.org/standard/41479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11393-1:1998,https://www.iso.org/standard/19335.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 11393-1,https://www.iso.org/standard/70748.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11393-2:1999,https://www.iso.org/standard/27273.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 11393-2,https://www.iso.org/standard/70749.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11393-5:2001,https://www.iso.org/standard/27272.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 11393-5,https://www.iso.org/standard/70752.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11393-6:2007,https://www.iso.org/standard/39397.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 11393-6,https://www.iso.org/standard/70753.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/TR 11610:2004,https://www.iso.org/standard/34638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11611:2015,https://www.iso.org/standard/57455.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/CD 11611,https://www.iso.org/standard/74040.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11612:2015,https://www.iso.org/standard/57457.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11613:2017,https://www.iso.org/standard/64815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 11999-1:2015,https://www.iso.org/standard/64017.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/TS 11999-2:2015,https://www.iso.org/standard/65537.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 11999-3:2015,https://www.iso.org/standard/64019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 11999-4:2015,https://www.iso.org/standard/64020.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 11999-5:2015,https://www.iso.org/standard/60192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 11999-6:2016,https://www.iso.org/standard/60193.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 11999-9:2016,https://www.iso.org/standard/60196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/CD 11999-10,https://www.iso.org/standard/72152.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 12127-1:2015,https://www.iso.org/standard/57456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 12127-2:2007,https://www.iso.org/standard/36867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13506-1:2017,https://www.iso.org/standard/63839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13506-2:2017,https://www.iso.org/standard/63840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13688:2013,https://www.iso.org/standard/51449.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13982-1:2004,https://www.iso.org/standard/40198.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13982-1:2004/Amd 1:2010,https://www.iso.org/standard/52539.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/CD 13982-1,https://www.iso.org/standard/68946.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13982-2:2004,https://www.iso.org/standard/35958.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13994:2005,https://www.iso.org/standard/39089.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13994:2005/Cor 1:2006,https://www.iso.org/standard/44959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13995:2000,https://www.iso.org/standard/22961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13996:1999,https://www.iso.org/standard/22959.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13997:1999,https://www.iso.org/standard/22960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13998:2003,https://www.iso.org/standard/29609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 14116:2015,https://www.iso.org/standard/57454.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 14460:1999,https://www.iso.org/standard/23530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 14877:2002,https://www.iso.org/standard/25151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 15025:2016,https://www.iso.org/standard/61739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 15027-1:2012,https://www.iso.org/standard/52164.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 15027-2:2012,https://www.iso.org/standard/52165.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 15027-3:2012,https://www.iso.org/standard/52166.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 15383:2001,https://www.iso.org/standard/26960.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 15384:2003,https://www.iso.org/standard/26961.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/FDIS 15384,https://www.iso.org/standard/67219.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 15538:2001,https://www.iso.org/standard/28153.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 16073:2011,https://www.iso.org/standard/37696.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/CD 16073,https://www.iso.org/standard/72717.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/NP 16073-1,https://www.iso.org/standard/74209.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/NP 16073-2,https://www.iso.org/standard/74210.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 16602:2007,https://www.iso.org/standard/45985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 16602:2007/Amd 1:2012,https://www.iso.org/standard/52940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 16603:2004,https://www.iso.org/standard/32247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 16604:2004,https://www.iso.org/standard/32248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17491-1:2012,https://www.iso.org/standard/52471.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17491-2:2012,https://www.iso.org/standard/52472.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/CD 17491-2,https://www.iso.org/standard/66418.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17491-3:2008,https://www.iso.org/standard/43518.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17491-4:2008,https://www.iso.org/standard/43519.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17491-4:2008/Amd 1:2016,https://www.iso.org/standard/63670.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17491-5:2013,https://www.iso.org/standard/55327.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17492:2003,https://www.iso.org/standard/30698.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17492:2003/Cor 1:2004,https://www.iso.org/standard/40327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 17492,https://www.iso.org/standard/61512.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 17493:2016,https://www.iso.org/standard/61513.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 17723-1,https://www.iso.org/standard/68421.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 18639-3:2018,https://www.iso.org/standard/67126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 18640-1,https://www.iso.org/standard/65016.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/FDIS 18640-2,https://www.iso.org/standard/65017.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/TR 19591:2018,https://www.iso.org/standard/65420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/CD 19912,https://www.iso.org/standard/66528.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 19918:2017,https://www.iso.org/standard/66549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 20471:2013,https://www.iso.org/standard/42816.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 20471:2013/Amd 1:2016,https://www.iso.org/standard/68825.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/CD TR 21808,https://www.iso.org/standard/73744.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/TR 21808:2009,https://www.iso.org/standard/40444.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/CD 21942,https://www.iso.org/standard/72255.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO 22488:2011,https://www.iso.org/standard/50232.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 22608:2004,https://www.iso.org/standard/35054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 22609:2004,https://www.iso.org/standard/35055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 22610:2006,https://www.iso.org/standard/35056.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/FDIS 22610,https://www.iso.org/standard/63671.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 22612:2005,https://www.iso.org/standard/35058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 27065:2017,https://www.iso.org/standard/65660.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 3873:1977,https://www.iso.org/standard/9468.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 1,https://www.iso.org/contents/data/committee/05/05/50582/x/catalogue/ -ISO 4007:2012,https://www.iso.org/standard/51352.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/DIS 4007,https://www.iso.org/standard/69599.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4849:1981,https://www.iso.org/standard/10832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4850:1979,https://www.iso.org/standard/10833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4851:1979,https://www.iso.org/standard/10834.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4852:1978,https://www.iso.org/standard/10835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4854:1981,https://www.iso.org/standard/10837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4855:1981,https://www.iso.org/standard/10838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4856:1982,https://www.iso.org/standard/10839.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 4869-1:1990,https://www.iso.org/standard/10850.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/FDIS 4869-1,https://www.iso.org/standard/65581.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 4869-2:1994,https://www.iso.org/standard/10851.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 4869-2:1994/Cor 1:2006,https://www.iso.org/standard/44791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/FDIS 4869-2,https://www.iso.org/standard/65582.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 4869-3:2007,https://www.iso.org/standard/38910.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 4869-5:2006,https://www.iso.org/standard/32305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 4869-6,https://www.iso.org/standard/30424.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 6161:1981,https://www.iso.org/standard/12407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 10256-1:2016,https://www.iso.org/standard/52303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10256-2:2016,https://www.iso.org/standard/61495.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10256-3:2016,https://www.iso.org/standard/61496.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10256-4:2016,https://www.iso.org/standard/61497.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10256-5:2017,https://www.iso.org/standard/65010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 12311:2013,https://www.iso.org/standard/51350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 12312-1:2013,https://www.iso.org/standard/51351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 12312-1:2013/Amd 1:2015,https://www.iso.org/standard/67151.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 12312-2:2015,https://www.iso.org/standard/59289.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 12609-1:2013,https://www.iso.org/standard/51550.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/NP 12609-1,https://www.iso.org/standard/72629.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 12609-2:2013,https://www.iso.org/standard/51551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 16321-1,https://www.iso.org/standard/62527.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 16321-2,https://www.iso.org/standard/69395.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 16321-3,https://www.iso.org/standard/69396.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 18526-1,https://www.iso.org/standard/62785.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 18526-2,https://www.iso.org/standard/62786.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 18526-3,https://www.iso.org/standard/62787.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 18526-4,https://www.iso.org/standard/69587.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 18527-1,https://www.iso.org/standard/62788.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 18527-2,https://www.iso.org/standard/62789.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/DIS 18639-5,https://www.iso.org/standard/67128.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/CD 19734,https://www.iso.org/standard/66193.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 21924-4:2017,https://www.iso.org/standard/72212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO/DTR 22463,https://www.iso.org/standard/73274.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 16900-1:2014,https://www.iso.org/standard/38803.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/CD 16900-1,https://www.iso.org/standard/73233.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-2:2017,https://www.iso.org/standard/72530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-3:2012,https://www.iso.org/standard/38876.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-4:2011,https://www.iso.org/standard/38877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-5:2016,https://www.iso.org/standard/52478.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-5:2016/DAmd 1,https://www.iso.org/standard/73289.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-6:2015,https://www.iso.org/standard/52479.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/AWI 16900-6,https://www.iso.org/standard/73620.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-7:2015,https://www.iso.org/standard/52480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-8:2015,https://www.iso.org/standard/52481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-9:2015,https://www.iso.org/standard/62298.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-10:2015,https://www.iso.org/standard/52483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-11:2013,https://www.iso.org/standard/52484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-12:2016,https://www.iso.org/standard/52485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-13:2015,https://www.iso.org/standard/62076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16900-14:2015,https://www.iso.org/standard/63137.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/CD 16900-14,https://www.iso.org/standard/73234.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16972:2010,https://www.iso.org/standard/38180.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/CD 16972,https://www.iso.org/standard/68425.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16973:2016,https://www.iso.org/standard/38181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16974:2011,https://www.iso.org/standard/51231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16975-1:2016,https://www.iso.org/standard/60853.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16975-2:2016,https://www.iso.org/standard/54605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 16975-3:2017,https://www.iso.org/standard/64513.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16976-1:2015,https://www.iso.org/standard/67530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16976-2:2015,https://www.iso.org/standard/67529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/DTS 16976-3,https://www.iso.org/standard/73209.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16976-3:2011,https://www.iso.org/standard/46005.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/DTS 16976-4,https://www.iso.org/standard/73210.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16976-4:2012,https://www.iso.org/standard/53361.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16976-5:2013,https://www.iso.org/standard/57985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16976-6:2014,https://www.iso.org/standard/61233.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/NP TS 16976-7,https://www.iso.org/standard/73621.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16976-7:2013,https://www.iso.org/standard/61234.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/TS 16976-8:2013,https://www.iso.org/standard/61235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO/WD 17420-1,https://www.iso.org/standard/69482.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 17420-3:2012,https://www.iso.org/standard/55788.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 94/SC 15,https://www.iso.org/contents/data/committee/29/10/291088/x/catalogue/ -ISO 23269-1:2008,https://www.iso.org/standard/50245.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 23269-2:2011,https://www.iso.org/standard/50233.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 23269-3:2011,https://www.iso.org/standard/50234.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 23269-4:2010,https://www.iso.org/standard/50235.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 374-1:2016,https://www.iso.org/standard/66421.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 374-1:2016/DAmd 1,https://www.iso.org/standard/74017.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 374-2,https://www.iso.org/standard/74229.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 374-4,https://www.iso.org/standard/74230.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 374-5:2016,https://www.iso.org/standard/66562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 10819:2013,https://www.iso.org/standard/46313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10819:2013/FDAmd 1,https://www.iso.org/standard/67657.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 11393-4:2003,https://www.iso.org/standard/27271.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 11393-4,https://www.iso.org/standard/70751.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11933-2:1997,https://www.iso.org/standard/2606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 13999-1:1999,https://www.iso.org/standard/23587.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13999-2:2003,https://www.iso.org/standard/34531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13999-3:2002,https://www.iso.org/standard/34532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 15383:2001,https://www.iso.org/standard/26960.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/DIS 18639-4,https://www.iso.org/standard/67127.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/DIS 18889,https://www.iso.org/standard/63673.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/CD 20320,https://www.iso.org/standard/67665.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 21420,https://www.iso.org/standard/69030.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 21924-2:2017,https://www.iso.org/standard/72210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-7:2017,https://www.iso.org/standard/72215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO/DIS 23388,https://www.iso.org/standard/73545.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 2023:1994/Cor 1:2001,https://www.iso.org/standard/36317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 4643:1992,https://www.iso.org/standard/10604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 5423:1992,https://www.iso.org/standard/11466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 11393-3:1999,https://www.iso.org/standard/27274.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/DIS 11393-3,https://www.iso.org/standard/70750.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13287:2012,https://www.iso.org/standard/50943.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO/NP 13287,https://www.iso.org/standard/74965.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 17249:2013,https://www.iso.org/standard/55768.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 18639-6:2018,https://www.iso.org/standard/67129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 14,https://www.iso.org/contents/data/committee/29/98/299803/x/catalogue/ -ISO/TR 18690:2012,https://www.iso.org/standard/53477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 20344:2011,https://www.iso.org/standard/51034.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 20345:2011,https://www.iso.org/standard/51036.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 20346:2014,https://www.iso.org/standard/61336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 20347:2012,https://www.iso.org/standard/51033.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 20349-1:2017,https://www.iso.org/standard/63446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 20349-2:2017,https://www.iso.org/standard/66220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 21924-2:2017,https://www.iso.org/standard/72210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-7:2017,https://www.iso.org/standard/72215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO/DIS 22568-1,https://www.iso.org/standard/71628.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO/DIS 22568-2,https://www.iso.org/standard/71629.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO/DIS 22568-3,https://www.iso.org/standard/71630.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO/DIS 22568-4,https://www.iso.org/standard/71631.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 10333-1:2000,https://www.iso.org/standard/27275.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 10333-1:2000/Amd 1:2002,https://www.iso.org/standard/35154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 10333-2:2000,https://www.iso.org/standard/27276.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 10333-3:2000,https://www.iso.org/standard/33159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 10333-4:2002,https://www.iso.org/standard/33821.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 10333-5:2001,https://www.iso.org/standard/27279.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 10333-6:2004,https://www.iso.org/standard/31204.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 14567:1999,https://www.iso.org/standard/23857.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 16024:2005,https://www.iso.org/standard/29348.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 22159:2007,https://www.iso.org/standard/36152.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 22846-1:2003,https://www.iso.org/standard/35155.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 22846-2:2012,https://www.iso.org/standard/51354.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 94/SC 4,https://www.iso.org/contents/data/committee/05/06/50600/x/catalogue/ -ISO 12402-2:2006,https://www.iso.org/standard/41379.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-2:2006/Amd 1:2010,https://www.iso.org/standard/51023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-2.2,https://www.iso.org/standard/60334.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-3:2006,https://www.iso.org/standard/41380.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-3:2006/Amd 1:2010,https://www.iso.org/standard/51215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-3.2,https://www.iso.org/standard/56683.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-4:2006,https://www.iso.org/standard/41381.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-4:2006/Amd 1:2010,https://www.iso.org/standard/51216.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-4.2,https://www.iso.org/standard/56684.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-5:2006,https://www.iso.org/standard/41382.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-5:2006/Amd 1:2010,https://www.iso.org/standard/51217.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-5:2006/Cor 1:2006,https://www.iso.org/standard/45338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-5.2,https://www.iso.org/standard/56685.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-6:2006,https://www.iso.org/standard/40776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-6:2006/Amd 1:2010,https://www.iso.org/standard/51218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-6,https://www.iso.org/standard/56686.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-7:2006,https://www.iso.org/standard/40716.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-7:2006/Amd 1:2011,https://www.iso.org/standard/51219.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-7.2,https://www.iso.org/standard/56687.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-8:2006,https://www.iso.org/standard/41383.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-8:2006/Amd 1:2011,https://www.iso.org/standard/51220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-8.2,https://www.iso.org/standard/60335.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-9:2006,https://www.iso.org/standard/41987.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-9:2006/Amd 1:2011,https://www.iso.org/standard/51221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-9.2,https://www.iso.org/standard/56688.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 12402-10:2006,https://www.iso.org/standard/40773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO/DIS 12402-10,https://www.iso.org/standard/60336.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 18079-1,https://www.iso.org/standard/61307.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-3,https://www.iso.org/standard/61309.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/CD 19912,https://www.iso.org/standard/66528.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 11810:2015,https://www.iso.org/standard/65248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 13999-1:1999,https://www.iso.org/standard/23587.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13999-2:2003,https://www.iso.org/standard/34531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 13999-3:2002,https://www.iso.org/standard/34532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 21924-3:2017,https://www.iso.org/standard/72211.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-5:2017,https://www.iso.org/standard/72213.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-6:2017,https://www.iso.org/standard/72214.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 3:1973,https://www.iso.org/standard/3564.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 19,https://www.iso.org/contents/data/committee/04/64/46482/x/catalogue/ -ISO 17:1973,https://www.iso.org/standard/3602.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 19,https://www.iso.org/contents/data/committee/04/64/46482/x/catalogue/ -ISO/IEC Guide 98-1:2009,https://www.iso.org/standard/46383.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC CD Guide 98-3,https://www.iso.org/standard/67642.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 98-3:2008,https://www.iso.org/standard/50461.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 98-3:2008/Suppl 1:2008,https://www.iso.org/standard/50462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 98-3:2008/Suppl 1:2008/Cor 1:2009,https://www.iso.org/standard/54350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 98-3:2008/Suppl 2:2011,https://www.iso.org/standard/50463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 98-4:2012,https://www.iso.org/standard/50465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC CD Guide 98-5,https://www.iso.org/standard/68374.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 99:2007,https://www.iso.org/standard/45324.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 497:1973,https://www.iso.org/standard/4548.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 19,https://www.iso.org/contents/data/committee/04/64/46482/x/catalogue/ -ISO 2533:1975,https://www.iso.org/standard/7472.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2533:1975/Add 1:1985,https://www.iso.org/standard/7473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2533:1975/Add 2:1997,https://www.iso.org/standard/7474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 5479:1997,https://www.iso.org/standard/22506.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO 5725-1:1994,https://www.iso.org/standard/11833.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-1:1994/Cor 1:1998,https://www.iso.org/standard/29779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/AWI 5725-1,https://www.iso.org/standard/69418.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-2:1994,https://www.iso.org/standard/11834.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-2:1994/Cor 1:2002,https://www.iso.org/standard/36202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/AWI 5725-2,https://www.iso.org/standard/69419.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-3:1994,https://www.iso.org/standard/11835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-3:1994/Cor 1:2001,https://www.iso.org/standard/36203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-4:1994,https://www.iso.org/standard/11836.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/CD 5725-4,https://www.iso.org/standard/69421.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-5:1998,https://www.iso.org/standard/1384.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-5:1998/Cor 1:2005,https://www.iso.org/standard/42913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-6:1994,https://www.iso.org/standard/11837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 5725-6:1994/Cor 1:2001,https://www.iso.org/standard/36204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 10012:2003,https://www.iso.org/standard/26033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 176/SC 3,https://www.iso.org/contents/data/committee/05/39/53934/x/catalogue/ -ISO 11095:1996,https://www.iso.org/standard/1060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-1:1997,https://www.iso.org/standard/1096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-1:1997/Cor 1:2003,https://www.iso.org/standard/39580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-2:2000,https://www.iso.org/standard/20186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-2:2000/Cor 1:2007,https://www.iso.org/standard/50401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-3:2003,https://www.iso.org/standard/34410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-4:2003,https://www.iso.org/standard/34411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-5:2008,https://www.iso.org/standard/42000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-5:2008/Amd 1:2017,https://www.iso.org/standard/69645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-6:2013,https://www.iso.org/standard/53677.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 11843-7:2012,https://www.iso.org/standard/53678.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/DIS 11843-7,https://www.iso.org/standard/67017.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/DIS 16269-3,https://www.iso.org/standard/74177.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 69,https://www.iso.org/contents/data/committee/04/97/49742/x/catalogue/ -ISO/TS 17503:2015,https://www.iso.org/standard/59900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/TR 21074:2016,https://www.iso.org/standard/69823.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 21748:2017,https://www.iso.org/standard/71615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/TS 21749:2005,https://www.iso.org/standard/34687.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/TR 22971:2005,https://www.iso.org/standard/39780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO/TS 23165:2006,https://www.iso.org/standard/24236.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DTS 28038,https://www.iso.org/standard/66349.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 69/SC 6,https://www.iso.org/contents/data/committee/04/98/49808/x/catalogue/ -ISO 1:2016,https://www.iso.org/standard/67630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1119:2011,https://www.iso.org/standard/54835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 2538-1:2014,https://www.iso.org/standard/54836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 2538-2:2014,https://www.iso.org/standard/56783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TS 14253-4:2010,https://www.iso.org/standard/52982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TR 16015:2003,https://www.iso.org/standard/29436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TS 17865:2016,https://www.iso.org/standard/60839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DIS 21204,https://www.iso.org/standard/70084.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 286-1:2010,https://www.iso.org/standard/45975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 286-1:2010/Cor 1:2013,https://www.iso.org/standard/63968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 286-2:2010,https://www.iso.org/standard/54915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 286-2:2010/Cor 1:2013,https://www.iso.org/standard/63969.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1101:2012/Cor 1:2013,https://www.iso.org/standard/63512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1101:2017,https://www.iso.org/standard/66777.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1938-1:2015,https://www.iso.org/standard/41132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1938-2:2017,https://www.iso.org/standard/65583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 2768-1:1989,https://www.iso.org/standard/7748.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 2768-2:1989,https://www.iso.org/standard/7749.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 5458,https://www.iso.org/standard/65559.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 5458:1998,https://www.iso.org/standard/11507.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 5459:2011,https://www.iso.org/standard/40358.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DIS 5459.2,https://www.iso.org/standard/66832.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8062-1:2007,https://www.iso.org/standard/40494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TS 8062-2:2013,https://www.iso.org/standard/40496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8062-3:2007,https://www.iso.org/standard/40495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8062-3:2007/CD Amd 1,https://www.iso.org/standard/65450.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8062-3:2007/Cor 1:2009,https://www.iso.org/standard/52988.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8062-4:2017,https://www.iso.org/standard/60774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13920:1996,https://www.iso.org/standard/23313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14405-1:2016,https://www.iso.org/standard/65202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14405-2:2011,https://www.iso.org/standard/54013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14405-2:2011/FDAmd 1,https://www.iso.org/standard/73409.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14405-3:2016,https://www.iso.org/standard/62308.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1302:2002,https://www.iso.org/standard/28089.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4287:1997,https://www.iso.org/standard/10132.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4287:1997/Amd 1:2009,https://www.iso.org/standard/44475.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4287:1997/Cor 1:1998,https://www.iso.org/standard/29874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4287:1997/Cor 2:2005,https://www.iso.org/standard/41861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4288:1996,https://www.iso.org/standard/2096.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4288:1996/Cor 1:1998,https://www.iso.org/standard/29875.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 4291:1985,https://www.iso.org/standard/10135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8785:1998,https://www.iso.org/standard/16210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12085:1996,https://www.iso.org/standard/20867.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12085:1996/Cor 1:1998,https://www.iso.org/standard/29877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12180-1:2011,https://www.iso.org/standard/53611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12180-2:2011,https://www.iso.org/standard/53612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12181-1:2011,https://www.iso.org/standard/53620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12181-2:2011,https://www.iso.org/standard/53621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12780-1:2011,https://www.iso.org/standard/53622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12780-2:2011,https://www.iso.org/standard/53623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12781-1:2011,https://www.iso.org/standard/53624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12781-2:2011,https://www.iso.org/standard/53625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13565-1:1996,https://www.iso.org/standard/22279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13565-1:1996/Cor 1:1998,https://www.iso.org/standard/29878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13565-2:1996,https://www.iso.org/standard/22280.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13565-2:1996/Cor 1:1998,https://www.iso.org/standard/29879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13565-3:1998,https://www.iso.org/standard/26280.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-1:2015,https://www.iso.org/standard/61375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-20:2015,https://www.iso.org/standard/61376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-21:2011,https://www.iso.org/standard/50176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-22:2015,https://www.iso.org/standard/61377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-28:2016,https://www.iso.org/standard/66241.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-29:2015,https://www.iso.org/standard/61378.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/CD 16610-29,https://www.iso.org/standard/70140.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-30:2015,https://www.iso.org/standard/62881.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-31:2016,https://www.iso.org/standard/66242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TS 16610-32:2009,https://www.iso.org/standard/42973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-40:2015,https://www.iso.org/standard/61379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-41:2015,https://www.iso.org/standard/61380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-49:2015,https://www.iso.org/standard/61381.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-60:2015,https://www.iso.org/standard/60812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-61:2015,https://www.iso.org/standard/60813.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/CD 16610-61,https://www.iso.org/standard/70141.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-71:2014,https://www.iso.org/standard/60159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16610-85:2013,https://www.iso.org/standard/60158.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-1:2016,https://www.iso.org/standard/46065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-2:2012,https://www.iso.org/standard/42785.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/NP 25178-2,https://www.iso.org/standard/74591.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-3:2012,https://www.iso.org/standard/42895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-6:2010,https://www.iso.org/standard/42896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-70:2014,https://www.iso.org/standard/57688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-71:2017,https://www.iso.org/standard/65558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-72:2017,https://www.iso.org/standard/62310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DIS 25178-600,https://www.iso.org/standard/67651.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-601:2010,https://www.iso.org/standard/42786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-602:2010,https://www.iso.org/standard/43920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-603:2013,https://www.iso.org/standard/61236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-604:2013,https://www.iso.org/standard/51381.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-605:2014,https://www.iso.org/standard/53975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-606:2015,https://www.iso.org/standard/59716.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DIS 25178-607,https://www.iso.org/standard/67652.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25178-701:2010,https://www.iso.org/standard/44474.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 463:2006,https://www.iso.org/standard/42802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 463:2006/Cor 1:2007,https://www.iso.org/standard/46107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 463:2006/Cor 2:2009,https://www.iso.org/standard/52987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 1502:1996,https://www.iso.org/standard/6092.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 3274:1996,https://www.iso.org/standard/1916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 3274:1996/Cor 1:1998,https://www.iso.org/standard/29873.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 3611:2010,https://www.iso.org/standard/45454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 3650:1998,https://www.iso.org/standard/1241.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 3650:1998/Cor 1:2008,https://www.iso.org/standard/52660.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 5436-1:2000,https://www.iso.org/standard/21978.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 5436-2:2012,https://www.iso.org/standard/61261.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 7863:1984,https://www.iso.org/standard/14790.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8512-1:1990,https://www.iso.org/standard/15736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 8512-2:1990,https://www.iso.org/standard/15737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 9493:2010,https://www.iso.org/standard/44708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-1:2000,https://www.iso.org/standard/18418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-1:2000/Cor 1:2002,https://www.iso.org/standard/37694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-2:2009,https://www.iso.org/standard/40954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-3:2000,https://www.iso.org/standard/22021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-4:2000,https://www.iso.org/standard/25893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-4:2000/Cor 1:2002,https://www.iso.org/standard/37695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-5:2010,https://www.iso.org/standard/40956.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/CD 10360-5,https://www.iso.org/standard/73431.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-6:2001,https://www.iso.org/standard/28095.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-6:2001/Cor 1:2007,https://www.iso.org/standard/45937.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-7:2011,https://www.iso.org/standard/43904.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-8:2013,https://www.iso.org/standard/54522.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-9:2013,https://www.iso.org/standard/54523.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-10:2016,https://www.iso.org/standard/56662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 10360-12:2016,https://www.iso.org/standard/63931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12179:2000,https://www.iso.org/standard/21119.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 12179:2000/Cor 1:2003,https://www.iso.org/standard/39419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/NP 12179,https://www.iso.org/standard/72758.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13102:2012,https://www.iso.org/standard/52821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13225:2012,https://www.iso.org/standard/42893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13385-1:2011,https://www.iso.org/standard/42799.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DIS 13385-1,https://www.iso.org/standard/71149.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 13385-2:2011,https://www.iso.org/standard/42801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14978:2006,https://www.iso.org/standard/42930.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14978:2006/Cor 1:2008,https://www.iso.org/standard/50992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DIS 14978,https://www.iso.org/standard/71148.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TS 15530-1:2013,https://www.iso.org/standard/38693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 15530-3:2011,https://www.iso.org/standard/53627.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/CD 15530-4,https://www.iso.org/standard/70143.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TS 15530-4:2008,https://www.iso.org/standard/38696.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 16239:2013,https://www.iso.org/standard/55989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 14253-1:2017,https://www.iso.org/standard/70137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14253-2:2011,https://www.iso.org/standard/53631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14253-2:2011/Cor 1:2013,https://www.iso.org/standard/63906.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14253-3:2011,https://www.iso.org/standard/53626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14253-5:2015,https://www.iso.org/standard/60160.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TR 14253-6:2012,https://www.iso.org/standard/60161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14406:2010,https://www.iso.org/standard/24235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 14638:2015,https://www.iso.org/standard/57054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 17450-1:2011,https://www.iso.org/standard/53628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 17450-2:2012,https://www.iso.org/standard/53629.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 17450-3:2016,https://www.iso.org/standard/62309.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 17450-4:2017,https://www.iso.org/standard/63147.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/TS 17863:2013,https://www.iso.org/standard/60838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 18391:2016,https://www.iso.org/standard/62361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DIS 20170,https://www.iso.org/standard/67205.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/PRF TS 21619,https://www.iso.org/standard/71250.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/CD 22081,https://www.iso.org/standard/72514.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 22432:2011,https://www.iso.org/standard/44709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/DTR 23276,https://www.iso.org/standard/75119.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO/CD 25178-73,https://www.iso.org/standard/67653.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 25378:2011,https://www.iso.org/standard/42897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 213,https://www.iso.org/contents/data/committee/05/49/54924/x/catalogue/ -ISO 384:2015,https://www.iso.org/standard/63918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 385:2005,https://www.iso.org/standard/38678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 387:1977,https://www.iso.org/standard/4371.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 648:2008,https://www.iso.org/standard/44142.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 649-1:1981,https://www.iso.org/standard/4781.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 649-2:1981,https://www.iso.org/standard/4782.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 650:1977,https://www.iso.org/standard/4783.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 835:2007,https://www.iso.org/standard/41794.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1042:1998,https://www.iso.org/standard/25484.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1768:1975,https://www.iso.org/standard/6401.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 1769:1975,https://www.iso.org/standard/6402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 3105:1994,https://www.iso.org/standard/8254.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3507:1999,https://www.iso.org/standard/29699.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO/TR 3666:1998,https://www.iso.org/standard/28607.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3819:2015,https://www.iso.org/standard/63919.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4787:2010,https://www.iso.org/standard/41807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4788:2005,https://www.iso.org/standard/38679.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4801:1979,https://www.iso.org/standard/10780.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4805:1982,https://www.iso.org/standard/10785.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 6706:1981,https://www.iso.org/standard/13146.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7056:1981,https://www.iso.org/standard/13622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7550:1985,https://www.iso.org/standard/14334.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7712:1983,https://www.iso.org/standard/14540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-1:2002,https://www.iso.org/standard/29726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-1:2002/Cor 1:2008,https://www.iso.org/standard/52855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-2:2002,https://www.iso.org/standard/29727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-2:2002/Cor 1:2008,https://www.iso.org/standard/52856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-3:2002,https://www.iso.org/standard/29728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-3:2002/Cor 1:2008,https://www.iso.org/standard/52857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-4:2002,https://www.iso.org/standard/29729.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-4:2002/Cor 1:2008,https://www.iso.org/standard/52858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-5:2002,https://www.iso.org/standard/29730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-5:2002/Cor 1:2008,https://www.iso.org/standard/52859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-6:2002,https://www.iso.org/standard/29731.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-6:2002/Cor 1:2008,https://www.iso.org/standard/52860.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-7:2005,https://www.iso.org/standard/29732.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 8655-7:2005/Cor 1:2008,https://www.iso.org/standard/52861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 15212-1:1998,https://www.iso.org/standard/28482.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 15212-1:1998/Cor 1:2008,https://www.iso.org/standard/52851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 15212-2:2002,https://www.iso.org/standard/25956.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO 15212-2:2002/Cor 1:2008,https://www.iso.org/standard/52852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48/SC 4,https://www.iso.org/contents/data/committee/04/89/48920/x/catalogue/ -ISO/TR 16153:2004,https://www.iso.org/standard/37767.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO/TR 20461:2000,https://www.iso.org/standard/34183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO/TR 20461:2000/Cor 1:2008,https://www.iso.org/standard/52847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 21413:2005,https://www.iso.org/standard/40365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 8,https://www.iso.org/contents/data/committee/05/17/51728/x/catalogue/ -ISO 17713-1:2007,https://www.iso.org/standard/31497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 2186:2007,https://www.iso.org/standard/38091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 2975-1:1974,https://www.iso.org/standard/8030.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 2975-2:1975,https://www.iso.org/standard/8031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 2975-3:1976,https://www.iso.org/standard/8032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 2975-6:1977,https://www.iso.org/standard/8033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 2975-7:1977,https://www.iso.org/standard/8034.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO/TR 3313,https://www.iso.org/standard/69223.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 3354:2008,https://www.iso.org/standard/50326.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 3966:2008,https://www.iso.org/standard/50626.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 4006:1991,https://www.iso.org/standard/9681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 4185:1980,https://www.iso.org/standard/9959.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 4185:1980/Cor 1:1993,https://www.iso.org/standard/22793.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 5167-1:2003,https://www.iso.org/standard/28064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 5167-2:2003,https://www.iso.org/standard/30190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 5167-3:2003,https://www.iso.org/standard/30191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 5167-4:2003,https://www.iso.org/standard/30192.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 5167-5:2016,https://www.iso.org/standard/62568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO/DIS 5167-6,https://www.iso.org/standard/68502.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 5168:2005,https://www.iso.org/standard/32199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 7066-2:1988,https://www.iso.org/standard/13637.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 7194:2008,https://www.iso.org/standard/50627.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 8316:1987,https://www.iso.org/standard/15439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 9300:2005,https://www.iso.org/standard/34272.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 9368-1:1990,https://www.iso.org/standard/17054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO/TR 9464:2008,https://www.iso.org/standard/40031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO/TR 9824:2007,https://www.iso.org/standard/44741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 9951:1993,https://www.iso.org/standard/17849.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 9951:1993/Cor 1:1994,https://www.iso.org/standard/24703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 10790:2015,https://www.iso.org/standard/57407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO/TR 11583:2012,https://www.iso.org/standard/50609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 11631:1998,https://www.iso.org/standard/19562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO/NP 11631,https://www.iso.org/standard/70268.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 30,https://www.iso.org/contents/data/committee/04/75/47576/x/catalogue/ -ISO 12242:2012,https://www.iso.org/standard/51289.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 12764:2017,https://www.iso.org/standard/64603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO/TR 12767:2007,https://www.iso.org/standard/40030.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 14164:1999,https://www.iso.org/standard/23777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 1,https://www.iso.org/contents/data/committee/05/27/52704/x/catalogue/ -ISO 14511:2001,https://www.iso.org/standard/24557.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO/TR 15377:2018,https://www.iso.org/standard/68740.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 2,https://www.iso.org/contents/data/committee/04/75/47592/x/catalogue/ -ISO 17089-1:2010,https://www.iso.org/standard/41235.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO/WD 17089-1,https://www.iso.org/standard/68342.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 17089-2:2012,https://www.iso.org/standard/41236.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 20456:2017,https://www.iso.org/standard/68092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 5,https://www.iso.org/contents/data/committee/04/76/47614/x/catalogue/ -ISO 748:2007,https://www.iso.org/standard/37573.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO/AWI 748,https://www.iso.org/standard/72754.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 772:2011,https://www.iso.org/standard/41035.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO/WD 772,https://www.iso.org/standard/73230.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 1070:1992,https://www.iso.org/standard/5564.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 1070:1992/Amd 1:1997,https://www.iso.org/standard/27608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO/DIS 1070,https://www.iso.org/standard/69287.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 1088:2007,https://www.iso.org/standard/37096.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 1100-2:2010,https://www.iso.org/standard/42207.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 1438:2017,https://www.iso.org/standard/66463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 2425:2010,https://www.iso.org/standard/42208.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 2537:2007,https://www.iso.org/standard/37098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 3454:2008,https://www.iso.org/standard/41072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 3455:2007,https://www.iso.org/standard/37099.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO/AWI 3455,https://www.iso.org/standard/72298.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO/TS 3716:2006,https://www.iso.org/standard/42863.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 3846:2008,https://www.iso.org/standard/38065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 4359:2013,https://www.iso.org/standard/51417.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 4359:2013/Amd 1:2017,https://www.iso.org/standard/71169.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 4360:2008,https://www.iso.org/standard/40932.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO/NP 4360,https://www.iso.org/standard/70915.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 4362:1999,https://www.iso.org/standard/26323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 4363:2002,https://www.iso.org/standard/31797.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 4364:1997,https://www.iso.org/standard/10242.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 4364:1997/Cor 1:2000,https://www.iso.org/standard/34340.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 4365:2005,https://www.iso.org/standard/36315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 4366:2007,https://www.iso.org/standard/37097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 4369:1979,https://www.iso.org/standard/10245.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 4373:2008,https://www.iso.org/standard/39381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 4374:1990,https://www.iso.org/standard/10251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 4375:2014,https://www.iso.org/standard/53978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 4377:2012,https://www.iso.org/standard/51546.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 6416:2017,https://www.iso.org/standard/62152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 6420:2016,https://www.iso.org/standard/65501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 6421:2012,https://www.iso.org/standard/45773.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 8333:1985,https://www.iso.org/standard/15476.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 8368:1999,https://www.iso.org/standard/15525.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO/CD 8368,https://www.iso.org/standard/67996.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 9123:2017,https://www.iso.org/standard/66300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 9195:1992,https://www.iso.org/standard/16820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 9196:1992,https://www.iso.org/standard/16821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO/TR 9210:2017,https://www.iso.org/standard/64747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO/TR 9212:2015,https://www.iso.org/standard/62157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 9555-1:1994,https://www.iso.org/standard/4637.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 9555-3:1992,https://www.iso.org/standard/4642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 9555-4:1992,https://www.iso.org/standard/4643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 9825:2005,https://www.iso.org/standard/37574.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 9826:1992,https://www.iso.org/standard/17697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 9827:1994,https://www.iso.org/standard/17698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO/TR 11328:1994,https://www.iso.org/standard/19291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 11329:2001,https://www.iso.org/standard/34268.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO/DTR 11330,https://www.iso.org/standard/67860.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO/TR 11651:2015,https://www.iso.org/standard/50652.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 11655:1995,https://www.iso.org/standard/19584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO 11657:2014,https://www.iso.org/standard/50653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 6,https://www.iso.org/contents/data/committee/05/17/51722/x/catalogue/ -ISO 13550:2002,https://www.iso.org/standard/22196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 14139:2000,https://www.iso.org/standard/23677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO/TS 15768:2000,https://www.iso.org/standard/28917.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 15769:2010,https://www.iso.org/standard/42063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO/CD 18320,https://www.iso.org/standard/62154.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 18365:2013,https://www.iso.org/standard/62267.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO 18481:2017,https://www.iso.org/standard/62561.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO/TR 19234:2016,https://www.iso.org/standard/64074.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO/DTR 21044-1,https://www.iso.org/standard/68418.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO/DTR 21044-2,https://www.iso.org/standard/68419.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 24155:2016,https://www.iso.org/standard/59774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 5,https://www.iso.org/contents/data/committee/05/17/51712/x/catalogue/ -ISO/AWI 24578,https://www.iso.org/standard/70758.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO/TR 24578:2012,https://www.iso.org/standard/42320.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113/SC 1,https://www.iso.org/contents/data/committee/05/16/51684/x/catalogue/ -ISO/CD 25377,https://www.iso.org/standard/69367.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO/TS 25377:2007,https://www.iso.org/standard/42894.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 113,https://www.iso.org/contents/data/committee/05/16/51678/x/catalogue/ -ISO 26906:2015,https://www.iso.org/standard/62435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 113/SC 2,https://www.iso.org/contents/data/committee/05/16/51690/x/catalogue/ -ISO 16:1975,https://www.iso.org/standard/3601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 266:1997,https://www.iso.org/standard/1350.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 532:1975,https://www.iso.org/standard/4603.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 532-1:2017,https://www.iso.org/standard/63077.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 532-2:2017,https://www.iso.org/standard/63078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 1683:2015,https://www.iso.org/standard/64648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 1996-2:2017,https://www.iso.org/standard/59766.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3740:2000,https://www.iso.org/standard/1260.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 3740,https://www.iso.org/standard/45107.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3741:2010,https://www.iso.org/standard/52053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3743-1:2010,https://www.iso.org/standard/52054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3743-2,https://www.iso.org/standard/69600.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3743-2:1994,https://www.iso.org/standard/21753.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3744:2010,https://www.iso.org/standard/52055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3745:2012,https://www.iso.org/standard/45362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3745:2012/Amd 1:2017,https://www.iso.org/standard/63893.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3746:2010,https://www.iso.org/standard/52056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3747:2010,https://www.iso.org/standard/46426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 6926:2016,https://www.iso.org/standard/42873.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 6926:2016/NP Amd 1,https://www.iso.org/standard/74022.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 7196:1995,https://www.iso.org/standard/13813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9613-1:1993,https://www.iso.org/standard/17426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9613-2:1996,https://www.iso.org/standard/20649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9614-1:1993,https://www.iso.org/standard/17427.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9614-2:1996,https://www.iso.org/standard/21247.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9614-3:2002,https://www.iso.org/standard/24012.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10534-1:1996,https://www.iso.org/standard/18603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10534-2:1998,https://www.iso.org/standard/22851.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10846-1:2008,https://www.iso.org/standard/38936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10846-2:2008,https://www.iso.org/standard/38937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10846-3:2002,https://www.iso.org/standard/34560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10846-4:2003,https://www.iso.org/standard/34561.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10846-5:2008,https://www.iso.org/standard/46423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10847:1997,https://www.iso.org/standard/1314.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11205:2003,https://www.iso.org/standard/30369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11546-1:1995,https://www.iso.org/standard/19500.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11546-2:1995,https://www.iso.org/standard/21033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11821:1997,https://www.iso.org/standard/20230.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11904-1:2002,https://www.iso.org/standard/33944.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 11904-1:2002/Cor 1:2004,https://www.iso.org/standard/41466.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 11904-2:2004,https://www.iso.org/standard/32439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 11957:1996,https://www.iso.org/standard/20572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 12913-1:2014,https://www.iso.org/standard/52161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 12913-2,https://www.iso.org/standard/63716.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DTS 12913-2,https://www.iso.org/standard/75267.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 12999-1:2014,https://www.iso.org/standard/36492.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/NP 12999-1,https://www.iso.org/standard/73930.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 13474:2009,https://www.iso.org/standard/39513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 14163:1998,https://www.iso.org/standard/23775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 14163,https://www.iso.org/standard/66939.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 15667:2000,https://www.iso.org/standard/28632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 16832:2006,https://www.iso.org/standard/32442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 17534-1:2015,https://www.iso.org/standard/59974.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TR 17534-2:2014,https://www.iso.org/standard/64649.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TR 17534-3:2015,https://www.iso.org/standard/66128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 18405:2017,https://www.iso.org/standard/62406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 3,https://www.iso.org/contents/data/committee/65/30/653046/x/catalogue/ -ISO/PAS 20065:2016,https://www.iso.org/standard/66941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/CD 21388,https://www.iso.org/standard/74602.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO/CD 21388-1,https://www.iso.org/standard/70850.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO/TR 25417:2007,https://www.iso.org/standard/42915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 26101:2017,https://www.iso.org/standard/69870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43,https://www.iso.org/contents/data/committee/04/84/48458/x/catalogue/ -ISO 230-5:2000,https://www.iso.org/standard/4112.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO/NP 230-5,https://www.iso.org/standard/72303.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO 1680:2013,https://www.iso.org/standard/63318.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 2151:2004,https://www.iso.org/standard/31316.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 3822-1:1999,https://www.iso.org/standard/22121.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3822-1:1999/Amd 1:2008,https://www.iso.org/standard/42987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3822-2:1995,https://www.iso.org/standard/22122.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3822-3:2018,https://www.iso.org/standard/69868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3822-4:1997,https://www.iso.org/standard/22124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 4412-1:1991,https://www.iso.org/standard/10317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4412-2:1991,https://www.iso.org/standard/10319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4412-3:1991,https://www.iso.org/standard/10320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4871:1996,https://www.iso.org/standard/10855.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5131:2015,https://www.iso.org/standard/66227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5135:1997,https://www.iso.org/standard/22490.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP 5135,https://www.iso.org/standard/69860.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5136:2003,https://www.iso.org/standard/28316.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 6393:2008,https://www.iso.org/standard/38481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6394:2008,https://www.iso.org/standard/38482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6394:2008/Cor 1:2009,https://www.iso.org/standard/54026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6395:2008,https://www.iso.org/standard/38487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6396:2008,https://www.iso.org/standard/38488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6396:2008/Cor 1:2009,https://www.iso.org/standard/54025.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6798:1995,https://www.iso.org/standard/20801.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 6798-1,https://www.iso.org/standard/72411.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 6798-2,https://www.iso.org/standard/72412.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7216:2015,https://www.iso.org/standard/66228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 7574-1:1985,https://www.iso.org/standard/14357.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP 7574-1,https://www.iso.org/standard/74024.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 7574-2:1985,https://www.iso.org/standard/14358.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP 7574-2,https://www.iso.org/standard/74025.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 7574-3:1985,https://www.iso.org/standard/14359.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP 7574-3,https://www.iso.org/standard/74026.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 7574-4:1985,https://www.iso.org/standard/14360.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP 7574-4,https://www.iso.org/standard/74027.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 7779:2010,https://www.iso.org/standard/54363.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 7779,https://www.iso.org/standard/69857.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 7849-1:2009,https://www.iso.org/standard/40537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 7849-2:2009,https://www.iso.org/standard/40538.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 7960:1995,https://www.iso.org/standard/14937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO/NP 7960,https://www.iso.org/standard/72302.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO 8297:1994,https://www.iso.org/standard/15417.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 8525:2008,https://www.iso.org/standard/41083.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO/NP 8525,https://www.iso.org/standard/72301.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO 8528-10:1998,https://www.iso.org/standard/15766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 8528-10,https://www.iso.org/standard/74983.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8579-1:2002,https://www.iso.org/standard/24327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 9295:2015,https://www.iso.org/standard/32302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9296:2017,https://www.iso.org/standard/32303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9568:1993,https://www.iso.org/standard/17314.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 9611:1996,https://www.iso.org/standard/17424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9902-1:2001,https://www.iso.org/standard/27844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-1:2001/Amd 1:2009,https://www.iso.org/standard/46506.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-1:2001/Amd 2:2014,https://www.iso.org/standard/62374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-2:2001,https://www.iso.org/standard/27845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-2:2001/Amd 1:2009,https://www.iso.org/standard/46507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-2:2001/Amd 2:2014,https://www.iso.org/standard/62375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-3:2001,https://www.iso.org/standard/27846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-3:2001/Amd 1:2009,https://www.iso.org/standard/46508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-3:2001/Amd 2:2014,https://www.iso.org/standard/62376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-4:2001,https://www.iso.org/standard/27847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-4:2001/Amd 1:2009,https://www.iso.org/standard/46509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-4:2001/Amd 2:2014,https://www.iso.org/standard/62377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-5:2001,https://www.iso.org/standard/27848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-5:2001/Amd 1:2009,https://www.iso.org/standard/46510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-5:2001/Amd 2:2014,https://www.iso.org/standard/62378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-6:2001,https://www.iso.org/standard/27849.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-6:2001/Amd 1:2009,https://www.iso.org/standard/46511.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-6:2001/Amd 2:2014,https://www.iso.org/standard/62379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO/DIS 9902-6,https://www.iso.org/standard/74975.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-7:2001,https://www.iso.org/standard/27850.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-7:2001/Amd 1:2009,https://www.iso.org/standard/46512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-7:2001/Amd 2:2014,https://www.iso.org/standard/62380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 10052:2004,https://www.iso.org/standard/32341.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10052:2004/Amd 1:2010,https://www.iso.org/standard/52137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10302-1:2011,https://www.iso.org/standard/53963.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10302-2:2011,https://www.iso.org/standard/45106.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10494:1993,https://www.iso.org/standard/18563.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO/PRF 10494,https://www.iso.org/standard/64946.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 10843:1997,https://www.iso.org/standard/1179.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10843:1997/Cor 1:2009,https://www.iso.org/standard/54068.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11200:2014,https://www.iso.org/standard/35377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11200:2014/FDAmd 1,https://www.iso.org/standard/69863.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11201:2010,https://www.iso.org/standard/54908.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11202:2010,https://www.iso.org/standard/54907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11202:2010/NP Amd 1,https://www.iso.org/standard/69858.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11203:1995,https://www.iso.org/standard/21254.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11204:2010,https://www.iso.org/standard/54906.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TR 11688-1:1995,https://www.iso.org/standard/19614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TR 11688-2:1998,https://www.iso.org/standard/19615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11689:1996,https://www.iso.org/standard/19616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11689:1996/Cor 1:2007,https://www.iso.org/standard/50349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 12001:1996,https://www.iso.org/standard/21256.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 12001,https://www.iso.org/standard/69862.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13261-1:1998,https://www.iso.org/standard/3502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13261-2:1998,https://www.iso.org/standard/27294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13332:2000,https://www.iso.org/standard/21729.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 13347-1:2004,https://www.iso.org/standard/34435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-1:2004/Amd 1:2010,https://www.iso.org/standard/56775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-1:2004/Cor 1:2006,https://www.iso.org/standard/44485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-2:2004,https://www.iso.org/standard/29752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-2:2004/Cor 1:2006,https://www.iso.org/standard/44484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-3:2004,https://www.iso.org/standard/29753.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-3:2004/Amd 1:2010,https://www.iso.org/standard/56776.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-3:2004/Cor 1:2006,https://www.iso.org/standard/44121.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-4:2004,https://www.iso.org/standard/29754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-4:2004/Cor 1:2006,https://www.iso.org/standard/44483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13475-1:1999,https://www.iso.org/standard/22074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 13475-2:2000,https://www.iso.org/standard/22823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 15086-1:2001,https://www.iso.org/standard/31581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 15086-2:2000,https://www.iso.org/standard/26409.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 15086-3:2008,https://www.iso.org/standard/41577.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 15664:2001,https://www.iso.org/standard/28628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 15665:2003,https://www.iso.org/standard/28629.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 15665:2003/Cor 1:2004,https://www.iso.org/standard/40116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 15744:2002,https://www.iso.org/standard/28848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 16032:2004,https://www.iso.org/standard/29867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 16902-1:2003,https://www.iso.org/standard/31126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 17201-1:2005,https://www.iso.org/standard/30576.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-1:2005/Cor 1:2009,https://www.iso.org/standard/54067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 17201-1,https://www.iso.org/standard/66940.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-2:2006,https://www.iso.org/standard/30577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-3:2010,https://www.iso.org/standard/42151.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 17201-3,https://www.iso.org/standard/69861.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-4:2006,https://www.iso.org/standard/30579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-5:2010,https://www.iso.org/standard/42150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 18564:2016,https://www.iso.org/standard/62900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO/CD 20270,https://www.iso.org/standard/67456.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 20361:2015,https://www.iso.org/standard/67396.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO/DIS 20361,https://www.iso.org/standard/70650.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO/DIS 21131,https://www.iso.org/standard/69958.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 22096:2007,https://www.iso.org/standard/40686.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 22868:2011,https://www.iso.org/standard/51129.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/CD 22868,https://www.iso.org/standard/72397.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 23771:2015,https://www.iso.org/standard/61978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 27327-2:2014,https://www.iso.org/standard/56780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 362-1:2015,https://www.iso.org/standard/59760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 362-2:2009,https://www.iso.org/standard/42211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 362-3:2016,https://www.iso.org/standard/56020.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 2671:1982,https://www.iso.org/standard/7642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 2922:2000,https://www.iso.org/standard/27307.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 2922:2000/Amd 1:2013,https://www.iso.org/standard/59762.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP 2922,https://www.iso.org/standard/74023.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 2923:1996,https://www.iso.org/standard/1098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 2923:1996/Cor 1:1997,https://www.iso.org/standard/29224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3095:2013,https://www.iso.org/standard/55726.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3381:2005,https://www.iso.org/standard/41668.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5128:1980,https://www.iso.org/standard/11127.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5129:2001,https://www.iso.org/standard/32344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5129:2001/Amd 1:2013,https://www.iso.org/standard/62648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5130:2007,https://www.iso.org/standard/38663.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5130:2007/Amd 1:2012,https://www.iso.org/standard/59764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/CD 5130,https://www.iso.org/standard/74081.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9645:1990,https://www.iso.org/standard/17471.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10844:2014,https://www.iso.org/standard/64218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11819-1:1997,https://www.iso.org/standard/20232.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11819-2:2017,https://www.iso.org/standard/39675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 11819-3:2017,https://www.iso.org/standard/70808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/PAS 11819-4:2013,https://www.iso.org/standard/61070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13325:2003,https://www.iso.org/standard/35528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/CD 13325,https://www.iso.org/standard/71034.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/TS 13471-1:2017,https://www.iso.org/standard/25630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13472-1:2002,https://www.iso.org/standard/35387.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13472-2:2010,https://www.iso.org/standard/32304.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13473-1:1997,https://www.iso.org/standard/25637.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 13473-1,https://www.iso.org/standard/45111.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13473-2:2002,https://www.iso.org/standard/25638.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13473-3:2002,https://www.iso.org/standard/29426.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 13473-4:2008,https://www.iso.org/standard/40279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13473-5:2009,https://www.iso.org/standard/40280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 14509-1:2008,https://www.iso.org/standard/39532.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 14509-3:2009,https://www.iso.org/standard/44710.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 16254:2016,https://www.iso.org/standard/56019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17208-1:2016,https://www.iso.org/standard/62408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 3,https://www.iso.org/contents/data/committee/65/30/653046/x/catalogue/ -ISO/DIS 17208-2,https://www.iso.org/standard/62409.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 43/SC 3,https://www.iso.org/contents/data/committee/65/30/653046/x/catalogue/ -ISO 18405:2017,https://www.iso.org/standard/62406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 3,https://www.iso.org/contents/data/committee/65/30/653046/x/catalogue/ -ISO 18406:2017,https://www.iso.org/standard/62407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 3,https://www.iso.org/contents/data/committee/65/30/653046/x/catalogue/ -ISO 20283-2:2008,https://www.iso.org/standard/37398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20283-3:2006,https://www.iso.org/standard/37399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20283-3:2006/Amd 1:2016,https://www.iso.org/standard/68126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20283-4:2012,https://www.iso.org/standard/38978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20283-4:2012/Amd 1:2014,https://www.iso.org/standard/62123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20906:2009,https://www.iso.org/standard/35580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 20906:2009/Amd 1:2013,https://www.iso.org/standard/55993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/CD 20073,https://www.iso.org/standard/66952.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 43/SC 3,https://www.iso.org/contents/data/committee/65/30/653046/x/catalogue/ -ISO 2017-1:2005,https://www.iso.org/standard/28919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 2017-2:2007,https://www.iso.org/standard/36647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 2017-3:2015,https://www.iso.org/standard/64077.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 2041:2009,https://www.iso.org/standard/35848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO/DIS 2041,https://www.iso.org/standard/68734.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 2954:2012,https://www.iso.org/standard/21835.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 3046-5:2001,https://www.iso.org/standard/24378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 4548-7:2012,https://www.iso.org/standard/45762.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4866:2010,https://www.iso.org/standard/38967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 5344:2004,https://www.iso.org/standard/1454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 5344:2004/Amd 1:2016,https://www.iso.org/standard/69637.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 5347-8:1993,https://www.iso.org/standard/11354.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 5347-12:1993,https://www.iso.org/standard/11358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 5347-13:1993,https://www.iso.org/standard/11359.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 5347-15:1993,https://www.iso.org/standard/11361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 5347-16:1993,https://www.iso.org/standard/11362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 5347-17:1993,https://www.iso.org/standard/11363.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 5347-18:1993,https://www.iso.org/standard/11364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 5347-22:1997,https://www.iso.org/standard/23783.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 5348:1998,https://www.iso.org/standard/25068.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 6070:1981,https://www.iso.org/standard/12270.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 6070:1981/Cor 1:2006,https://www.iso.org/standard/44801.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 7626-1:2011,https://www.iso.org/standard/50426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 7626-2:2015,https://www.iso.org/standard/62483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 7626-5:1994,https://www.iso.org/standard/14424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO/CD 7626-5,https://www.iso.org/standard/68735.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 7919-3:2009,https://www.iso.org/standard/50527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 7919-3:2009/Amd 1:2017,https://www.iso.org/standard/71198.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 7919-4:2009,https://www.iso.org/standard/38977.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 7919-4:2009/Amd 1:2017,https://www.iso.org/standard/71199.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 7919-5:2005,https://www.iso.org/standard/38390.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 8002:1986,https://www.iso.org/standard/15001.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 8042:1988,https://www.iso.org/standard/15054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 8528-9:2017,https://www.iso.org/standard/63995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8568:2007,https://www.iso.org/standard/40205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 8608:2016,https://www.iso.org/standard/71202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 8626:1989,https://www.iso.org/standard/15960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 8626:1989/Amd 1:2016,https://www.iso.org/standard/69632.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 9688:1990,https://www.iso.org/standard/17543.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 10055:1996,https://www.iso.org/standard/18020.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10112:1991,https://www.iso.org/standard/18098.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO/TS 10811-1:2000,https://www.iso.org/standard/33210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TS 10811-2:2000,https://www.iso.org/standard/33211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10813-1:2004,https://www.iso.org/standard/40131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 10813-1:2004/Cor 1:2006,https://www.iso.org/standard/45410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 10815:2016,https://www.iso.org/standard/70989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-3:2009,https://www.iso.org/standard/50528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-3:2009/Amd 1:2017,https://www.iso.org/standard/71200.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-4:2009,https://www.iso.org/standard/40458.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-4:2009/Amd 1:2017,https://www.iso.org/standard/71201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-5:2000,https://www.iso.org/standard/1589.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-6:1995,https://www.iso.org/standard/1553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-6:1995/Amd 1:2015,https://www.iso.org/standard/66034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-7:2009,https://www.iso.org/standard/41726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-8:2014,https://www.iso.org/standard/56782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-8:2014/DAmd 1,https://www.iso.org/standard/68130.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-21:2015,https://www.iso.org/standard/60328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10817-1:1998,https://www.iso.org/standard/1175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 13372:2012,https://www.iso.org/standard/52256.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13373-1:2002,https://www.iso.org/standard/21831.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 13373-2:2016,https://www.iso.org/standard/68128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 13373-3:2015,https://www.iso.org/standard/40840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/CD 13373-5,https://www.iso.org/standard/62202.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 13373-7:2017,https://www.iso.org/standard/62204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 13373-9:2017,https://www.iso.org/standard/62190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 13374-1:2003,https://www.iso.org/standard/21832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13374-2:2007,https://www.iso.org/standard/36645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13374-3:2012,https://www.iso.org/standard/37611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13374-4:2015,https://www.iso.org/standard/54933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13379-1:2012,https://www.iso.org/standard/39836.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13379-2:2015,https://www.iso.org/standard/52258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13381-1:2015,https://www.iso.org/standard/51436.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 14695:2003,https://www.iso.org/standard/37370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 14695:2003/Cor 1:2009,https://www.iso.org/standard/53630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO/CD 14830-1,https://www.iso.org/standard/69304.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 14837-1:2005,https://www.iso.org/standard/31447.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TS 14837-31:2017,https://www.iso.org/standard/62186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TS 14837-32:2015,https://www.iso.org/standard/62187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14839-1:2002,https://www.iso.org/standard/25726.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14839-1:2002/Amd 1:2010,https://www.iso.org/standard/54387.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/DIS 14839-1,https://www.iso.org/standard/68127.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14839-2:2004,https://www.iso.org/standard/30179.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14839-3:2006,https://www.iso.org/standard/39057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14839-4:2012,https://www.iso.org/standard/50442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14963:2003,https://www.iso.org/standard/38492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 15230:2007,https://www.iso.org/standard/30186.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/CD 15230,https://www.iso.org/standard/73804.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 15261:2004,https://www.iso.org/standard/27113.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 15261:2004/Amd 1:2016,https://www.iso.org/standard/69635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 6,https://www.iso.org/contents/data/committee/05/15/51568/x/catalogue/ -ISO 16063-1:1998,https://www.iso.org/standard/25043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-1:1998/Amd 1:2016,https://www.iso.org/standard/62487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-11:1999,https://www.iso.org/standard/24951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-12:2002,https://www.iso.org/standard/31366.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-12:2002/Cor 1:2008,https://www.iso.org/standard/52459.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-13:2001,https://www.iso.org/standard/27075.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-15:2006,https://www.iso.org/standard/34954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-16:2014,https://www.iso.org/standard/57642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-17:2016,https://www.iso.org/standard/65672.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-21:2003,https://www.iso.org/standard/27053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-21:2003/Amd 1:2016,https://www.iso.org/standard/62486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-21:2003/Cor 1:2009,https://www.iso.org/standard/54022.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-22:2005,https://www.iso.org/standard/32051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-22:2005/Amd 1:2014,https://www.iso.org/standard/61657.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-31:2009,https://www.iso.org/standard/36407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-32:2016,https://www.iso.org/standard/40382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-33:2017,https://www.iso.org/standard/57643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO/CD 16063-34,https://www.iso.org/standard/71259.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-41:2011,https://www.iso.org/standard/40381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-42:2014,https://www.iso.org/standard/43736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-43:2015,https://www.iso.org/standard/50443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO/DIS 16063-44,https://www.iso.org/standard/68733.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16063-45:2017,https://www.iso.org/standard/62488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 16587:2004,https://www.iso.org/standard/32318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 17359:2018,https://www.iso.org/standard/71194.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18129:2015,https://www.iso.org/standard/61522.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18312-1:2012,https://www.iso.org/standard/43714.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18312-2:2012,https://www.iso.org/standard/43715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18431-1:2005,https://www.iso.org/standard/35588.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18431-1:2005/Cor 1:2009,https://www.iso.org/standard/54316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18431-2:2004,https://www.iso.org/standard/35589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18431-2:2004/Cor 1:2008,https://www.iso.org/standard/51687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18431-3:2014,https://www.iso.org/standard/35832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18431-4:2007,https://www.iso.org/standard/35833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18434-1:2008,https://www.iso.org/standard/41648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO/CD 18434-2,https://www.iso.org/standard/67617.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-1:2012,https://www.iso.org/standard/52259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO/CD 18436-1,https://www.iso.org/standard/67515.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-2:2014,https://www.iso.org/standard/50447.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-3:2012,https://www.iso.org/standard/61554.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-4:2014,https://www.iso.org/standard/61414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-5:2012,https://www.iso.org/standard/41645.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-6:2014,https://www.iso.org/standard/61418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-7:2014,https://www.iso.org/standard/61417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18436-8:2013,https://www.iso.org/standard/50608.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 18437-1:2012,https://www.iso.org/standard/35585.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18437-2:2005,https://www.iso.org/standard/35586.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18437-2:2005/Amd 1:2010,https://www.iso.org/standard/56528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18437-3:2005,https://www.iso.org/standard/35587.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18437-3:2005/Amd 1:2010,https://www.iso.org/standard/56529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18437-4:2008,https://www.iso.org/standard/41354.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18437-5:2011,https://www.iso.org/standard/50428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18437-6:2017,https://www.iso.org/standard/62485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 18649:2004,https://www.iso.org/standard/33544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TR 19201:2013,https://www.iso.org/standard/61991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TR 19664:2017,https://www.iso.org/standard/65939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 20283-5:2016,https://www.iso.org/standard/68125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20816-1:2016,https://www.iso.org/standard/63180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20816-2:2017,https://www.iso.org/standard/70047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/DIS 20816-4,https://www.iso.org/standard/74450.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/FDIS 20816-5,https://www.iso.org/standard/67919.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20958:2013,https://www.iso.org/standard/39839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 21289:2008,https://www.iso.org/standard/35831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 21984,https://www.iso.org/standard/72304.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 22096:2007,https://www.iso.org/standard/40686.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 22266-1:2009,https://www.iso.org/standard/40841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/FDIS 22266-1,https://www.iso.org/standard/68124.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 29821:2018,https://www.iso.org/standard/71196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 7944:1998,https://www.iso.org/standard/22574.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172,https://www.iso.org/contents/data/committee/05/36/53686/x/catalogue/ -ISO 7944:1998/Cor 1:2009,https://www.iso.org/standard/54813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172,https://www.iso.org/contents/data/committee/05/36/53686/x/catalogue/ -ISO 9334:2012,https://www.iso.org/standard/57563.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9335:2012,https://www.iso.org/standard/57565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 11421:1997,https://www.iso.org/standard/22463.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 13653:1996,https://www.iso.org/standard/21217.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/DIS 13653,https://www.iso.org/standard/72597.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 15368:2001,https://www.iso.org/standard/26583.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/WD 15368,https://www.iso.org/standard/72598.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 15529:2010,https://www.iso.org/standard/56069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/DIS 19962,https://www.iso.org/standard/69544.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 23539:2005,https://www.iso.org/standard/41641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 11664-1:2007,https://www.iso.org/standard/52495.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO/CIE DIS 11664-1,https://www.iso.org/standard/74164.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 11664-2:2007,https://www.iso.org/standard/52496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 11664-3:2012,https://www.iso.org/standard/60331.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO/CIE DIS 11664-3,https://www.iso.org/standard/74165.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 11664-4:2008,https://www.iso.org/standard/52497.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO/CIE DIS 11664-4,https://www.iso.org/standard/74166.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO/CIE 11664-5:2016,https://www.iso.org/standard/69034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO/CIE 11664-6:2014,https://www.iso.org/standard/63731.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 15469:2004,https://www.iso.org/standard/38608.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 17166:1999,https://www.iso.org/standard/31245.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO/CIE DIS 17166,https://www.iso.org/standard/74167.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO/CIE 19476:2014,https://www.iso.org/standard/65048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 23603:2005,https://www.iso.org/standard/41694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO/CIE 28077:2016,https://www.iso.org/standard/69651.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -IEC 61966-2-1/Amd 1:2003,https://www.iso.org/standard/35883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -IEC 61966-2-2:2003,https://www.iso.org/standard/35876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 9849:2017,https://www.iso.org/standard/65084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 12858-1:2014,https://www.iso.org/standard/57606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 12858-2:1999,https://www.iso.org/standard/28718.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 12858-2:1999/Amd 1:2013,https://www.iso.org/standard/57608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 12858-3:2005,https://www.iso.org/standard/39020.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 16331-1:2017,https://www.iso.org/standard/65622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-1:2014,https://www.iso.org/standard/64156.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-2:2001,https://www.iso.org/standard/30199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-3:2001,https://www.iso.org/standard/30200.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-4:2012,https://www.iso.org/standard/54624.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-5,https://www.iso.org/standard/71689.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-5:2012,https://www.iso.org/standard/55779.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-6:2012,https://www.iso.org/standard/56088.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-7:2005,https://www.iso.org/standard/37032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 17123-8:2015,https://www.iso.org/standard/62961.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO/DIS 17123-9,https://www.iso.org/standard/68382.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 6,https://www.iso.org/contents/data/committee/05/37/53732/x/catalogue/ -ISO 386:1977,https://www.iso.org/standard/4370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 651:1975,https://www.iso.org/standard/4784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 652:1975,https://www.iso.org/standard/4785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 653:1980,https://www.iso.org/standard/4786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 654:1980,https://www.iso.org/standard/4787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 655:1980,https://www.iso.org/standard/4788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 656:1980,https://www.iso.org/standard/4789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1146:1988,https://www.iso.org/standard/5688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1770:1981,https://www.iso.org/standard/6403.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1770:1981/Amd 1:1983,https://www.iso.org/standard/6404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1771:1981,https://www.iso.org/standard/6405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1771:1981/Amd 1:1983,https://www.iso.org/standard/6406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4786:1977,https://www.iso.org/standard/10766.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4795:1996,https://www.iso.org/standard/10774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48/SC 3,https://www.iso.org/contents/data/committee/04/89/48918/x/catalogue/ -ISO 6152:1982,https://www.iso.org/standard/12395.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48/SC 3,https://www.iso.org/contents/data/committee/04/89/48918/x/catalogue/ -ISO 17714:2007,https://www.iso.org/standard/31498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 5,https://www.iso.org/contents/data/committee/05/28/52810/x/catalogue/ -ISO 4037-1:1996,https://www.iso.org/standard/20781.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 4037-1,https://www.iso.org/standard/66872.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 4037-2:1997,https://www.iso.org/standard/23726.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 4037-2,https://www.iso.org/standard/66873.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 4037-3:1999,https://www.iso.org/standard/23727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 4037-3,https://www.iso.org/standard/66874.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 4037-4:2004,https://www.iso.org/standard/32192.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 4037-4,https://www.iso.org/standard/66165.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 6980-1:2006,https://www.iso.org/standard/37015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 6980-2:2004,https://www.iso.org/standard/31730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 6980-3:2006,https://www.iso.org/standard/40868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 8529-1:2001,https://www.iso.org/standard/25666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 8529-1:2001/Cor 1:2008,https://www.iso.org/standard/51412.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 8529-2:2000,https://www.iso.org/standard/25667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 8529-3:1998,https://www.iso.org/standard/25668.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 8769:2016,https://www.iso.org/standard/63915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 9696:2017,https://www.iso.org/standard/66766.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 10703:2007,https://www.iso.org/standard/42756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 11665-1:2012,https://www.iso.org/standard/52187.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-2:2012,https://www.iso.org/standard/52188.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-3:2012,https://www.iso.org/standard/52189.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-4:2012,https://www.iso.org/standard/52190.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-5:2012,https://www.iso.org/standard/52191.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-6:2012,https://www.iso.org/standard/52192.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-7:2012,https://www.iso.org/standard/52193.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-8:2012,https://www.iso.org/standard/52194.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-9:2016,https://www.iso.org/standard/56653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11665-11:2016,https://www.iso.org/standard/61351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DTS 11665-12,https://www.iso.org/standard/70842.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/TS 11665-13:2017,https://www.iso.org/standard/70843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 11704:2010,https://www.iso.org/standard/50700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 11704,https://www.iso.org/standard/71996.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 11929:2010,https://www.iso.org/standard/43810.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 11929-1,https://www.iso.org/standard/69579.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 11929-2,https://www.iso.org/standard/69580.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 11929-3,https://www.iso.org/standard/69581.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/AWI 11929-4,https://www.iso.org/standard/71844.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 12789-1:2008,https://www.iso.org/standard/46369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 12789-2:2008,https://www.iso.org/standard/37366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 13160:2012,https://www.iso.org/standard/53332.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13161:2011,https://www.iso.org/standard/53402.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/NP 13161,https://www.iso.org/standard/74776.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13162:2011,https://www.iso.org/standard/53403.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13163:2013,https://www.iso.org/standard/56463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-1:2013,https://www.iso.org/standard/53405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-2:2013,https://www.iso.org/standard/56108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-3:2013,https://www.iso.org/standard/56109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13164-4:2015,https://www.iso.org/standard/62424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13165-1:2013,https://www.iso.org/standard/56464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13165-2:2014,https://www.iso.org/standard/53406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13165-3:2016,https://www.iso.org/standard/60146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13167:2015,https://www.iso.org/standard/53408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/DIS 13169,https://www.iso.org/standard/68769.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 13304-1:2013,https://www.iso.org/standard/53662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 13304-2,https://www.iso.org/standard/66891.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 16638-1:2015,https://www.iso.org/standard/57344.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 16638-2,https://www.iso.org/standard/66881.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 16641:2014,https://www.iso.org/standard/57347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-1:2005,https://www.iso.org/standard/35655.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/NP 18589-1,https://www.iso.org/standard/71210.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-2:2015,https://www.iso.org/standard/63916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-3:2015,https://www.iso.org/standard/60059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-4:2009,https://www.iso.org/standard/40876.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 18589-4,https://www.iso.org/standard/69086.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-5:2009,https://www.iso.org/standard/40877.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 18589-5,https://www.iso.org/standard/69074.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-6:2009,https://www.iso.org/standard/40878.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 18589-6,https://www.iso.org/standard/69069.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 18589-7:2013,https://www.iso.org/standard/55362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 19017:2015,https://www.iso.org/standard/63746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 19238:2014,https://www.iso.org/standard/52157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 19361:2017,https://www.iso.org/standard/64698.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/FDIS 19461-1,https://www.iso.org/standard/64942.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 19581:2017,https://www.iso.org/standard/65307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 20047,https://www.iso.org/standard/66896.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 20899,https://www.iso.org/standard/69404.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO 21439:2009,https://www.iso.org/standard/40240.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 21484:2017,https://www.iso.org/standard/63950.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/CD 22125-1,https://www.iso.org/standard/72631.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/CD 22125-2,https://www.iso.org/standard/72647.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/CD 22515,https://www.iso.org/standard/73375.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 147/SC 3,https://www.iso.org/contents/data/committee/05/29/52932/x/catalogue/ -ISO/ASTM 51026:2015,https://www.iso.org/standard/67810.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51205:2017,https://www.iso.org/standard/71479.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51261:2013,https://www.iso.org/standard/60211.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51275:2013,https://www.iso.org/standard/62954.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51276:2012,https://www.iso.org/standard/57398.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51310:2004,https://www.iso.org/standard/40159.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51401:2013,https://www.iso.org/standard/62951.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51538:2017,https://www.iso.org/standard/72759.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51539:2013,https://www.iso.org/standard/63642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51540:2004,https://www.iso.org/standard/40160.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51607:2013,https://www.iso.org/standard/62955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51608:2015,https://www.iso.org/standard/66727.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51631:2013,https://www.iso.org/standard/60212.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51649:2015,https://www.iso.org/standard/66728.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51650:2013,https://www.iso.org/standard/62956.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51702:2013,https://www.iso.org/standard/61086.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51707:2015,https://www.iso.org/standard/66730.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51818:2013,https://www.iso.org/standard/62957.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51900:2009,https://www.iso.org/standard/44182.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM DIS 51900,https://www.iso.org/standard/73750.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51939:2017,https://www.iso.org/standard/71031.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51940:2013,https://www.iso.org/standard/61087.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 51956:2013,https://www.iso.org/standard/62922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 52116:2013,https://www.iso.org/standard/60213.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 52303:2015,https://www.iso.org/standard/67807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 52628:2013,https://www.iso.org/standard/61973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM 52701:2013,https://www.iso.org/standard/61974.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/IEC Guide 46:2017,https://www.iso.org/standard/39882.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO 554:1976,https://www.iso.org/standard/4635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 558:1980,https://www.iso.org/standard/4646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 2533:1975,https://www.iso.org/standard/7472.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2533:1975/Add 1:1985,https://www.iso.org/standard/7473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2533:1975/Add 2:1997,https://www.iso.org/standard/7474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO/TTA 2:1997,https://www.iso.org/standard/27598.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO/TTA 5:2007,https://www.iso.org/standard/50184.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO/TTA 3:2001,https://www.iso.org/standard/35397.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 3057:1998,https://www.iso.org/standard/1793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3058:1998,https://www.iso.org/standard/1712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3059:2012,https://www.iso.org/standard/56122.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3452-1:2013,https://www.iso.org/standard/56130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3452-2:2013,https://www.iso.org/standard/59658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3452-3:2013,https://www.iso.org/standard/59659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3452-4:1998,https://www.iso.org/standard/27713.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3452-5:2008,https://www.iso.org/standard/44635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3452-6:2008,https://www.iso.org/standard/44636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 3999:2004,https://www.iso.org/standard/40447.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 5576:1997,https://www.iso.org/standard/11643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 5577:2017,https://www.iso.org/standard/63662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 5580:1985,https://www.iso.org/standard/11648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 9712:2012,https://www.iso.org/standard/57037.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO 9934-1:2016,https://www.iso.org/standard/71070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 9934-2:2015,https://www.iso.org/standard/57716.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 9934-3:2015,https://www.iso.org/standard/57717.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 10375:1997,https://www.iso.org/standard/18436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 10878:2013,https://www.iso.org/standard/46265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 8,https://www.iso.org/contents/data/committee/05/24/52446/x/catalogue/ -ISO 10880:2017,https://www.iso.org/standard/61881.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 8,https://www.iso.org/contents/data/committee/05/24/52446/x/catalogue/ -ISO/TS 11774:2011,https://www.iso.org/standard/57329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO 12706:2009,https://www.iso.org/standard/53772.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 12707:2016,https://www.iso.org/standard/57192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 2,https://www.iso.org/contents/data/committee/05/24/52404/x/catalogue/ -ISO 12710:2002,https://www.iso.org/standard/34942.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 12713:1998,https://www.iso.org/standard/2347.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 12714:1999,https://www.iso.org/standard/2343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 12715:2014,https://www.iso.org/standard/57039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 12716:2001,https://www.iso.org/standard/34090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 12718:2008,https://www.iso.org/standard/43738.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 135/SC 4,https://www.iso.org/contents/data/committee/05/24/52416/x/catalogue/ -ISO 12721:2000,https://www.iso.org/standard/2271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/TR 13115:2011,https://www.iso.org/standard/52925.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 15548-1:2013,https://www.iso.org/standard/62836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 4,https://www.iso.org/contents/data/committee/05/24/52416/x/catalogue/ -ISO 15548-2:2013,https://www.iso.org/standard/62837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 4,https://www.iso.org/contents/data/committee/05/24/52416/x/catalogue/ -ISO 15548-3:2008,https://www.iso.org/standard/43741.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 4,https://www.iso.org/contents/data/committee/05/24/52416/x/catalogue/ -ISO 15549:2008,https://www.iso.org/standard/43737.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 135/SC 4,https://www.iso.org/contents/data/committee/05/24/52416/x/catalogue/ -ISO 15708-1:2017,https://www.iso.org/standard/72254.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 15708-2:2017,https://www.iso.org/standard/72256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 15708-3:2017,https://www.iso.org/standard/72257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 15708-4:2017,https://www.iso.org/standard/70670.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 16371-1:2011,https://www.iso.org/standard/56520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/WD 16371-1,https://www.iso.org/standard/71995.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 16371-2:2017,https://www.iso.org/standard/67690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 16526-1:2011,https://www.iso.org/standard/57042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 16526-2:2011,https://www.iso.org/standard/57043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 16526-3:2011,https://www.iso.org/standard/57044.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 16809:2017,https://www.iso.org/standard/72430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 16810:2012,https://www.iso.org/standard/57781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 16811:2012,https://www.iso.org/standard/57782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 16823:2012,https://www.iso.org/standard/57783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 16826:2012,https://www.iso.org/standard/57784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 16827:2012,https://www.iso.org/standard/57785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 16828:2012,https://www.iso.org/standard/57786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO/TS 16829:2017,https://www.iso.org/standard/72908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 16831:2012,https://www.iso.org/standard/57789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO/FDIS 16836,https://www.iso.org/standard/68779.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO/FDIS 16837,https://www.iso.org/standard/68780.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO/FDIS 16838,https://www.iso.org/standard/68781.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 16946:2017,https://www.iso.org/standard/71694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 17405:2014,https://www.iso.org/standard/59633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 18081:2016,https://www.iso.org/standard/61326.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO/TS 18173:2005,https://www.iso.org/standard/40735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135,https://www.iso.org/contents/data/committee/05/23/52398/x/catalogue/ -ISO 18175:2004,https://www.iso.org/standard/31728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 18211:2016,https://www.iso.org/standard/61765.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 18249:2015,https://www.iso.org/standard/61880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 18251-1:2017,https://www.iso.org/standard/61882.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 8,https://www.iso.org/contents/data/committee/05/24/52446/x/catalogue/ -ISO 18490:2015,https://www.iso.org/standard/62605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO 18563-1:2015,https://www.iso.org/standard/62896.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 18563-2:2017,https://www.iso.org/standard/69427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 18563-3:2015,https://www.iso.org/standard/62897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 19232-1:2013,https://www.iso.org/standard/57710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 19232-2:2013,https://www.iso.org/standard/57711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 19232-3:2013,https://www.iso.org/standard/57712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 19232-4:2013,https://www.iso.org/standard/57713.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 19232-5:2013,https://www.iso.org/standard/57714.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/DIS 19232-5,https://www.iso.org/standard/71853.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 19675:2017,https://www.iso.org/standard/65991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/FDIS 19835,https://www.iso.org/standard/66330.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 20339:2017,https://www.iso.org/standard/67744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 4,https://www.iso.org/contents/data/committee/05/24/52416/x/catalogue/ -ISO 20484:2017,https://www.iso.org/standard/68188.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 6,https://www.iso.org/contents/data/committee/05/24/52430/x/catalogue/ -ISO 20485:2017,https://www.iso.org/standard/68190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 6,https://www.iso.org/contents/data/committee/05/24/52430/x/catalogue/ -ISO 20486:2017,https://www.iso.org/standard/68191.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 6,https://www.iso.org/contents/data/committee/05/24/52430/x/catalogue/ -ISO 20669:2017,https://www.iso.org/standard/68784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 4,https://www.iso.org/contents/data/committee/05/24/52416/x/catalogue/ -ISO/DIS 20769-1,https://www.iso.org/standard/71632.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/DIS 20769-2,https://www.iso.org/standard/71688.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 20807:2004,https://www.iso.org/standard/34273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO/CD 21432,https://www.iso.org/standard/75266.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/CD 21432,https://www.iso.org/standard/65097.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/TS 21432:2005,https://www.iso.org/standard/35868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/TS 21432:2005/Cor 1:2008,https://www.iso.org/standard/50983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/DTS 21759,https://www.iso.org/standard/71561.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO/CD 22232-1,https://www.iso.org/standard/72905.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO/CD 22232-2,https://www.iso.org/standard/72922.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO/CD 22232-3,https://www.iso.org/standard/72923.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO/TS 22809:2007,https://www.iso.org/standard/41147.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO/DTS 25107,https://www.iso.org/standard/71997.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO/TR 25107:2006,https://www.iso.org/standard/41958.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 135,https://www.iso.org/contents/data/committee/05/23/52398/x/catalogue/ -ISO/DTS 25108,https://www.iso.org/standard/71999.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 135/SC 7,https://www.iso.org/contents/data/committee/05/24/52432/x/catalogue/ -ISO/TR 25108:2006,https://www.iso.org/standard/41959.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 135,https://www.iso.org/contents/data/committee/05/23/52398/x/catalogue/ -ISO 565:1990,https://www.iso.org/standard/4656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 2395:1990,https://www.iso.org/standard/7292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24,https://www.iso.org/contents/data/committee/04/71/47166/x/catalogue/ -ISO 2591-1:1988,https://www.iso.org/standard/7569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 3310-1:2016,https://www.iso.org/standard/62410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 3310-2:2013,https://www.iso.org/standard/63508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 3310-3:1990,https://www.iso.org/standard/8566.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 9276-1:1998,https://www.iso.org/standard/25860.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9276-1:1998/Cor 1:2004,https://www.iso.org/standard/39860.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9276-2:2014,https://www.iso.org/standard/57641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9276-3:2008,https://www.iso.org/standard/39387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9276-4:2001,https://www.iso.org/standard/24941.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9276-4:2001/Amd 1:2017,https://www.iso.org/standard/63266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9276-5:2005,https://www.iso.org/standard/39388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9276-6:2008,https://www.iso.org/standard/39389.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9277:2010,https://www.iso.org/standard/44941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 9284:2013,https://www.iso.org/standard/60014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 12154:2014,https://www.iso.org/standard/54731.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/TR 13097:2013,https://www.iso.org/standard/52802.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13099-1:2012,https://www.iso.org/standard/52807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13099-2:2012,https://www.iso.org/standard/52832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13099-3:2014,https://www.iso.org/standard/52833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13317-1:2001,https://www.iso.org/standard/21703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13317-2:2001,https://www.iso.org/standard/30663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13317-3:2001,https://www.iso.org/standard/30664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13317-4:2014,https://www.iso.org/standard/46263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13318-1:2001,https://www.iso.org/standard/21704.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13318-2:2007,https://www.iso.org/standard/45771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13318-3:2004,https://www.iso.org/standard/31503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13319:2007,https://www.iso.org/standard/42354.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13320:2009,https://www.iso.org/standard/44929.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/CD 13320,https://www.iso.org/standard/69111.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13322-1:2014,https://www.iso.org/standard/51257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 13322-2:2006,https://www.iso.org/standard/38665.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/TS 14411-1:2017,https://www.iso.org/standard/70622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 14488:2007,https://www.iso.org/standard/39988.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/NP 14488,https://www.iso.org/standard/75047.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 14887:2000,https://www.iso.org/standard/25861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 15900:2009,https://www.iso.org/standard/39573.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/CD 15900,https://www.iso.org/standard/67600.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 15901-1:2016,https://www.iso.org/standard/56005.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 15901-2:2006,https://www.iso.org/standard/39386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 15901-2:2006/Cor 1:2007,https://www.iso.org/standard/46109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/NP 15901-2,https://www.iso.org/standard/67586.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 15901-3:2007,https://www.iso.org/standard/40364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 17867:2015,https://www.iso.org/standard/45820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/FDIS 18747-1,https://www.iso.org/standard/63267.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/DIS 18747-2,https://www.iso.org/standard/66838.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 19430:2016,https://www.iso.org/standard/64890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/DTR 19997,https://www.iso.org/standard/73991.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 20998-1:2006,https://www.iso.org/standard/39869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 20998-2:2013,https://www.iso.org/standard/43468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 20998-3:2017,https://www.iso.org/standard/67601.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 21501-1:2009,https://www.iso.org/standard/42728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 21501-2:2007,https://www.iso.org/standard/40275.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/NP 21501-2,https://www.iso.org/standard/75048.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 21501-3:2007,https://www.iso.org/standard/40276.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/NP 21501-3,https://www.iso.org/standard/75049.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 21501-4:2007,https://www.iso.org/standard/40274.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO/FDIS 21501-4,https://www.iso.org/standard/58073.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 22412:2017,https://www.iso.org/standard/65410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 26824:2013,https://www.iso.org/standard/43807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 27891:2015,https://www.iso.org/standard/44414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 4,https://www.iso.org/contents/data/committee/04/71/47176/x/catalogue/ -ISO 3952-1:1981,https://www.iso.org/standard/9603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3952-1:1981/Amd 1:2002,https://www.iso.org/standard/34420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3952-2:1981,https://www.iso.org/standard/9604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3952-3:1979,https://www.iso.org/standard/9605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 3952-4:1984,https://www.iso.org/standard/9606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 4871:1996,https://www.iso.org/standard/10855.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10816-3:2009,https://www.iso.org/standard/50528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-3:2009/Amd 1:2017,https://www.iso.org/standard/71200.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TR 11688-1:1995,https://www.iso.org/standard/19614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TR 11688-2:1998,https://www.iso.org/standard/19615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 21143,https://www.iso.org/standard/69976.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 5408:2009,https://www.iso.org/standard/44424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 6410-1:1993,https://www.iso.org/standard/12750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 6410-2:1993,https://www.iso.org/standard/12751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 6410-3:1993,https://www.iso.org/standard/12752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 68-1:1998,https://www.iso.org/standard/3707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 261:1998,https://www.iso.org/standard/4165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 262:1998,https://www.iso.org/standard/4167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 724:1993,https://www.iso.org/standard/4958.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 724:1993/Cor 1:2009,https://www.iso.org/standard/54553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 965-1:2013,https://www.iso.org/standard/57778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 965-2:1998,https://www.iso.org/standard/23594.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 965-3:1998,https://www.iso.org/standard/5397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 965-3:1998/Cor 1:2009,https://www.iso.org/standard/54555.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 965-4:1998,https://www.iso.org/standard/5398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 965-5:1998,https://www.iso.org/standard/5399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 1502:1996,https://www.iso.org/standard/6092.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 2901:2016,https://www.iso.org/standard/68337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 2902:2016,https://www.iso.org/standard/70093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 2903:2016,https://www.iso.org/standard/68336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 2904:1977,https://www.iso.org/standard/7940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 68-2:1998,https://www.iso.org/standard/27137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 263:1973,https://www.iso.org/standard/4168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 725:2009,https://www.iso.org/standard/51386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 5864:1993,https://www.iso.org/standard/12064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 7-1:1994,https://www.iso.org/standard/20819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 7-1:1994/Cor 1:2007,https://www.iso.org/standard/46479.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 7-2:2000,https://www.iso.org/standard/20820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 228-1:2000,https://www.iso.org/standard/33777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 228-2:1987,https://www.iso.org/standard/4104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 1478:1999,https://www.iso.org/standard/29386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 1501:2009,https://www.iso.org/standard/44423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 1,https://www.iso.org/contents/data/committee/04/54/45432/x/catalogue/ -ISO 272:1982,https://www.iso.org/standard/4182.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 273:1979,https://www.iso.org/standard/4183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 1891:2009,https://www.iso.org/standard/38530.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 1891-2:2014,https://www.iso.org/standard/59135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 1891-4,https://www.iso.org/standard/63320.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 3269:2000,https://www.iso.org/standard/22906.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO/DIS 3269,https://www.iso.org/standard/72605.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO/DIS 3506-6,https://www.iso.org/standard/67012.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 3508:1976,https://www.iso.org/standard/8866.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 3800:1993,https://www.iso.org/standard/9333.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4042:1999,https://www.iso.org/standard/25454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO/FDIS 4042,https://www.iso.org/standard/69348.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 4753:2011,https://www.iso.org/standard/55928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 4755:1983,https://www.iso.org/standard/10740.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 5845-1:1995,https://www.iso.org/standard/12039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 8991:1986,https://www.iso.org/standard/16520.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 10683:2014,https://www.iso.org/standard/55924.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO/FDIS 10683,https://www.iso.org/standard/70609.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 10684:2004,https://www.iso.org/standard/36897.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 10684:2004/Cor 1:2008,https://www.iso.org/standard/51928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 15330:1999,https://www.iso.org/standard/27255.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 16047:2005,https://www.iso.org/standard/27788.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 16047:2005/Amd 1:2012,https://www.iso.org/standard/61463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 16048:2003,https://www.iso.org/standard/30031.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 16228:2017,https://www.iso.org/standard/55935.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 16426:2002,https://www.iso.org/standard/30971.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO/DTR 20491,https://www.iso.org/standard/68206.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 225:2010,https://www.iso.org/standard/45872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 885:2000,https://www.iso.org/standard/32402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 888:2012,https://www.iso.org/standard/50946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 898-1:2013,https://www.iso.org/standard/60610.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 898-1:2013/Cor 1:2013,https://www.iso.org/standard/63765.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 898-5:2012,https://www.iso.org/standard/54038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 898-7:1992,https://www.iso.org/standard/5300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 1207:2011,https://www.iso.org/standard/54039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 1479:2011,https://www.iso.org/standard/54040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 1481:2011,https://www.iso.org/standard/54041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 1482:2011,https://www.iso.org/standard/54042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 1483:2011,https://www.iso.org/standard/54043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 1580:2011,https://www.iso.org/standard/57369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 2009:2011,https://www.iso.org/standard/57370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 2010:2011,https://www.iso.org/standard/57371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 2342:2003,https://www.iso.org/standard/36429.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 2702:2011,https://www.iso.org/standard/54044.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO/CD 2702,https://www.iso.org/standard/72577.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 3506-1:2009,https://www.iso.org/standard/46229.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO/DIS 3506-1,https://www.iso.org/standard/70045.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 3506-3:2009,https://www.iso.org/standard/46231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 3506-4:2009,https://www.iso.org/standard/46232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 4014:2011,https://www.iso.org/standard/56447.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4015:1979,https://www.iso.org/standard/9695.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4016:2011,https://www.iso.org/standard/56448.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4017:2014,https://www.iso.org/standard/63206.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4018:2011,https://www.iso.org/standard/56450.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4026:2003,https://www.iso.org/standard/36431.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4027:2003,https://www.iso.org/standard/36430.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4028:2003,https://www.iso.org/standard/36432.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4029:2003,https://www.iso.org/standard/36433.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4162:2012,https://www.iso.org/standard/56451.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4757:1983,https://www.iso.org/standard/10742.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 4759-1:2000,https://www.iso.org/standard/10745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 4762:2004,https://www.iso.org/standard/34460.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 4766:2011,https://www.iso.org/standard/54045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 6157-1:1988,https://www.iso.org/standard/12401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 6157-3:1988,https://www.iso.org/standard/12403.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 7045:2011,https://www.iso.org/standard/57372.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7046-1:2011,https://www.iso.org/standard/57373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7046-2:2011,https://www.iso.org/standard/57374.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7047:2011,https://www.iso.org/standard/57375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7048:2011,https://www.iso.org/standard/56452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7049:2011,https://www.iso.org/standard/54046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 7050:2011,https://www.iso.org/standard/54047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 7051:2011,https://www.iso.org/standard/54048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 7053:2011,https://www.iso.org/standard/54049.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO/CD 7053,https://www.iso.org/standard/73632.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 7378:1983,https://www.iso.org/standard/14077.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 7379:1983,https://www.iso.org/standard/14078.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7380-1:2011,https://www.iso.org/standard/53671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7380-2:2011,https://www.iso.org/standard/53672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7434:1983,https://www.iso.org/standard/14170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7435:1983,https://www.iso.org/standard/14171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7436:1983,https://www.iso.org/standard/14172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7721:1983,https://www.iso.org/standard/14552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 7721-2:1990,https://www.iso.org/standard/14554.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 8676:2011,https://www.iso.org/standard/56453.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 8678:1988,https://www.iso.org/standard/16078.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 8765:2011,https://www.iso.org/standard/56454.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 8992:2005,https://www.iso.org/standard/38531.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 10509:2012,https://www.iso.org/standard/57085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 10510:2011,https://www.iso.org/standard/56609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 10642:2004,https://www.iso.org/standard/34454.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 10642:2004/Amd 1:2012,https://www.iso.org/standard/61325.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO/CD 10642,https://www.iso.org/standard/72578.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 10664:2014,https://www.iso.org/standard/63207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 10666:1999,https://www.iso.org/standard/18756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 12474:2010,https://www.iso.org/standard/51434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 13918:2017,https://www.iso.org/standard/67251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14579:2011,https://www.iso.org/standard/56455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 14580:2011,https://www.iso.org/standard/56456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 14581:2013,https://www.iso.org/standard/56219.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 14582:2013,https://www.iso.org/standard/56220.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 14583:2011,https://www.iso.org/standard/56457.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 14584:2011,https://www.iso.org/standard/56458.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 14585:2011,https://www.iso.org/standard/56459.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 14586:2011,https://www.iso.org/standard/56460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 14587:2011,https://www.iso.org/standard/56461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 15065:2005,https://www.iso.org/standard/37365.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 15071:2011,https://www.iso.org/standard/56462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 15072:2012,https://www.iso.org/standard/60816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 15480:1999,https://www.iso.org/standard/27840.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO/CD 15480,https://www.iso.org/standard/73633.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 15481:1999,https://www.iso.org/standard/27841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 15482:1999,https://www.iso.org/standard/27842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 15483:1999,https://www.iso.org/standard/27843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 13,https://www.iso.org/contents/data/committee/62/65/626543/x/catalogue/ -ISO 23429:2004,https://www.iso.org/standard/36870.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 898-2:2012,https://www.iso.org/standard/46228.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/NP 898-2,https://www.iso.org/standard/70259.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/FDIS 898-3,https://www.iso.org/standard/63232.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 2320:2015,https://www.iso.org/standard/61175.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 3506-2:2009,https://www.iso.org/standard/46230.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO/DIS 3506-2,https://www.iso.org/standard/70046.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 4032:2012,https://www.iso.org/standard/61668.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 4032,https://www.iso.org/standard/66017.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 4033:2012,https://www.iso.org/standard/61669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 4033,https://www.iso.org/standard/66018.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 4034:2012,https://www.iso.org/standard/61670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 4034:2012/Cor 1:2013,https://www.iso.org/standard/63632.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 4034,https://www.iso.org/standard/66019.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 4035:2012,https://www.iso.org/standard/61671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 4035,https://www.iso.org/standard/66020.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 4161:2012,https://www.iso.org/standard/61523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 4161,https://www.iso.org/standard/66022.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 4759-1:2000,https://www.iso.org/standard/10745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 6157-2:1995,https://www.iso.org/standard/12402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 7040:2012,https://www.iso.org/standard/61363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 7040,https://www.iso.org/standard/66023.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 7041:2012,https://www.iso.org/standard/61364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 7041,https://www.iso.org/standard/66024.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 7042:2012,https://www.iso.org/standard/61366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 7042,https://www.iso.org/standard/66025.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 7043:2012,https://www.iso.org/standard/61525.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 7043,https://www.iso.org/standard/66026.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 7044:2012,https://www.iso.org/standard/61526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 7044,https://www.iso.org/standard/66027.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 7719:2012,https://www.iso.org/standard/61367.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 7719:2012/Cor 1:2013,https://www.iso.org/standard/63633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 7719,https://www.iso.org/standard/66084.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 7720:2012,https://www.iso.org/standard/61368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 8673:2012,https://www.iso.org/standard/61673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 8673,https://www.iso.org/standard/66082.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 8674:2012,https://www.iso.org/standard/61674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 8674,https://www.iso.org/standard/66081.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 8675:2012,https://www.iso.org/standard/61675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 8675,https://www.iso.org/standard/66080.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 8992:2005,https://www.iso.org/standard/38531.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 7,https://www.iso.org/contents/data/committee/04/54/45482/x/catalogue/ -ISO 10484:1997,https://www.iso.org/standard/18553.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 10511:2012,https://www.iso.org/standard/61369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 10511,https://www.iso.org/standard/66079.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 10512:2012,https://www.iso.org/standard/61370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 10512,https://www.iso.org/standard/66078.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 10513:2012,https://www.iso.org/standard/61371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 10513,https://www.iso.org/standard/66077.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 10663:2012,https://www.iso.org/standard/61527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 10663,https://www.iso.org/standard/66076.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 12125:2012,https://www.iso.org/standard/61528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 12125,https://www.iso.org/standard/66075.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 12126:2012,https://www.iso.org/standard/61529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/DIS 12126,https://www.iso.org/standard/66074.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO/TR 16224:2012,https://www.iso.org/standard/55922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 21670:2014,https://www.iso.org/standard/63369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 12,https://www.iso.org/contents/data/committee/62/65/626540/x/catalogue/ -ISO 887:2000,https://www.iso.org/standard/5277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 887:2000/Cor 1:2006,https://www.iso.org/standard/43760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 4759-3:2016,https://www.iso.org/standard/63224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 7089:2000,https://www.iso.org/standard/13666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 7090:2000,https://www.iso.org/standard/13669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 7091:2000,https://www.iso.org/standard/13672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 7092:2000,https://www.iso.org/standard/13674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 7093-1:2000,https://www.iso.org/standard/13677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 7093-2:2000,https://www.iso.org/standard/30046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 7094:2000,https://www.iso.org/standard/26413.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 7094:2000/Cor 1:2000,https://www.iso.org/standard/34794.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8738:1986,https://www.iso.org/standard/16147.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 10644:2009,https://www.iso.org/standard/44116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 10669:1999,https://www.iso.org/standard/18759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 10673:2009,https://www.iso.org/standard/44117.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2/SC 11,https://www.iso.org/contents/data/committee/62/65/626538/x/catalogue/ -ISO 1051:1999,https://www.iso.org/standard/31084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 14588:2000,https://www.iso.org/standard/24866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 14589:2000,https://www.iso.org/standard/24867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15973:2000,https://www.iso.org/standard/29615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15974:2000,https://www.iso.org/standard/29616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15975:2002,https://www.iso.org/standard/29617.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15976:2002,https://www.iso.org/standard/29618.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15977:2002,https://www.iso.org/standard/29619.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15978:2002,https://www.iso.org/standard/29620.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15979:2002,https://www.iso.org/standard/29621.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15980:2002,https://www.iso.org/standard/29622.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15981:2002,https://www.iso.org/standard/29623.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15982:2002,https://www.iso.org/standard/29624.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15983:2002,https://www.iso.org/standard/29625.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 15984:2002,https://www.iso.org/standard/29626.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 16582:2002,https://www.iso.org/standard/32313.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 16583:2002,https://www.iso.org/standard/32314.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 16584:2002,https://www.iso.org/standard/32315.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 16585:2002,https://www.iso.org/standard/32316.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 1234:1997,https://www.iso.org/standard/20000.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 2338:1997,https://www.iso.org/standard/20001.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 2339:1986,https://www.iso.org/standard/7174.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 2340:1986,https://www.iso.org/standard/7176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 2341:1986,https://www.iso.org/standard/7178.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8733:1997,https://www.iso.org/standard/21793.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8734:1997,https://www.iso.org/standard/20002.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8735:1997,https://www.iso.org/standard/21794.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8736:1986,https://www.iso.org/standard/16145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8737:1986,https://www.iso.org/standard/16146.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8739:1997,https://www.iso.org/standard/20003.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8740:1997,https://www.iso.org/standard/20006.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8741:1997,https://www.iso.org/standard/20007.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8742:1997,https://www.iso.org/standard/20008.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8743:1997,https://www.iso.org/standard/20009.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8744:1997,https://www.iso.org/standard/20010.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8745:1997,https://www.iso.org/standard/20013.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8746:1997,https://www.iso.org/standard/20014.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8747:1997,https://www.iso.org/standard/20015.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8748:2007,https://www.iso.org/standard/40661.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8749:1986,https://www.iso.org/standard/16158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8750:2007,https://www.iso.org/standard/40660.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8751:2007,https://www.iso.org/standard/40659.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 8752:2009,https://www.iso.org/standard/40658.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 13337:2009,https://www.iso.org/standard/40657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO/CD 3506-5,https://www.iso.org/standard/65033.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 2,https://www.iso.org/contents/data/committee/04/54/45446/x/catalogue/ -ISO 21107:2015,https://www.iso.org/standard/62973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 2795:2014,https://www.iso.org/standard/63628.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO 3547-1:2006,https://www.iso.org/standard/36811.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO/DIS 3547-1,https://www.iso.org/standard/70443.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 3547-2:2017,https://www.iso.org/standard/70441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 3547-3:2017,https://www.iso.org/standard/70440.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 3547-4:2017,https://www.iso.org/standard/70432.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 3547-5:2007,https://www.iso.org/standard/41334.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 3547-6:2007,https://www.iso.org/standard/41336.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 3547-7:2007,https://www.iso.org/standard/41337.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 3548-1:2014,https://www.iso.org/standard/55446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 3548-2:2009,https://www.iso.org/standard/44400.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO/DIS 3548-2,https://www.iso.org/standard/68627.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 3548-3:2012,https://www.iso.org/standard/56709.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 4378-1:2017,https://www.iso.org/standard/70491.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4378-2:2017,https://www.iso.org/standard/70490.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4378-3:2017,https://www.iso.org/standard/70489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4378-4:2009,https://www.iso.org/standard/44207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4378-5:2009,https://www.iso.org/standard/44208.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO/TR 4378-6:2012,https://www.iso.org/standard/57809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO 4379:1993,https://www.iso.org/standard/10265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 4381:2011,https://www.iso.org/standard/57025.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4382-1:1991,https://www.iso.org/standard/10270.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4382-2:1991,https://www.iso.org/standard/10272.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4383:2012,https://www.iso.org/standard/57026.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4384-1:2012,https://www.iso.org/standard/57027.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4384-2:2011,https://www.iso.org/standard/57808.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4385:1981,https://www.iso.org/standard/10277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4386-1:2012,https://www.iso.org/standard/57028.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4386-2:2012,https://www.iso.org/standard/57029.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4386-3:1992,https://www.iso.org/standard/10281.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO/DIS 4386-3,https://www.iso.org/standard/68679.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 6279:2017,https://www.iso.org/standard/70401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 6280:1981,https://www.iso.org/standard/12562.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO/DIS 6280,https://www.iso.org/standard/68678.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 6281:2007,https://www.iso.org/standard/36808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 6282:1983,https://www.iso.org/standard/12565.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO/DIS 6282,https://www.iso.org/standard/68677.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 6525:1983,https://www.iso.org/standard/12911.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO/DIS 6525,https://www.iso.org/standard/68629.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 6526:2017,https://www.iso.org/standard/68628.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 6691:2000,https://www.iso.org/standard/30440.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 6811:1998,https://www.iso.org/standard/24987.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 6811:1998/Cor 1:1999,https://www.iso.org/standard/31386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 7146-1:2008,https://www.iso.org/standard/36100.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 7146-2:2008,https://www.iso.org/standard/40940.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 7148-1:2012,https://www.iso.org/standard/53709.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 7148-2:2012,https://www.iso.org/standard/53710.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 7902-1:2013,https://www.iso.org/standard/63679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 8,https://www.iso.org/contents/data/committee/65/74/6574253/x/catalogue/ -ISO 7902-2:1998,https://www.iso.org/standard/14858.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 7902-3:1998,https://www.iso.org/standard/14859.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 7905-1:1995,https://www.iso.org/standard/14864.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 7905-2:1995,https://www.iso.org/standard/14865.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 7905-3:1995,https://www.iso.org/standard/14866.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 7905-4:1995,https://www.iso.org/standard/14867.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 10129:2017,https://www.iso.org/standard/70399.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 11687-1:1995,https://www.iso.org/standard/19611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 11687-2:1995,https://www.iso.org/standard/19612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 11687-3:1995,https://www.iso.org/standard/19613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 12128:2001,https://www.iso.org/standard/34774.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 12129-1:1995,https://www.iso.org/standard/20996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 12129-2:1995,https://www.iso.org/standard/21337.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 12130-1:2001,https://www.iso.org/standard/35256.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 12130-2:2013,https://www.iso.org/standard/63680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 8,https://www.iso.org/contents/data/committee/65/74/6574253/x/catalogue/ -ISO 12130-3:2001,https://www.iso.org/standard/26866.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 12131-1:2001,https://www.iso.org/standard/20999.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 12131-2:2016,https://www.iso.org/standard/70385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 8,https://www.iso.org/contents/data/committee/65/74/6574253/x/catalogue/ -ISO 12131-3:2001,https://www.iso.org/standard/26868.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 12132:2017,https://www.iso.org/standard/68623.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 12167-1:2016,https://www.iso.org/standard/70384.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 8,https://www.iso.org/contents/data/committee/65/74/6574253/x/catalogue/ -ISO 12167-2:2001,https://www.iso.org/standard/26869.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 12168-1:2001,https://www.iso.org/standard/35258.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 12168-2:2001,https://www.iso.org/standard/26870.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123,https://www.iso.org/contents/data/committee/05/20/52090/x/catalogue/ -ISO 12240-1:1998,https://www.iso.org/standard/24243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 12240-2:1998,https://www.iso.org/standard/24244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 12240-3:1998,https://www.iso.org/standard/24245.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 12240-4:1998,https://www.iso.org/standard/24246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 12240-4:1998/Cor 1:1999,https://www.iso.org/standard/31167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 7,https://www.iso.org/contents/data/committee/04/55/45576/x/catalogue/ -ISO 12301:2007,https://www.iso.org/standard/36511.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 12302:2017,https://www.iso.org/standard/68624.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 12308:2017,https://www.iso.org/standard/68625.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 13778:2017,https://www.iso.org/standard/68626.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 5,https://www.iso.org/contents/data/committee/05/21/52140/x/catalogue/ -ISO 13939:2012,https://www.iso.org/standard/54354.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO 14287:2012,https://www.iso.org/standard/54558.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO/CD 14287,https://www.iso.org/standard/75121.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO 16287:2005,https://www.iso.org/standard/30238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO/TR 17606:2014,https://www.iso.org/standard/60122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO 19259:2015,https://www.iso.org/standard/64157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO/DIS 19349,https://www.iso.org/standard/64675.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 20054:2016,https://www.iso.org/standard/66911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO/DIS 21433,https://www.iso.org/standard/70917.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 123/SC 6,https://www.iso.org/contents/data/committee/36/28/362806/x/catalogue/ -ISO/CD 22423,https://www.iso.org/standard/73162.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO/CD 22507,https://www.iso.org/standard/73358.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 123/SC 7,https://www.iso.org/contents/data/committee/61/58/615862/x/catalogue/ -ISO/TR 27507:2010,https://www.iso.org/standard/35131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 123/SC 3,https://www.iso.org/contents/data/committee/05/21/52116/x/catalogue/ -ISO 15:2017,https://www.iso.org/standard/69977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 76:2006,https://www.iso.org/standard/38101.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 76:2006/Amd 1:2017,https://www.iso.org/standard/69102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 104:2015,https://www.iso.org/standard/62974.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 113:2010,https://www.iso.org/standard/55217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 199:2014,https://www.iso.org/standard/61288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 246:2007,https://www.iso.org/standard/44032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 281:2007,https://www.iso.org/standard/38102.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 355:2007,https://www.iso.org/standard/42440.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 9,https://www.iso.org/contents/data/committee/04/55/45586/x/catalogue/ -ISO 355:2007/Amd 1:2012,https://www.iso.org/standard/60448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 9,https://www.iso.org/contents/data/committee/04/55/45586/x/catalogue/ -ISO/NP 355,https://www.iso.org/standard/73836.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 4/SC 9,https://www.iso.org/contents/data/committee/04/55/45586/x/catalogue/ -ISO 464:2015,https://www.iso.org/standard/60130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 492:2014,https://www.iso.org/standard/60356.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO/CD 492,https://www.iso.org/standard/70321.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 582:1995,https://www.iso.org/standard/20515.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 582:1995/Amd 1:2013,https://www.iso.org/standard/60216.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 1132-1:2000,https://www.iso.org/standard/20514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 1132-2:2001,https://www.iso.org/standard/30157.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO/DIS 1132-2,https://www.iso.org/standard/73914.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 1206,https://www.iso.org/standard/65934.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 1206:2001,https://www.iso.org/standard/30241.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 1206:2001/Amd 1:2013,https://www.iso.org/standard/54726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO/DTR 1281-1,https://www.iso.org/standard/73879.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO/TR 1281-1:2008,https://www.iso.org/standard/43028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO/TR 1281-1:2008/Cor 1:2009,https://www.iso.org/standard/55069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO/TR 1281-2:2008,https://www.iso.org/standard/40622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO/TR 1281-2:2008/Cor 1:2009,https://www.iso.org/standard/55068.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 2982-1:2013,https://www.iso.org/standard/60355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 2982-2:2013,https://www.iso.org/standard/60131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 3030:2011,https://www.iso.org/standard/50188.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO/DIS 3030,https://www.iso.org/standard/73478.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 3031:2000,https://www.iso.org/standard/20527.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO/DIS 3031,https://www.iso.org/standard/73479.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 3096:1996,https://www.iso.org/standard/20526.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 3096:1996/Cor 1:1999,https://www.iso.org/standard/32435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO/FDIS 3096,https://www.iso.org/standard/67519.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 3228:2013,https://www.iso.org/standard/53719.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 4/SC 6,https://www.iso.org/contents/data/committee/04/55/45574/x/catalogue/ -ISO 3245:2015,https://www.iso.org/standard/61183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 3290-1:2014,https://www.iso.org/standard/60132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 12,https://www.iso.org/contents/data/committee/64/86/648645/x/catalogue/ -ISO 3290-2:2014,https://www.iso.org/standard/60133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 12,https://www.iso.org/contents/data/committee/64/86/648645/x/catalogue/ -ISO 5593:1997,https://www.iso.org/standard/11663.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 5593:1997/Amd 1:2007,https://www.iso.org/standard/43557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO/FDIS 5593,https://www.iso.org/standard/50185.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 5753-1:2009,https://www.iso.org/standard/44742.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 5753-2:2010,https://www.iso.org/standard/50186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 4,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO 7063:2003,https://www.iso.org/standard/30240.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO/FDIS 7063,https://www.iso.org/standard/67518.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 8443:2010,https://www.iso.org/standard/55218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 12,https://www.iso.org/contents/data/committee/64/86/648645/x/catalogue/ -ISO 8826-1:1989,https://www.iso.org/standard/16299.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 8826-2:1994,https://www.iso.org/standard/16300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 9628:2006,https://www.iso.org/standard/40244.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 6,https://www.iso.org/contents/data/committee/04/55/45574/x/catalogue/ -ISO 9628:2006/Amd 1:2011,https://www.iso.org/standard/51591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 6,https://www.iso.org/contents/data/committee/04/55/45574/x/catalogue/ -ISO/CD 9628,https://www.iso.org/standard/69424.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/55/45574/x/catalogue/ -ISO/DIS 9628,https://www.iso.org/standard/74813.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 4/SC 6,https://www.iso.org/contents/data/committee/04/55/45574/x/catalogue/ -ISO 10285:2007,https://www.iso.org/standard/32465.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO 10285:2007/Amd 1:2012,https://www.iso.org/standard/59969.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO 10317:2008,https://www.iso.org/standard/43572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 9,https://www.iso.org/contents/data/committee/04/55/45586/x/catalogue/ -ISO 10317:2008/Amd 1:2013,https://www.iso.org/standard/62161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 9,https://www.iso.org/contents/data/committee/04/55/45586/x/catalogue/ -ISO/DTR 10657,https://www.iso.org/standard/65407.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO/TR 10657:1991,https://www.iso.org/standard/18751.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 12043:2007,https://www.iso.org/standard/44031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 12044:2014,https://www.iso.org/standard/60134.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 12,https://www.iso.org/contents/data/committee/64/86/648645/x/catalogue/ -ISO 12090-1:2011,https://www.iso.org/standard/42462.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO 12090-2:2011,https://www.iso.org/standard/42463.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO 12297:2012,https://www.iso.org/standard/51323.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO/NP 12297-1,https://www.iso.org/standard/69103.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO/FDIS 12297-2,https://www.iso.org/standard/66225.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 4/SC 5,https://www.iso.org/contents/data/committee/04/55/45572/x/catalogue/ -ISO 13012-1:2009,https://www.iso.org/standard/44912.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO/CD 13012-1,https://www.iso.org/standard/68339.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO 13012-2:2009,https://www.iso.org/standard/44913.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO/CD 13012-2,https://www.iso.org/standard/68338.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO 14728-1:2017,https://www.iso.org/standard/66682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 14728-2:2017,https://www.iso.org/standard/66683.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 15241:2012,https://www.iso.org/standard/60135.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 15242-1:2015,https://www.iso.org/standard/62929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 15242-2:2015,https://www.iso.org/standard/62930.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 15242-3:2017,https://www.iso.org/standard/69873.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 15242-4:2017,https://www.iso.org/standard/69872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 15243:2017,https://www.iso.org/standard/59619.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 15312,https://www.iso.org/standard/69112.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 15312:2003,https://www.iso.org/standard/26281.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO/TS 16281:2008,https://www.iso.org/standard/40621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO/TS 16281:2008/Cor 1:2009,https://www.iso.org/standard/54086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO/DIS 19843,https://www.iso.org/standard/66358.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 4/SC 12,https://www.iso.org/contents/data/committee/64/86/648645/x/catalogue/ -ISO 20015:2017,https://www.iso.org/standard/66848.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 20056-1:2017,https://www.iso.org/standard/66916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 20056-2:2017,https://www.iso.org/standard/66918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 4/SC 8,https://www.iso.org/contents/data/committee/04/55/45578/x/catalogue/ -ISO 20515:2012,https://www.iso.org/standard/60136.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 4/SC 12,https://www.iso.org/contents/data/committee/64/86/648645/x/catalogue/ -ISO 20516:2007,https://www.iso.org/standard/39527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 4/SC 12,https://www.iso.org/contents/data/committee/64/86/648645/x/catalogue/ -ISO/CD 21250-1,https://www.iso.org/standard/70245.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO/WD 22872,https://www.iso.org/standard/74064.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/55/45566/x/catalogue/ -ISO/DTS 23768-1,https://www.iso.org/standard/69871.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO/TS 23768-1:2011,https://www.iso.org/standard/41845.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 4,https://www.iso.org/contents/data/committee/04/55/45544/x/catalogue/ -ISO 24393:2008,https://www.iso.org/standard/43031.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 4/SC 11,https://www.iso.org/contents/data/committee/04/55/45590/x/catalogue/ -ISO 496:1973,https://www.iso.org/standard/4547.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 14,https://www.iso.org/contents/data/committee/04/62/46214/x/catalogue/ -ISO 4863:1984,https://www.iso.org/standard/10843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14:1982,https://www.iso.org/standard/3596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 14,https://www.iso.org/contents/data/committee/04/62/46214/x/catalogue/ -ISO 3117:1977,https://www.iso.org/standard/8274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 14,https://www.iso.org/contents/data/committee/04/62/46214/x/catalogue/ -ISO 3912:1977,https://www.iso.org/standard/9534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 14,https://www.iso.org/contents/data/committee/04/62/46214/x/catalogue/ -ISO 4156-1:2005,https://www.iso.org/standard/36497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 14,https://www.iso.org/contents/data/committee/04/62/46214/x/catalogue/ -ISO 4156-2:2005,https://www.iso.org/standard/36498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 14,https://www.iso.org/contents/data/committee/04/62/46214/x/catalogue/ -ISO 4156-2:2005/Cor 1:2011,https://www.iso.org/standard/58000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 14,https://www.iso.org/contents/data/committee/04/62/46214/x/catalogue/ -ISO 4156-3:2005,https://www.iso.org/standard/36499.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 14,https://www.iso.org/contents/data/committee/04/62/46214/x/catalogue/ -ISO 6413:1988,https://www.iso.org/standard/12757.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO/DIS 6413,https://www.iso.org/standard/66650.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 14694:2003,https://www.iso.org/standard/37371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 14694:2003/Amd 1:2010,https://www.iso.org/standard/56778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 16084:2017,https://www.iso.org/standard/68452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 19499:2007,https://www.iso.org/standard/42442.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/CD 21940-1,https://www.iso.org/standard/73726.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-2:2017,https://www.iso.org/standard/68131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-11:2016,https://www.iso.org/standard/54074.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-12:2016,https://www.iso.org/standard/50429.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-13:2012,https://www.iso.org/standard/56561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-14:2012,https://www.iso.org/standard/50430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-21:2012,https://www.iso.org/standard/56562.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-23:2012,https://www.iso.org/standard/54075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-31:2013,https://www.iso.org/standard/50431.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21940-32:2012,https://www.iso.org/standard/56564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 4708:2017,https://www.iso.org/standard/71702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 4709:2017,https://www.iso.org/standard/69751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9222-1:1989,https://www.iso.org/standard/16853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 9222-2:1989,https://www.iso.org/standard/16854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 2162-1:1993,https://www.iso.org/standard/6953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 2162-2:1993,https://www.iso.org/standard/6954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 11891:2012,https://www.iso.org/standard/50975.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 16249:2013,https://www.iso.org/standard/56004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 18137:2015,https://www.iso.org/standard/67839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 19690-1:2017,https://www.iso.org/standard/67840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO/FDIS 19690-2,https://www.iso.org/standard/67842.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 26909:2009,https://www.iso.org/standard/43902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 26910-1:2009,https://www.iso.org/standard/43903.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 26910-1:2009/Amd 1:2017,https://www.iso.org/standard/67843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 227,https://www.iso.org/contents/data/committee/36/93/369318/x/catalogue/ -ISO 53:1998,https://www.iso.org/standard/22643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 54:1996,https://www.iso.org/standard/22644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 677:1976,https://www.iso.org/standard/4845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 678:1976,https://www.iso.org/standard/4846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 701:1998,https://www.iso.org/standard/23865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1122-1:1998,https://www.iso.org/standard/5649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1122-1:1998/Cor 1:1999,https://www.iso.org/standard/31037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1122-1:1998/Cor 2:2009,https://www.iso.org/standard/54311.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1122-2:1999,https://www.iso.org/standard/5650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 1328-1:2013,https://www.iso.org/standard/45309.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 1328-2:1997,https://www.iso.org/standard/5900.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/NP 1328-2,https://www.iso.org/standard/70386.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 2203:1973,https://www.iso.org/standard/7006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 2490:2007,https://www.iso.org/standard/33092.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 4468:2009,https://www.iso.org/standard/39216.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 4468:2009/Cor 1:2009,https://www.iso.org/standard/55519.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO/NP 4468,https://www.iso.org/standard/68727.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 6336-1:2006,https://www.iso.org/standard/36327.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 6336-1:2006/Cor 1:2008,https://www.iso.org/standard/51337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/NP 6336-1,https://www.iso.org/standard/63819.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 6336-2:2006,https://www.iso.org/standard/36328.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 6336-2:2006/Cor 1:2008,https://www.iso.org/standard/51339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/NP 6336-2,https://www.iso.org/standard/63821.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 6336-3:2006,https://www.iso.org/standard/36329.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 6336-3:2006/Cor 1:2008,https://www.iso.org/standard/51338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/NP 6336-3,https://www.iso.org/standard/63822.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/DTS 6336-4,https://www.iso.org/standard/73533.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 6336-5:2016,https://www.iso.org/standard/55353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 6336-6:2006,https://www.iso.org/standard/38788.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 6336-6:2006/Cor 1:2007,https://www.iso.org/standard/46474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/NP 6336-6,https://www.iso.org/standard/63823.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TS 6336-20:2017,https://www.iso.org/standard/73529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TS 6336-21:2017,https://www.iso.org/standard/73530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/DTS 6336-22,https://www.iso.org/standard/73528.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TR 6336-30:2017,https://www.iso.org/standard/73531.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/DTR 6336-31,https://www.iso.org/standard/73532.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 8579-1:2002,https://www.iso.org/standard/24327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 9083:2001,https://www.iso.org/standard/16669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 9085:2002,https://www.iso.org/standard/16671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TR 10064-1:2017,https://www.iso.org/standard/69972.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-2:1996,https://www.iso.org/standard/18033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-2:1996/Cor 1:2001,https://www.iso.org/standard/35328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-2:1996/Cor 2:2006,https://www.iso.org/standard/44619.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-3:1996,https://www.iso.org/standard/23866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-3:1996/Cor 1:2006,https://www.iso.org/standard/44620.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-4:1998,https://www.iso.org/standard/23867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-4:1998/Cor 1:2006,https://www.iso.org/standard/44621.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-5:2005,https://www.iso.org/standard/35537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-5:2005/Cor 1:2006,https://www.iso.org/standard/44622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 10064-6:2009,https://www.iso.org/standard/36348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 10300-1:2014,https://www.iso.org/standard/51705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 10300-2:2014,https://www.iso.org/standard/51704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 10300-3:2014,https://www.iso.org/standard/51703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TR 10300-30:2017,https://www.iso.org/standard/73534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 10825:1995,https://www.iso.org/standard/2042.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO/NP 10825,https://www.iso.org/standard/70583.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO/TR 10828:2015,https://www.iso.org/standard/55352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 13691:2001,https://www.iso.org/standard/22638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/DTS 13989-1,https://www.iso.org/standard/69382.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/DTS 13989-2,https://www.iso.org/standard/69383.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 14104:2017,https://www.iso.org/standard/70396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TR 14179-1:2001,https://www.iso.org/standard/34636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TR 14179-2:2001,https://www.iso.org/standard/30109.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/NP TR 14521,https://www.iso.org/standard/70392.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO/TR 14521:2010,https://www.iso.org/standard/51227.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO 14635-1:2000,https://www.iso.org/standard/25004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 14635-2:2004,https://www.iso.org/standard/29603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 14635-3:2005,https://www.iso.org/standard/38873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TR 15144-1:2014,https://www.iso.org/standard/64038.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/TR 15144-2:2014,https://www.iso.org/standard/55370.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 17485:2006,https://www.iso.org/standard/33094.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 18653:2003,https://www.iso.org/standard/31828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO/TR 18792:2008,https://www.iso.org/standard/38874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/DTR 19041,https://www.iso.org/standard/63788.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 21771:2007,https://www.iso.org/standard/35989.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 1,https://www.iso.org/contents/data/committee/04/92/49236/x/catalogue/ -ISO/TR 22849:2011,https://www.iso.org/standard/44767.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO/DTR 23425,https://www.iso.org/standard/71079.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 23509:2016,https://www.iso.org/standard/63832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -IEC 61400-4:2012,https://www.iso.org/standard/44298.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 22:1991,https://www.iso.org/standard/3609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 155:1998,https://www.iso.org/standard/25449.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO/DIS 155,https://www.iso.org/standard/70613.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 254:2011,https://www.iso.org/standard/56057.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 255:1990,https://www.iso.org/standard/4154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 1081:2013,https://www.iso.org/standard/59452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 1604:1989,https://www.iso.org/standard/6198.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 1813:2014,https://www.iso.org/standard/55527.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 4183:1995,https://www.iso.org/standard/25817.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 4184:1992,https://www.iso.org/standard/9958.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 5288:2017,https://www.iso.org/standard/70625.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 5290:2001,https://www.iso.org/standard/34404.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 5291:2011,https://www.iso.org/standard/56058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 5292:1995,https://www.iso.org/standard/11293.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 5294:2012,https://www.iso.org/standard/56003.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 5295:2017,https://www.iso.org/standard/70626.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 8370-1:1993,https://www.iso.org/standard/21257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 8370-2:1993,https://www.iso.org/standard/21258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 8419:2003,https://www.iso.org/standard/34461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 9563:2015,https://www.iso.org/standard/61639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 9608:1994,https://www.iso.org/standard/22746.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 9980:2012,https://www.iso.org/standard/60851.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 9982:1998,https://www.iso.org/standard/25805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 11749:2014,https://www.iso.org/standard/55528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 12046:2012,https://www.iso.org/standard/41585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 13050:2014,https://www.iso.org/standard/60482.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 17396:2017,https://www.iso.org/standard/70627.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO/CD 19346,https://www.iso.org/standard/64661.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 19347:2015,https://www.iso.org/standard/64662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO/CD 21342,https://www.iso.org/standard/74775.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 487:1998,https://www.iso.org/standard/25830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 606:2015,https://www.iso.org/standard/61232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 1275:2006,https://www.iso.org/standard/34516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 3512:1992,https://www.iso.org/standard/8878.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 4347:2015,https://www.iso.org/standard/50823.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 6971:2002,https://www.iso.org/standard/30948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 6972:2002,https://www.iso.org/standard/30949.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 10823:2004,https://www.iso.org/standard/31532.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 10823:2004/Cor 1:2008,https://www.iso.org/standard/50980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 13203:2005,https://www.iso.org/standard/37271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 15654:2015,https://www.iso.org/standard/50842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 10816-6:1995,https://www.iso.org/standard/1553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-6:1995/Amd 1:2015,https://www.iso.org/standard/66034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 11515:2013/DAmd 1,https://www.iso.org/standard/71920.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 16528-1:2007,https://www.iso.org/standard/41079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 11,https://www.iso.org/contents/data/committee/04/61/46156/x/catalogue/ -ISO 16528-2:2007,https://www.iso.org/standard/41080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 11,https://www.iso.org/contents/data/committee/04/61/46156/x/catalogue/ -ISO 18665:2015,https://www.iso.org/standard/63152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 19884,https://www.iso.org/standard/65487.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 3500:2005,https://www.iso.org/standard/35829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 3500:2005/Amd 1:2010,https://www.iso.org/standard/51576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 3807:2013,https://www.iso.org/standard/59667.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 4706:2008,https://www.iso.org/standard/39102.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 5145:2017,https://www.iso.org/standard/69937.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 6406:2005,https://www.iso.org/standard/29921.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 7225:2005,https://www.iso.org/standard/33253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 7225:2005/Amd 1:2012,https://www.iso.org/standard/57103.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO/NP TR 7470,https://www.iso.org/standard/69940.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/TR 7470:1988,https://www.iso.org/standard/14208.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 7866:2012,https://www.iso.org/standard/37438.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 7866:2012/Cor 1:2014,https://www.iso.org/standard/66140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 9809-1:2010,https://www.iso.org/standard/41498.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/CD 9809-1,https://www.iso.org/standard/70377.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 9809-2:2010,https://www.iso.org/standard/41499.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/CD 9809-2,https://www.iso.org/standard/70378.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 9809-3:2010,https://www.iso.org/standard/41500.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/CD 9809-3,https://www.iso.org/standard/70379.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 9809-4:2014,https://www.iso.org/standard/59839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 10156:2017,https://www.iso.org/standard/66752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 10286:2015,https://www.iso.org/standard/55978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 10297:2014,https://www.iso.org/standard/51435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 10297:2014/Amd 1:2017,https://www.iso.org/standard/69853.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 10460:2005,https://www.iso.org/standard/33358.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO/DIS 10460,https://www.iso.org/standard/68494.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 10461:2005,https://www.iso.org/standard/33359.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 10461:2005/Amd 1:2006,https://www.iso.org/standard/44228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 10462:2013,https://www.iso.org/standard/57736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 10464:2004,https://www.iso.org/standard/34234.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 10691:2004,https://www.iso.org/standard/34235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 10692-1:2001,https://www.iso.org/standard/32049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 10692-2:2001,https://www.iso.org/standard/24925.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 10961:2010,https://www.iso.org/standard/56856.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO/CD 10961,https://www.iso.org/standard/73003.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 11114-1:2012,https://www.iso.org/standard/50504.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 11114-1:2012/Amd 1:2017,https://www.iso.org/standard/64586.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 11114-2:2013,https://www.iso.org/standard/50505.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 11114-3:2010,https://www.iso.org/standard/50506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 11114-4:2017,https://www.iso.org/standard/64587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 11117:2008,https://www.iso.org/standard/37772.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 11117:2008/Cor 1:2009,https://www.iso.org/standard/54096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/AWI 11117,https://www.iso.org/standard/69934.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 11118:2015,https://www.iso.org/standard/45767.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11118:2015/DAmd 1,https://www.iso.org/standard/72816.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11119-1:2012,https://www.iso.org/standard/50555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11119-2:2012,https://www.iso.org/standard/43590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11119-2:2012/Amd 1:2014,https://www.iso.org/standard/63327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11119-3:2013,https://www.iso.org/standard/50523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11119-4:2016,https://www.iso.org/standard/59757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11120:2015,https://www.iso.org/standard/43592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11363-1:2018,https://www.iso.org/standard/69931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 11363-2:2017,https://www.iso.org/standard/69932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/NP TR 11364,https://www.iso.org/standard/70814.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO/TR 11364:2012,https://www.iso.org/standard/50450.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 11372:2011,https://www.iso.org/standard/52771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 11439:2013,https://www.iso.org/standard/44755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11513:2011,https://www.iso.org/standard/50567.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/CD 11513,https://www.iso.org/standard/72882.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11515:2013,https://www.iso.org/standard/50568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11621:1997,https://www.iso.org/standard/19553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 11623:2015,https://www.iso.org/standard/54963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 11625:2007,https://www.iso.org/standard/39814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 11755:2005,https://www.iso.org/standard/35969.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 12209:2013,https://www.iso.org/standard/55932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 12209:2013/Amd 1:2016,https://www.iso.org/standard/65514.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/TR 12391-1:2001,https://www.iso.org/standard/33518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/TR 12391-2:2002,https://www.iso.org/standard/37436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/TR 12391-3:2002,https://www.iso.org/standard/37437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/TR 12391-4:2002,https://www.iso.org/standard/37537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/TR 13086-1:2011,https://www.iso.org/standard/52747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/TR 13086-2:2017,https://www.iso.org/standard/70619.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/PRF TR 13086-3,https://www.iso.org/standard/70371.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 13088:2011,https://www.iso.org/standard/52770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 13341:2010,https://www.iso.org/standard/50503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 13341:2010/Amd 1:2015,https://www.iso.org/standard/59968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 13769:2007,https://www.iso.org/standard/38950.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO/FDIS 13769,https://www.iso.org/standard/66185.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 13770:1997,https://www.iso.org/standard/22866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 14245:2006,https://www.iso.org/standard/38603.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/DIS 14245,https://www.iso.org/standard/68493.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 14246:2014,https://www.iso.org/standard/53945.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 14246:2014/Amd 1:2017,https://www.iso.org/standard/69854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 14456:2015,https://www.iso.org/standard/54790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 14456:2015/NP Amd 1,https://www.iso.org/standard/74688.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/TR 14600:2000,https://www.iso.org/standard/24886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58,https://www.iso.org/contents/data/committee/04/90/49008/x/catalogue/ -ISO 15245-1:2001,https://www.iso.org/standard/27047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 15245-1:2001/Amd 1:2013,https://www.iso.org/standard/61324.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 15245-2:2001,https://www.iso.org/standard/27048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/TS 15453:2017,https://www.iso.org/standard/69205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 15995:2006,https://www.iso.org/standard/38611.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/DIS 15995,https://www.iso.org/standard/68471.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 15996:2017,https://www.iso.org/standard/66160.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/TR 16115:2013,https://www.iso.org/standard/55698.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 16148:2016,https://www.iso.org/standard/55292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 16964:2015,https://www.iso.org/standard/58054.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/DIS 16964,https://www.iso.org/standard/74016.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/TR 17329:2015,https://www.iso.org/standard/59593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO/FDIS 17519,https://www.iso.org/standard/59945.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 17871:2015,https://www.iso.org/standard/60884.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 17871:2015/DAmd 1,https://www.iso.org/standard/73160.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 17879:2017,https://www.iso.org/standard/60885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/FDIS 18119,https://www.iso.org/standard/61505.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 18172-1:2007,https://www.iso.org/standard/38598.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 18172-2:2007,https://www.iso.org/standard/38599.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO/DIS 19016.3,https://www.iso.org/standard/63737.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 19078:2013,https://www.iso.org/standard/51026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO/TR 19811:2017,https://www.iso.org/standard/66261.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 20475,https://www.iso.org/standard/68150.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 20703:2006,https://www.iso.org/standard/34256.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 21007-1:2005,https://www.iso.org/standard/36223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 21007-2:2015,https://www.iso.org/standard/63131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 21172-1:2015,https://www.iso.org/standard/59840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 21172-1:2015/DAmd 1,https://www.iso.org/standard/72910.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 22434:2006,https://www.iso.org/standard/36219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 22435:2007,https://www.iso.org/standard/36220.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 22435:2007/Amd 1:2012,https://www.iso.org/standard/58064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/TR 22694:2008,https://www.iso.org/standard/46351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 22991:2004,https://www.iso.org/standard/35242.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 24431:2016,https://www.iso.org/standard/63063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 25760:2009,https://www.iso.org/standard/45999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 12991:2012,https://www.iso.org/standard/52299.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 20421-1:2006,https://www.iso.org/standard/34176.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 20421-1:2006/Cor 1:2007,https://www.iso.org/standard/46406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO/DIS 20421-1,https://www.iso.org/standard/68589.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 20421-2:2017,https://www.iso.org/standard/56920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21009-1:2008,https://www.iso.org/standard/44616.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21009-2:2015,https://www.iso.org/standard/57009.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21010:2017,https://www.iso.org/standard/70957.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21011:2008,https://www.iso.org/standard/44851.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO/AWI 21011,https://www.iso.org/standard/74044.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21012,https://www.iso.org/standard/64651.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21012:2006,https://www.iso.org/standard/34376.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21013-1:2008,https://www.iso.org/standard/44631.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21013-2:2007,https://www.iso.org/standard/36740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21013-2:2007/DAmd 1,https://www.iso.org/standard/74045.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21013-3:2016,https://www.iso.org/standard/56919.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21013-4:2012,https://www.iso.org/standard/50229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21014:2006,https://www.iso.org/standard/34378.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO/CD 21014,https://www.iso.org/standard/69613.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21028-1:2016,https://www.iso.org/standard/64259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21028-2,https://www.iso.org/standard/64260.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21028-2:2004,https://www.iso.org/standard/35636.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21029-1,https://www.iso.org/standard/65433.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21029-1:2004,https://www.iso.org/standard/34383.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21029-2:2015,https://www.iso.org/standard/56922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 23208:2017,https://www.iso.org/standard/65989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 24490:2016,https://www.iso.org/standard/64666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 6412-1:2017,https://www.iso.org/standard/73352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 6412-2:2017,https://www.iso.org/standard/73353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 6412-3:2017,https://www.iso.org/standard/73354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 6708:1995,https://www.iso.org/standard/21274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 10,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO 7268:1983,https://www.iso.org/standard/13923.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 5/SC 10,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO 7268:1983/Amd 1:1984,https://www.iso.org/standard/13925.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 10,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO 9311-1:2005,https://www.iso.org/standard/34448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9311-2:2011,https://www.iso.org/standard/51920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9311-3:2005,https://www.iso.org/standard/34450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TS 10465-1:2007,https://www.iso.org/standard/33353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/TR 10465-2:2007,https://www.iso.org/standard/38778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/TR 10465-3:2007,https://www.iso.org/standard/38779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10802:1992,https://www.iso.org/standard/18864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 10804:2018,https://www.iso.org/standard/72575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 10931:2005,https://www.iso.org/standard/36773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 10931:2005/Amd 1:2015,https://www.iso.org/standard/63472.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 11295:2017,https://www.iso.org/standard/69517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 13056:2011,https://www.iso.org/standard/52473.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13845:2015,https://www.iso.org/standard/61256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13951:2015,https://www.iso.org/standard/63339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 14617-3:2002,https://www.iso.org/standard/22651.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 15493:2003,https://www.iso.org/standard/27909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 15493:2003/Amd 1:2016,https://www.iso.org/standard/68434.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 15493:2003/Cor 1:2004,https://www.iso.org/standard/40426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 15494:2015,https://www.iso.org/standard/55627.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 15853:1999,https://www.iso.org/standard/29282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TS 15874-7:2003,https://www.iso.org/standard/29403.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-1:2003,https://www.iso.org/standard/29396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-1:2003/Amd 1:2007,https://www.iso.org/standard/43287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15876-1:2017,https://www.iso.org/standard/63010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 15877-7:2009,https://www.iso.org/standard/41070.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 18468:2017,https://www.iso.org/standard/62515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 21003-1:2008,https://www.iso.org/standard/43514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21003-5:2008,https://www.iso.org/standard/40041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22391-1:2009,https://www.iso.org/standard/46395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22391-5:2009,https://www.iso.org/standard/46398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD TS 22391-7,https://www.iso.org/standard/68528.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 22391-7:2011,https://www.iso.org/standard/55406.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 65:1981,https://www.iso.org/standard/3703.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 1127:1992,https://www.iso.org/standard/5660.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 3304:1985,https://www.iso.org/standard/8549.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 3305:1985,https://www.iso.org/standard/8551.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 3306:1985,https://www.iso.org/standard/8553.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 3545-1:1989,https://www.iso.org/standard/8937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 3545-2:1989,https://www.iso.org/standard/8938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 4179:2005,https://www.iso.org/standard/35244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 4200:1991,https://www.iso.org/standard/9985.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 5252:1991,https://www.iso.org/standard/11252.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 5256:1985,https://www.iso.org/standard/11253.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 6761:1981,https://www.iso.org/standard/13255.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 7598:1988,https://www.iso.org/standard/14387.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 8179-1:2017,https://www.iso.org/standard/64771.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 8179-2:2017,https://www.iso.org/standard/66367.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 8180:2006,https://www.iso.org/standard/35247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 9095:1990,https://www.iso.org/standard/16689.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 9329-1:1989,https://www.iso.org/standard/17004.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9329-2:1997,https://www.iso.org/standard/17005.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9329-3:1997,https://www.iso.org/standard/17006.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9329-4:1997,https://www.iso.org/standard/17007.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-1:1990,https://www.iso.org/standard/17008.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-2:1997,https://www.iso.org/standard/17009.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-3:1997,https://www.iso.org/standard/17010.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-4:2000,https://www.iso.org/standard/32441.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-5:2000,https://www.iso.org/standard/32443.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-6:1997,https://www.iso.org/standard/17013.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10332:2010,https://www.iso.org/standard/44660.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10803:2011,https://www.iso.org/standard/50914.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 10893-1:2011,https://www.iso.org/standard/44662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-2:2011,https://www.iso.org/standard/44664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-3:2011,https://www.iso.org/standard/44678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-4:2011,https://www.iso.org/standard/44674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-5:2011,https://www.iso.org/standard/44677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-6:2011,https://www.iso.org/standard/44675.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/DIS 10893-6,https://www.iso.org/standard/69805.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-7:2011,https://www.iso.org/standard/46367.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/DIS 10893-7,https://www.iso.org/standard/69806.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-8:2011,https://www.iso.org/standard/44669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-9:2011,https://www.iso.org/standard/44673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-10:2011,https://www.iso.org/standard/44665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-11:2011,https://www.iso.org/standard/44667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-12:2011,https://www.iso.org/standard/44670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 13470:2012,https://www.iso.org/standard/53811.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 16132:2016,https://www.iso.org/standard/65495.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 16134:2006,https://www.iso.org/standard/40651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 18468:2017,https://www.iso.org/standard/62515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 6362-1:2012,https://www.iso.org/standard/52235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6362-2:2014,https://www.iso.org/standard/65059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-1:2012,https://www.iso.org/standard/54486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-2:2012,https://www.iso.org/standard/54488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-6:2012,https://www.iso.org/standard/54493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 161-1:2018,https://www.iso.org/standard/65253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138,https://www.iso.org/contents/data/committee/05/25/52500/x/catalogue/ -ISO 161-2:1996,https://www.iso.org/standard/24510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138,https://www.iso.org/contents/data/committee/05/25/52500/x/catalogue/ -ISO 265-1:1988,https://www.iso.org/standard/4172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 1167-1:2006,https://www.iso.org/standard/33981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 1167-2:2006,https://www.iso.org/standard/33982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 1167-3:2007,https://www.iso.org/standard/33983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 1167-4:2007,https://www.iso.org/standard/33984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 1452-1:2009,https://www.iso.org/standard/50361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-2:2009,https://www.iso.org/standard/50362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-3:2009,https://www.iso.org/standard/50363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-4:2009,https://www.iso.org/standard/50364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-5:2009,https://www.iso.org/standard/50365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 2505:2005,https://www.iso.org/standard/33601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 2507-1:1995,https://www.iso.org/standard/20854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 2507-2:1995,https://www.iso.org/standard/20855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 2507-3:1995,https://www.iso.org/standard/20856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3114:1977,https://www.iso.org/standard/8271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3126:2005,https://www.iso.org/standard/32202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3127:1994,https://www.iso.org/standard/8285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3213:2009,https://www.iso.org/standard/46420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3514:1976,https://www.iso.org/standard/8881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3633:2002,https://www.iso.org/standard/25662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 4059:1978,https://www.iso.org/standard/9767.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 4065:2018,https://www.iso.org/standard/65254.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138,https://www.iso.org/contents/data/committee/05/25/52500/x/catalogue/ -ISO/TR 4191:2014,https://www.iso.org/standard/44039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007,https://www.iso.org/standard/40062.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007/Amd 1:2015,https://www.iso.org/standard/60828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007/Cor 1:2008,https://www.iso.org/standard/52225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-1,https://www.iso.org/standard/72183.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-2:2007,https://www.iso.org/standard/40063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-2:2007/Amd 1:2014,https://www.iso.org/standard/64583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-2,https://www.iso.org/standard/72184.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-5:2007,https://www.iso.org/standard/40065.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-5,https://www.iso.org/standard/72186.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4433-1:1997,https://www.iso.org/standard/21521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 4433-2:1997,https://www.iso.org/standard/21622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 4433-3:1997,https://www.iso.org/standard/22531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 4433-4:1997,https://www.iso.org/standard/22532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 4435:2003,https://www.iso.org/standard/36994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 4439:1979,https://www.iso.org/standard/10341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 6259-1:2015,https://www.iso.org/standard/62422.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 6259-2:1997,https://www.iso.org/standard/22374.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/NP 6259-2,https://www.iso.org/standard/73774.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 6259-3:2015,https://www.iso.org/standard/62421.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 6964:1986,https://www.iso.org/standard/13514.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/DIS 6964,https://www.iso.org/standard/63054.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/NP TR 7024,https://www.iso.org/standard/75345.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/TS 7024:2005,https://www.iso.org/standard/32985.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 7245:1984,https://www.iso.org/standard/13897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 7246:1984,https://www.iso.org/standard/13898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 7432:2002,https://www.iso.org/standard/33014.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/DIS 7432.2,https://www.iso.org/standard/65185.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7509:2015,https://www.iso.org/standard/61012.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7510:2017,https://www.iso.org/standard/65189.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7511:1999,https://www.iso.org/standard/14278.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7671:2003,https://www.iso.org/standard/33704.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 7675:2003,https://www.iso.org/standard/31877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 7682:2003,https://www.iso.org/standard/33705.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 7684:1997,https://www.iso.org/standard/14503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7685:1998,https://www.iso.org/standard/14504.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/CD 7685,https://www.iso.org/standard/71168.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7686:2005,https://www.iso.org/standard/41308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8283-1:1991,https://www.iso.org/standard/15399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-2:1992,https://www.iso.org/standard/15400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-3:1992,https://www.iso.org/standard/15401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-4:1992,https://www.iso.org/standard/15402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8361-1:1991,https://www.iso.org/standard/15509.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8361-2:1991,https://www.iso.org/standard/15510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8361-3:1991,https://www.iso.org/standard/15511.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8483:2003,https://www.iso.org/standard/33015.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8483:2003/Amd 1:2012,https://www.iso.org/standard/56678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/DIS 8483,https://www.iso.org/standard/67697.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8513:2016,https://www.iso.org/standard/66790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8521:2009,https://www.iso.org/standard/46535.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8533:2003,https://www.iso.org/standard/33016.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8533:2003/Amd 1:2012,https://www.iso.org/standard/56679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/DIS 8533,https://www.iso.org/standard/67962.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8770:2003,https://www.iso.org/standard/33706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8772:2006,https://www.iso.org/standard/39901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8773:2006,https://www.iso.org/standard/39902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8779:2010,https://www.iso.org/standard/45550.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 8779:2010/Amd 1:2014,https://www.iso.org/standard/64585.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/DIS 8779,https://www.iso.org/standard/70102.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 8795:2001,https://www.iso.org/standard/31311.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8796:2004,https://www.iso.org/standard/29645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 9080:2012,https://www.iso.org/standard/43860.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9852:2007,https://www.iso.org/standard/43862.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9854-1:1994,https://www.iso.org/standard/17732.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9854-2:1994,https://www.iso.org/standard/17733.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9896:1996,https://www.iso.org/standard/17777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 9967:2016,https://www.iso.org/standard/62369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9969:2016,https://www.iso.org/standard/62370.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 10146:1997,https://www.iso.org/standard/18141.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/DIS 10146,https://www.iso.org/standard/70973.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 10147:2011,https://www.iso.org/standard/54759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TR 10358:1993,https://www.iso.org/standard/18415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 10466:1997,https://www.iso.org/standard/18529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10467:2004,https://www.iso.org/standard/33530.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10467:2004/Amd 1:2012,https://www.iso.org/standard/52273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/FDIS 10467,https://www.iso.org/standard/70198.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10468:2003,https://www.iso.org/standard/32230.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10468:2003/Amd 1:2010,https://www.iso.org/standard/55953.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/PRF 10468,https://www.iso.org/standard/71166.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10471:2003,https://www.iso.org/standard/32234.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10471:2003/Amd 1:2010,https://www.iso.org/standard/56652.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/PRF 10471,https://www.iso.org/standard/70029.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/TR 10501:1993,https://www.iso.org/standard/18570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 10508:2006,https://www.iso.org/standard/35045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 10508:2006/DAmd 1,https://www.iso.org/standard/73735.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 10639:2017,https://www.iso.org/standard/65187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10928:2016,https://www.iso.org/standard/68568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10952:2014,https://www.iso.org/standard/63949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 11173:1994,https://www.iso.org/standard/21320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 11296-1,https://www.iso.org/standard/70115.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-1:2009,https://www.iso.org/standard/41702.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-2:2018,https://www.iso.org/standard/67420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-3:2009,https://www.iso.org/standard/41727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-3:2009/Cor 1:2011,https://www.iso.org/standard/59665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11296-3,https://www.iso.org/standard/70116.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-4:2018,https://www.iso.org/standard/70117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-7:2011,https://www.iso.org/standard/41729.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11296-7,https://www.iso.org/standard/70118.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-1,https://www.iso.org/standard/70119.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-1:2013,https://www.iso.org/standard/59384.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-2:2018,https://www.iso.org/standard/67418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-3:2013,https://www.iso.org/standard/59385.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11297-3,https://www.iso.org/standard/70120.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-4:2018,https://www.iso.org/standard/67419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-1,https://www.iso.org/standard/70121.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-1:2010,https://www.iso.org/standard/2399.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-2:2018,https://www.iso.org/standard/67647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-3:2010,https://www.iso.org/standard/41730.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11298-3,https://www.iso.org/standard/70122.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11299-1:2011,https://www.iso.org/standard/2375.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-1,https://www.iso.org/standard/70123.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-2,https://www.iso.org/standard/70125.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11299-3:2011,https://www.iso.org/standard/41731.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-3,https://www.iso.org/standard/70124.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/TS 11619:2014,https://www.iso.org/standard/65366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 11673:2005,https://www.iso.org/standard/33308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 11922-1:2018,https://www.iso.org/standard/65255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138,https://www.iso.org/contents/data/committee/05/25/52500/x/catalogue/ -ISO 11922-2:1997,https://www.iso.org/standard/21186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138,https://www.iso.org/contents/data/committee/05/25/52500/x/catalogue/ -ISO 12091:1995,https://www.iso.org/standard/23580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 12162:2009,https://www.iso.org/standard/43865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 12176-1:2017,https://www.iso.org/standard/67803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-2:2008,https://www.iso.org/standard/46114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-3:2011,https://www.iso.org/standard/57269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-4:2003,https://www.iso.org/standard/31586.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12230:2012,https://www.iso.org/standard/57242.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TS 12512:2017,https://www.iso.org/standard/66763.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 13229:2010,https://www.iso.org/standard/53553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13254:2010,https://www.iso.org/standard/53554.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13255:2010,https://www.iso.org/standard/53555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13257:2010,https://www.iso.org/standard/53556.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 13257,https://www.iso.org/standard/72622.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13259:2010,https://www.iso.org/standard/53557.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/FDIS 13259,https://www.iso.org/standard/69999.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13260:2010,https://www.iso.org/standard/53558.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13260:2010/Amd 1:2017,https://www.iso.org/standard/72182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13262:2010,https://www.iso.org/standard/53559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13263:2010,https://www.iso.org/standard/53560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13264:2010,https://www.iso.org/standard/53561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13265:2010,https://www.iso.org/standard/53562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13266:2010,https://www.iso.org/standard/53563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13267:2010,https://www.iso.org/standard/53564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13268:2010,https://www.iso.org/standard/53565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13272:2011,https://www.iso.org/standard/53583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13477:2008,https://www.iso.org/standard/39858.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13478:2007,https://www.iso.org/standard/39859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13479:2009,https://www.iso.org/standard/45812.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13480:1997,https://www.iso.org/standard/22079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13760:1998,https://www.iso.org/standard/22841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13761:2017,https://www.iso.org/standard/63055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13844:2015,https://www.iso.org/standard/61255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13845:2015,https://www.iso.org/standard/61256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13950:2007,https://www.iso.org/standard/42220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 13950:2007/Cor 1:2008,https://www.iso.org/standard/50978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 13966:1998,https://www.iso.org/standard/23533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138,https://www.iso.org/contents/data/committee/05/25/52500/x/catalogue/ -ISO 13968:2008,https://www.iso.org/standard/43866.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 14531-1:2002,https://www.iso.org/standard/24631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-2:2004,https://www.iso.org/standard/39313.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-3:2010,https://www.iso.org/standard/57053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-4:2006,https://www.iso.org/standard/33854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 15306:2003,https://www.iso.org/standard/27204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 15306:2003/Amd 1:2012,https://www.iso.org/standard/56677.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 15874-1:2013,https://www.iso.org/standard/54134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-2:2013,https://www.iso.org/standard/54155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-2:2013/DAmd 1,https://www.iso.org/standard/64578.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-5:2013,https://www.iso.org/standard/54158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-5:2013/DAmd 1,https://www.iso.org/standard/67341.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-2:2003,https://www.iso.org/standard/29404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-2:2003/Amd 1:2007,https://www.iso.org/standard/42865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-5:2003,https://www.iso.org/standard/29406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-5:2003/Cor 1:2007,https://www.iso.org/standard/45585.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 15875-7:2003,https://www.iso.org/standard/29407.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15876-2:2017,https://www.iso.org/standard/63011.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15876-5:2017,https://www.iso.org/standard/63013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 15876-7:2003,https://www.iso.org/standard/29411.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-1:2009,https://www.iso.org/standard/41066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-1:2009/Amd 1:2010,https://www.iso.org/standard/52996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-2:2009,https://www.iso.org/standard/41067.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-2:2009/Amd 1:2010,https://www.iso.org/standard/52998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-5:2009,https://www.iso.org/standard/41069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-5:2009/Amd 1:2010,https://www.iso.org/standard/53001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 15877-7:2009,https://www.iso.org/standard/41070.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 16241:2005,https://www.iso.org/standard/32163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 16422:2014,https://www.iso.org/standard/55393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 16479:2012,https://www.iso.org/standard/56828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 16611:2017,https://www.iso.org/standard/65107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 16871:2003,https://www.iso.org/standard/30487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TR 16913:1999,https://www.iso.org/standard/32492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 17454:2006,https://www.iso.org/standard/42163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 17455:2005,https://www.iso.org/standard/42130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 17455:2005/Cor 1:2007,https://www.iso.org/standard/45630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 17456:2006,https://www.iso.org/standard/31381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 17484-1:2014,https://www.iso.org/standard/57597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 17484-2:2009,https://www.iso.org/standard/46115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 17778:2015,https://www.iso.org/standard/60518.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TS 17902:2016,https://www.iso.org/standard/69337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/TR 18124:2006,https://www.iso.org/standard/43867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18225:2012,https://www.iso.org/standard/60931.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/TS 18226:2006,https://www.iso.org/standard/42330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 18373-1:2007,https://www.iso.org/standard/43857.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18373-2:2008,https://www.iso.org/standard/43858.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18488:2015,https://www.iso.org/standard/62592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18489:2015,https://www.iso.org/standard/62593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18553:2002,https://www.iso.org/standard/31177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18553:2002/Amd 1:2007,https://www.iso.org/standard/43870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18672-1:2009,https://www.iso.org/standard/38801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 18851:2015,https://www.iso.org/standard/63575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 19220:2004,https://www.iso.org/standard/33758.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 19469-1.2,https://www.iso.org/standard/65005.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 19469-3.2,https://www.iso.org/standard/66987.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/TR 19480:2005,https://www.iso.org/standard/41785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 19893:2011,https://www.iso.org/standard/56541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 19899:2010,https://www.iso.org/standard/50939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/CD 19966,https://www.iso.org/standard/66755.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TS 20656-1:2017,https://www.iso.org/standard/68759.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 21003-2:2008,https://www.iso.org/standard/43515.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21003-2:2008/Amd 1:2011,https://www.iso.org/standard/55270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 21003-7:2008,https://www.iso.org/standard/46528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 21003-7:2008/Amd 1:2010,https://www.iso.org/standard/55271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21004:2006,https://www.iso.org/standard/34362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21138-1:2007,https://www.iso.org/standard/40026.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/CD 21138-1,https://www.iso.org/standard/72513.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-2:2007,https://www.iso.org/standard/40027.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 21138-2,https://www.iso.org/standard/69997.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-3:2007,https://www.iso.org/standard/40028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 21138-3,https://www.iso.org/standard/69998.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/FDIS 21225-1,https://www.iso.org/standard/70113.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/FDIS 21225-2,https://www.iso.org/standard/70114.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 21307:2017,https://www.iso.org/standard/63773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 21751:2011,https://www.iso.org/standard/50920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 22391-2:2009,https://www.iso.org/standard/46396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 23228:2011,https://www.iso.org/standard/43869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 24033:2009,https://www.iso.org/standard/45496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 25780:2011,https://www.iso.org/standard/43221.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/TS 26873:2010,https://www.iso.org/standard/43861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TR 27165:2012,https://www.iso.org/standard/44040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 49:1994,https://www.iso.org/standard/3686.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 49:1994/Cor 1:1997,https://www.iso.org/standard/28624.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 49:1994/FDAmd 1,https://www.iso.org/standard/71563.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 2016:1981,https://www.iso.org/standard/6783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 3419:1981,https://www.iso.org/standard/8736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 3545-3:1989,https://www.iso.org/standard/8939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 4144:2003,https://www.iso.org/standard/30111.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 4145:1986,https://www.iso.org/standard/9906.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 5251:1981,https://www.iso.org/standard/11250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 5,https://www.iso.org/contents/data/committee/04/56/45636/x/catalogue/ -ISO 5256:1985,https://www.iso.org/standard/11253.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 6761:1981,https://www.iso.org/standard/13255.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 265-1:1988,https://www.iso.org/standard/4172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 580:2005,https://www.iso.org/standard/26616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 727-1:2002,https://www.iso.org/standard/27405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 727-2:2005,https://www.iso.org/standard/41887.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1167-1:2006,https://www.iso.org/standard/33981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 1167-2:2006,https://www.iso.org/standard/33982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 1167-3:2007,https://www.iso.org/standard/33983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 1167-4:2007,https://www.iso.org/standard/33984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 1452-1:2009,https://www.iso.org/standard/50361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-2:2009,https://www.iso.org/standard/50362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-3:2009,https://www.iso.org/standard/50363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-4:2009,https://www.iso.org/standard/50364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-5:2009,https://www.iso.org/standard/50365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 2507-1:1995,https://www.iso.org/standard/20854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 2507-2:1995,https://www.iso.org/standard/20855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 2507-3:1995,https://www.iso.org/standard/20856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3514:1976,https://www.iso.org/standard/8881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3603:1977,https://www.iso.org/standard/9030.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4132:1979,https://www.iso.org/standard/9888.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007,https://www.iso.org/standard/40062.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007/Amd 1:2015,https://www.iso.org/standard/60828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007/Cor 1:2008,https://www.iso.org/standard/52225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-1,https://www.iso.org/standard/72183.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-3:2007,https://www.iso.org/standard/40064.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-3,https://www.iso.org/standard/72185.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-5:2007,https://www.iso.org/standard/40065.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-5,https://www.iso.org/standard/72186.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4439:1979,https://www.iso.org/standard/10341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 7245:1984,https://www.iso.org/standard/13897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 7246:1984,https://www.iso.org/standard/13898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 7432:2002,https://www.iso.org/standard/33014.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/DIS 7432.2,https://www.iso.org/standard/65185.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7510:2017,https://www.iso.org/standard/65189.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7511:1999,https://www.iso.org/standard/14278.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 7686:2005,https://www.iso.org/standard/41308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8283-1:1991,https://www.iso.org/standard/15399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-2:1992,https://www.iso.org/standard/15400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-3:1992,https://www.iso.org/standard/15401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-4:1992,https://www.iso.org/standard/15402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8361-1:1991,https://www.iso.org/standard/15509.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8361-2:1991,https://www.iso.org/standard/15510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8361-3:1991,https://www.iso.org/standard/15511.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8483:2003,https://www.iso.org/standard/33015.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8483:2003/Amd 1:2012,https://www.iso.org/standard/56678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/DIS 8483,https://www.iso.org/standard/67697.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8533:2003,https://www.iso.org/standard/33016.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8533:2003/Amd 1:2012,https://www.iso.org/standard/56679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/DIS 8533,https://www.iso.org/standard/67962.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 8772:2006,https://www.iso.org/standard/39901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8773:2006,https://www.iso.org/standard/39902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 9623:1997,https://www.iso.org/standard/17437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 9853:1991,https://www.iso.org/standard/17731.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 10147:2011,https://www.iso.org/standard/54759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TR 10358:1993,https://www.iso.org/standard/18415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 3,https://www.iso.org/contents/data/committee/05/25/52542/x/catalogue/ -ISO 10508:2006,https://www.iso.org/standard/35045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 10508:2006/DAmd 1,https://www.iso.org/standard/73735.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 10928:2016,https://www.iso.org/standard/68568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10952:2014,https://www.iso.org/standard/63949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 11296-1,https://www.iso.org/standard/70115.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-1:2009,https://www.iso.org/standard/41702.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-2:2018,https://www.iso.org/standard/67420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-3:2009,https://www.iso.org/standard/41727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-3:2009/Cor 1:2011,https://www.iso.org/standard/59665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11296-3,https://www.iso.org/standard/70116.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-4:2018,https://www.iso.org/standard/70117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-7:2011,https://www.iso.org/standard/41729.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11296-7,https://www.iso.org/standard/70118.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-1,https://www.iso.org/standard/70119.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-1:2013,https://www.iso.org/standard/59384.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-2:2018,https://www.iso.org/standard/67418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-3:2013,https://www.iso.org/standard/59385.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11297-3,https://www.iso.org/standard/70120.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-4:2018,https://www.iso.org/standard/67419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-1,https://www.iso.org/standard/70121.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-1:2010,https://www.iso.org/standard/2399.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-2:2018,https://www.iso.org/standard/67647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-3:2010,https://www.iso.org/standard/41730.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11298-3,https://www.iso.org/standard/70122.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11299-1:2011,https://www.iso.org/standard/2375.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-1,https://www.iso.org/standard/70123.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-2,https://www.iso.org/standard/70125.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11299-3:2011,https://www.iso.org/standard/41731.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-3,https://www.iso.org/standard/70124.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 12162:2009,https://www.iso.org/standard/43865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 12176-1:2017,https://www.iso.org/standard/67803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-2:2008,https://www.iso.org/standard/46114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-3:2011,https://www.iso.org/standard/57269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-4:2003,https://www.iso.org/standard/31586.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 13260:2010,https://www.iso.org/standard/53558.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13260:2010/Amd 1:2017,https://www.iso.org/standard/72182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13262:2010,https://www.iso.org/standard/53559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13263:2010,https://www.iso.org/standard/53560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13264:2010,https://www.iso.org/standard/53561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13265:2010,https://www.iso.org/standard/53562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13266:2010,https://www.iso.org/standard/53563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13267:2010,https://www.iso.org/standard/53564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13268:2010,https://www.iso.org/standard/53565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13272:2011,https://www.iso.org/standard/53583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13761:2017,https://www.iso.org/standard/63055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13924:2000,https://www.iso.org/standard/33030.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13950:2007,https://www.iso.org/standard/42220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 13950:2007/Cor 1:2008,https://www.iso.org/standard/50978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 13957:1997,https://www.iso.org/standard/23421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13966:1998,https://www.iso.org/standard/23533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138,https://www.iso.org/contents/data/committee/05/25/52500/x/catalogue/ -ISO 13967:2009,https://www.iso.org/standard/50937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 14531-1:2002,https://www.iso.org/standard/24631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-2:2004,https://www.iso.org/standard/39313.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-3:2010,https://www.iso.org/standard/57053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-4:2006,https://www.iso.org/standard/33854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 15306:2003,https://www.iso.org/standard/27204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 15306:2003/Amd 1:2012,https://www.iso.org/standard/56677.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 15874-3:2013,https://www.iso.org/standard/54157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-3:2013/DAmd 1,https://www.iso.org/standard/64577.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-3:2003,https://www.iso.org/standard/29405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15876-3:2017,https://www.iso.org/standard/63012.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-3:2009,https://www.iso.org/standard/41068.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-3:2009/Amd 1:2010,https://www.iso.org/standard/53000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 16241:2005,https://www.iso.org/standard/32163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 16422:2014,https://www.iso.org/standard/55393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 16611:2017,https://www.iso.org/standard/65107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 16871:2003,https://www.iso.org/standard/30487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TR 16913:1999,https://www.iso.org/standard/32492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 17484-1:2014,https://www.iso.org/standard/57597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 17484-2:2009,https://www.iso.org/standard/46115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 17885:2015,https://www.iso.org/standard/60932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 17885:2015/Amd 1:2016,https://www.iso.org/standard/70666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/TS 17902:2016,https://www.iso.org/standard/69337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 18225:2012,https://www.iso.org/standard/60931.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/TS 18226:2006,https://www.iso.org/standard/42330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 18488:2015,https://www.iso.org/standard/62592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18489:2015,https://www.iso.org/standard/62593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18553:2002,https://www.iso.org/standard/31177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18553:2002/Amd 1:2007,https://www.iso.org/standard/43870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 18672-1:2009,https://www.iso.org/standard/38801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/TR 19480:2005,https://www.iso.org/standard/41785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 19893:2011,https://www.iso.org/standard/56541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TS 19911:2010,https://www.iso.org/standard/50940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/CD 19966,https://www.iso.org/standard/66755.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 21003-3:2008,https://www.iso.org/standard/40040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21004:2006,https://www.iso.org/standard/34362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21138-1:2007,https://www.iso.org/standard/40026.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/CD 21138-1,https://www.iso.org/standard/72513.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-2:2007,https://www.iso.org/standard/40027.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 21138-2,https://www.iso.org/standard/69997.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-3:2007,https://www.iso.org/standard/40028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 21138-3,https://www.iso.org/standard/69998.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/FDIS 21225-1,https://www.iso.org/standard/70113.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/FDIS 21225-2,https://www.iso.org/standard/70114.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 21307:2017,https://www.iso.org/standard/63773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 21751:2011,https://www.iso.org/standard/50920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 22391-3:2009,https://www.iso.org/standard/46397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 26873:2010,https://www.iso.org/standard/43861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3458:2015,https://www.iso.org/standard/61257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3459:2015,https://www.iso.org/standard/61258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3501:2015,https://www.iso.org/standard/61259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3503:2015,https://www.iso.org/standard/61260.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 7005-1:2011,https://www.iso.org/standard/42467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 10,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO 7005-2:1988,https://www.iso.org/standard/13574.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 10,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO/CD 7005-2,https://www.iso.org/standard/68010.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO 7005-3:1988,https://www.iso.org/standard/13575.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 10,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO 8639:2016,https://www.iso.org/standard/61013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 9624:1997,https://www.iso.org/standard/17438.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 9624,https://www.iso.org/standard/67984.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 11413:2008,https://www.iso.org/standard/43863.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/DIS 11413,https://www.iso.org/standard/70031.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 11414:2009,https://www.iso.org/standard/43864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13783:1997,https://www.iso.org/standard/22926.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 13846:2000,https://www.iso.org/standard/23066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 13953:2001,https://www.iso.org/standard/23417.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13954:1997,https://www.iso.org/standard/23418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13955:1997,https://www.iso.org/standard/23419.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13956:2010,https://www.iso.org/standard/50926.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 19879:2010,https://www.iso.org/standard/55915.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/NP 19879,https://www.iso.org/standard/71180.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 19892:2011,https://www.iso.org/standard/56540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TS 19911:2010,https://www.iso.org/standard/50940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 27509:2012,https://www.iso.org/standard/44203.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 27509:2012/Cor 1:2013,https://www.iso.org/standard/64726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 1307:2006,https://www.iso.org/standard/41421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 1402:2009,https://www.iso.org/standard/45391.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 1403:2005,https://www.iso.org/standard/37226.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 2398:2016,https://www.iso.org/standard/68043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 3994:2014,https://www.iso.org/standard/59513.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4023:2009,https://www.iso.org/standard/50793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4080:2009,https://www.iso.org/standard/44402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4641:2016,https://www.iso.org/standard/70353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4671:2007,https://www.iso.org/standard/41600.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4671:2007/Amd 1:2011,https://www.iso.org/standard/59233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 5774:2016,https://www.iso.org/standard/68044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6134:2017,https://www.iso.org/standard/65367.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6224:2011,https://www.iso.org/standard/53015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6801:1983,https://www.iso.org/standard/13302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6801:1983/Amd 1:2011,https://www.iso.org/standard/58031.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6802:2005,https://www.iso.org/standard/40256.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/DIS 6802.2,https://www.iso.org/standard/65370.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6803:2017,https://www.iso.org/standard/68057.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 7233:2016,https://www.iso.org/standard/68052.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/DIS 7233,https://www.iso.org/standard/72848.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 7326:2016,https://www.iso.org/standard/68053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 7369:2004,https://www.iso.org/standard/32408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 11,https://www.iso.org/contents/data/committee/04/56/45660/x/catalogue/ -ISO 7662:1988,https://www.iso.org/standard/14481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 7751:2016,https://www.iso.org/standard/68054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8029:2014,https://www.iso.org/standard/59522.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8030:2014,https://www.iso.org/standard/62580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8031:2009,https://www.iso.org/standard/41795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8032:1997,https://www.iso.org/standard/21875.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8033:2016,https://www.iso.org/standard/68055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8308:2015,https://www.iso.org/standard/68056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8330:2014,https://www.iso.org/standard/57969.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8331:2016,https://www.iso.org/standard/68059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 10380:2012,https://www.iso.org/standard/52943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 11,https://www.iso.org/contents/data/committee/04/56/45660/x/catalogue/ -ISO 10619-1:2017,https://www.iso.org/standard/72845.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 10619-2:2017,https://www.iso.org/standard/72846.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 10619-3:2011,https://www.iso.org/standard/46022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 10806:2003,https://www.iso.org/standard/30177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 11,https://www.iso.org/contents/data/committee/04/56/45660/x/catalogue/ -ISO 10960:2017,https://www.iso.org/standard/72847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 12151-1:2010,https://www.iso.org/standard/41895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-1:2010/Amd 1:2017,https://www.iso.org/standard/70262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-2:2003,https://www.iso.org/standard/34963.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-3:2010,https://www.iso.org/standard/41896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-4:2007,https://www.iso.org/standard/42327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-5:2007,https://www.iso.org/standard/42328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-6:2009,https://www.iso.org/standard/41136.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 15465:2004,https://www.iso.org/standard/27752.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 5/SC 11,https://www.iso.org/contents/data/committee/04/56/45660/x/catalogue/ -ISO 17165-1:2007,https://www.iso.org/standard/41138.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/NP 17165-1,https://www.iso.org/standard/72979.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/PRF TS 17165-2,https://www.iso.org/standard/74155.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/TS 17165-2:2013,https://www.iso.org/standard/55651.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/TR 17784:2003,https://www.iso.org/standard/33236.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 18752:2014,https://www.iso.org/standard/64914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 19385:2017,https://www.iso.org/standard/64772.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/FDIS 19718,https://www.iso.org/standard/66113.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 28702:2008,https://www.iso.org/standard/44889.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 30013:2011,https://www.iso.org/standard/45700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 7483:1991,https://www.iso.org/standard/14226.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 10,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO 7483:1991/Cor 1:1995,https://www.iso.org/standard/26044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 10,https://www.iso.org/contents/data/committee/04/56/45646/x/catalogue/ -ISO 9691:1992,https://www.iso.org/standard/17546.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 5208:2015,https://www.iso.org/standard/65111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 5209:1977,https://www.iso.org/standard/11209.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 5210:2017,https://www.iso.org/standard/52534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 5211:2017,https://www.iso.org/standard/62594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 5752:1982,https://www.iso.org/standard/11877.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 6552:1980,https://www.iso.org/standard/12950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 6552:1980/Cor 1:2009,https://www.iso.org/standard/54556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 6553:2016,https://www.iso.org/standard/64759.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 6554:1980,https://www.iso.org/standard/12952.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 6704:1982,https://www.iso.org/standard/13145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 6948:1981,https://www.iso.org/standard/13495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 7841:1988,https://www.iso.org/standard/14762.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 7842:1988,https://www.iso.org/standard/14763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 8233:1988,https://www.iso.org/standard/15335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 8659:1989,https://www.iso.org/standard/16039.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO/NP 8659,https://www.iso.org/standard/74740.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 9393-1:2004,https://www.iso.org/standard/35137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 9393-2:2005,https://www.iso.org/standard/38446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 10497:2010,https://www.iso.org/standard/45603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 14617-8:2002,https://www.iso.org/standard/33386.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 15848-1:2015,https://www.iso.org/standard/61441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 15848-1:2015/Amd 1:2017,https://www.iso.org/standard/69773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 15848-2:2015,https://www.iso.org/standard/61442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 19240:2017,https://www.iso.org/standard/64119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO/CD 22153,https://www.iso.org/standard/72706.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 22434:2006,https://www.iso.org/standard/36219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 28921-1:2013,https://www.iso.org/standard/59734.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 28921-2:2015,https://www.iso.org/standard/59735.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 21787:2006,https://www.iso.org/standard/34693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 21787:2006/CD Amd 1,https://www.iso.org/standard/73476.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 7121:2016,https://www.iso.org/standard/67848.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 16135:2006,https://www.iso.org/standard/30869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 16135:2006/CD Amd 1,https://www.iso.org/standard/73471.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 17292:2015,https://www.iso.org/standard/59736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 6002:1992,https://www.iso.org/standard/12198.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 16139:2006,https://www.iso.org/standard/30873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 16139:2006/CD Amd 1,https://www.iso.org/standard/73475.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 10297:2014,https://www.iso.org/standard/51435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 10297:2014/Amd 1:2017,https://www.iso.org/standard/69853.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 16137:2006,https://www.iso.org/standard/30871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 16137:2006/CD Amd 1,https://www.iso.org/standard/73473.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 19240:2017,https://www.iso.org/standard/64119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 10631:2013,https://www.iso.org/standard/55648.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 16136:2006,https://www.iso.org/standard/30870.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 16136:2006/CD Amd 1,https://www.iso.org/standard/73472.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 16138:2006,https://www.iso.org/standard/30872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 16138:2006/CD Amd 1,https://www.iso.org/standard/73474.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 2858:1975,https://www.iso.org/standard/7862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 3069:2000,https://www.iso.org/standard/8184.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 3661:1977,https://www.iso.org/standard/9112.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO 5198:1987,https://www.iso.org/standard/11203.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 115/SC 2,https://www.iso.org/contents/data/committee/05/17/51790/x/catalogue/ -ISO 5199:2002,https://www.iso.org/standard/31945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 9905:1994,https://www.iso.org/standard/17788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 9905:1994/Amd 1:2011,https://www.iso.org/standard/57327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 9905:1994/Cor 1:2005,https://www.iso.org/standard/41990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 9906:2012,https://www.iso.org/standard/41202.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 115/SC 2,https://www.iso.org/contents/data/committee/05/17/51790/x/catalogue/ -ISO 9908:1993,https://www.iso.org/standard/17790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 9908:1993/Amd 1:2011,https://www.iso.org/standard/57328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO/ASME 14414:2015,https://www.iso.org/standard/54740.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO/ASME 14414:2015/Amd 1:2016,https://www.iso.org/standard/68822.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO/ASME DIS 14414,https://www.iso.org/standard/71534.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO 14617-9:2002,https://www.iso.org/standard/33388.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14847:1999,https://www.iso.org/standard/25745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 15783:2002,https://www.iso.org/standard/28987.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 15783:2002/Amd 1:2008,https://www.iso.org/standard/45649.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO 16330:2003,https://www.iso.org/standard/32189.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 115/SC 1,https://www.iso.org/contents/data/committee/05/17/51776/x/catalogue/ -ISO/TR 17766:2005,https://www.iso.org/standard/41671.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO 17769-1:2012,https://www.iso.org/standard/55821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO 17769-2:2012,https://www.iso.org/standard/54108.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO/DTR 19688,https://www.iso.org/standard/66015.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 115/SC 2,https://www.iso.org/contents/data/committee/05/17/51790/x/catalogue/ -ISO 20361:2015,https://www.iso.org/standard/67396.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO/DIS 20361,https://www.iso.org/standard/70650.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 115,https://www.iso.org/contents/data/committee/05/17/51766/x/catalogue/ -ISO 21049:2004,https://www.iso.org/standard/35625.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO/DIS 21049,https://www.iso.org/standard/45610.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO 21630:2007,https://www.iso.org/standard/35953.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 115/SC 2,https://www.iso.org/contents/data/committee/05/17/51790/x/catalogue/ -ISO 1219-1:2012,https://www.iso.org/standard/60184.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 1219-1:2012/Amd 1:2016,https://www.iso.org/standard/66287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 1219-2:2012,https://www.iso.org/standard/51200.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 1219-3:2016,https://www.iso.org/standard/62614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 1,https://www.iso.org/contents/data/committee/05/22/52242/x/catalogue/ -ISO 2944:2000,https://www.iso.org/standard/7995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 4413:2010,https://www.iso.org/standard/44781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 9,https://www.iso.org/contents/data/committee/05/23/52356/x/catalogue/ -ISO 4414:2010,https://www.iso.org/standard/44790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 9,https://www.iso.org/contents/data/committee/05/23/52356/x/catalogue/ -ISO 5598:2008,https://www.iso.org/standard/39562.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO/CD 5598,https://www.iso.org/standard/67985.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 131/SC 1,https://www.iso.org/contents/data/committee/05/22/52242/x/catalogue/ -ISO 6072:2011,https://www.iso.org/standard/53353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6358-1:2013,https://www.iso.org/standard/56612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6358-2:2013,https://www.iso.org/standard/56613.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO/NP 6358-2,https://www.iso.org/standard/71270.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6358-3:2014,https://www.iso.org/standard/56616.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 8778:2003,https://www.iso.org/standard/26559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 9110-1:1990,https://www.iso.org/standard/16704.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO/CD 9110-1,https://www.iso.org/standard/73716.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 9110-2:1990,https://www.iso.org/standard/16705.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO/CD 9110-2,https://www.iso.org/standard/73715.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO/TR 10686:2013,https://www.iso.org/standard/46050.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 14617-10:2002,https://www.iso.org/standard/33389.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 15086-1:2001,https://www.iso.org/standard/31581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 15086-2:2000,https://www.iso.org/standard/26409.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 15086-3:2008,https://www.iso.org/standard/41577.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO/TR 16194:2017,https://www.iso.org/standard/62339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 18582-1:2016,https://www.iso.org/standard/62959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 1,https://www.iso.org/contents/data/committee/05/22/52242/x/catalogue/ -ISO/DIS 18582-2,https://www.iso.org/standard/69294.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 1,https://www.iso.org/contents/data/committee/05/22/52242/x/catalogue/ -ISO 18869:2017,https://www.iso.org/standard/63640.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/TR 19972-1:2009,https://www.iso.org/standard/39192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 19973-1:2015,https://www.iso.org/standard/62570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 19973-2:2015,https://www.iso.org/standard/62571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 19973-2:2015/DAmd 1,https://www.iso.org/standard/70981.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 19973-3:2015,https://www.iso.org/standard/62572.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 19973-4:2014,https://www.iso.org/standard/54826.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 19973-5:2015,https://www.iso.org/standard/54827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO/DTR 22165,https://www.iso.org/standard/72714.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 131/SC 9,https://www.iso.org/contents/data/committee/05/23/52356/x/catalogue/ -ISO 3019-1:2001,https://www.iso.org/standard/29258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 2,https://www.iso.org/contents/data/committee/05/22/52250/x/catalogue/ -ISO 3019-2:2001,https://www.iso.org/standard/29259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 2,https://www.iso.org/contents/data/committee/05/22/52250/x/catalogue/ -ISO 3019-2:2001/Cor 1:2006,https://www.iso.org/standard/45408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 2,https://www.iso.org/contents/data/committee/05/22/52250/x/catalogue/ -ISO 3662:1976,https://www.iso.org/standard/9113.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 2,https://www.iso.org/contents/data/committee/05/22/52250/x/catalogue/ -ISO 4391:1983,https://www.iso.org/standard/10288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 2,https://www.iso.org/contents/data/committee/05/22/52250/x/catalogue/ -ISO 4392-1:2002,https://www.iso.org/standard/34762.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4392-2:2002,https://www.iso.org/standard/34763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4392-3:1993,https://www.iso.org/standard/10294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4409:2007,https://www.iso.org/standard/37528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO/DIS 4409,https://www.iso.org/standard/68410.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4412-1:1991,https://www.iso.org/standard/10317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4412-2:1991,https://www.iso.org/standard/10319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 4412-3:1991,https://www.iso.org/standard/10320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 8426:2008,https://www.iso.org/standard/40351.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO/WD 8426,https://www.iso.org/standard/74349.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 10767-1:2015,https://www.iso.org/standard/59414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 10767-2:1999,https://www.iso.org/standard/1782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 10767-3:1999,https://www.iso.org/standard/25882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 16902-1:2003,https://www.iso.org/standard/31126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 17559:2003,https://www.iso.org/standard/30746.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 3320:2013,https://www.iso.org/standard/61647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 4393:2015,https://www.iso.org/standard/64053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 4395:2009,https://www.iso.org/standard/44086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 4395:2009/Cor 1:2010,https://www.iso.org/standard/56072.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 5597:2010,https://www.iso.org/standard/52154.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO/FDIS 5597,https://www.iso.org/standard/74704.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6020-1:2007,https://www.iso.org/standard/40298.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 6020-2:2015,https://www.iso.org/standard/61339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 6020-3:2015,https://www.iso.org/standard/61340.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 6022:2006,https://www.iso.org/standard/36109.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 6099:2009,https://www.iso.org/standard/43399.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO/DIS 6099,https://www.iso.org/standard/69737.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 6195:2013,https://www.iso.org/standard/54084.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6432:2015,https://www.iso.org/standard/64054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 6537:1982,https://www.iso.org/standard/12931.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 6547:1981,https://www.iso.org/standard/12941.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 7425-1:1988,https://www.iso.org/standard/14160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 7425-2:1989,https://www.iso.org/standard/14161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 8132:2014,https://www.iso.org/standard/61341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 8133:2014,https://www.iso.org/standard/61342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 8139:2009,https://www.iso.org/standard/45725.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO/DIS 8139,https://www.iso.org/standard/72168.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 8140:2009,https://www.iso.org/standard/45726.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO/DIS 8140,https://www.iso.org/standard/72169.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 10099:2001,https://www.iso.org/standard/30054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 10100:2001,https://www.iso.org/standard/30053.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 10100:2001/Amd 1:2012,https://www.iso.org/standard/61271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 10762:2015,https://www.iso.org/standard/61343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 10766:2014,https://www.iso.org/standard/62699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO/TS 13725:2016,https://www.iso.org/standard/62328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 13726:2008,https://www.iso.org/standard/40299.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 15552:2004,https://www.iso.org/standard/26284.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO/FDIS 15552,https://www.iso.org/standard/66921.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 16656:2016,https://www.iso.org/standard/65951.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 21287:2004,https://www.iso.org/standard/34465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 1179-1:2013,https://www.iso.org/standard/60250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 1179-2:2013,https://www.iso.org/standard/60889.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 1179-3:2007,https://www.iso.org/standard/41709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 1179-4:2007,https://www.iso.org/standard/41710.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 1436:2017,https://www.iso.org/standard/70382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 3862:2017,https://www.iso.org/standard/70383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 3949:2009,https://www.iso.org/standard/50796.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/DIS 3949.2,https://www.iso.org/standard/68050.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4079:2017,https://www.iso.org/standard/70375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4397:2011,https://www.iso.org/standard/50099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 4399:1995,https://www.iso.org/standard/22769.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/CD 4399,https://www.iso.org/standard/74791.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6149-1:2006,https://www.iso.org/standard/39281.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/DIS 6149-1,https://www.iso.org/standard/70260.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6149-2:2006,https://www.iso.org/standard/39280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6149-3:2006,https://www.iso.org/standard/39279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6149-4:2017,https://www.iso.org/standard/71182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6150:1988,https://www.iso.org/standard/12391.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/DIS 6150,https://www.iso.org/standard/73511.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6162-1:2012,https://www.iso.org/standard/52096.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6162-2,https://www.iso.org/standard/68567.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6162-2:2012,https://www.iso.org/standard/52097.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6164:1994,https://www.iso.org/standard/12412.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/FDIS 6164,https://www.iso.org/standard/59930.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6605:2017,https://www.iso.org/standard/67357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 7241:2014,https://www.iso.org/standard/54886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 8434-1:2007,https://www.iso.org/standard/38095.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/DIS 8434-1,https://www.iso.org/standard/62079.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 8434-2:2007,https://www.iso.org/standard/39278.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 8434-3:2005,https://www.iso.org/standard/37041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 8434-6:2009,https://www.iso.org/standard/41137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 9974-1:1996,https://www.iso.org/standard/17882.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 9974-2:1996,https://www.iso.org/standard/20503.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 9974-3:1996,https://www.iso.org/standard/20504.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 9974-4:2016,https://www.iso.org/standard/71181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 10763:1994,https://www.iso.org/standard/1620.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/CD 10763,https://www.iso.org/standard/73040.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 11237:2017,https://www.iso.org/standard/70374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/TR 11340:1994,https://www.iso.org/standard/19219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/TS 11672:2016,https://www.iso.org/standard/68229.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/TS 11686:2017,https://www.iso.org/standard/66734.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 11926-1:1995,https://www.iso.org/standard/20506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 11926-2:1995,https://www.iso.org/standard/20507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 11926-3:1995,https://www.iso.org/standard/20508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-1:2010,https://www.iso.org/standard/41895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-1:2010/Amd 1:2017,https://www.iso.org/standard/70262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-2:2003,https://www.iso.org/standard/34963.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-3:2010,https://www.iso.org/standard/41896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-4:2007,https://www.iso.org/standard/42327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-5:2007,https://www.iso.org/standard/42328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 12151-6:2009,https://www.iso.org/standard/41136.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 14540:2013,https://www.iso.org/standard/54888.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 14541:2013,https://www.iso.org/standard/54889.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 14743:2004,https://www.iso.org/standard/36441.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/DIS 14743,https://www.iso.org/standard/73164.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 15171-1:1999,https://www.iso.org/standard/26659.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 15171-2:2016,https://www.iso.org/standard/62095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 16028:1999,https://www.iso.org/standard/29852.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 16028:1999/Amd 1:2006,https://www.iso.org/standard/41713.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/CD 16028,https://www.iso.org/standard/70261.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 16030:2001,https://www.iso.org/standard/29554.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 16030:2001/Amd 1:2005,https://www.iso.org/standard/40208.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO/PRF TS 18409,https://www.iso.org/standard/66733.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 19879:2010,https://www.iso.org/standard/55915.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/NP 19879,https://www.iso.org/standard/71180.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 23297:2017,https://www.iso.org/standard/72844.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 23309:2007,https://www.iso.org/standard/36799.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/DIS 23309,https://www.iso.org/standard/61866.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/NP 23309,https://www.iso.org/standard/74772.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 4401:2005,https://www.iso.org/standard/33366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 4411:2008,https://www.iso.org/standard/43559.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO/DIS 4411,https://www.iso.org/standard/67811.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5599-1:2001,https://www.iso.org/standard/33074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5599-1:2001/Cor 1:2007,https://www.iso.org/standard/45540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5599-2:2001,https://www.iso.org/standard/33075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5599-2:2001/Amd 1:2004,https://www.iso.org/standard/38669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5599-2:2001/Cor 1:2007,https://www.iso.org/standard/45541.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5781:2016,https://www.iso.org/standard/62774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5783:1995,https://www.iso.org/standard/11921.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO/NP 5783,https://www.iso.org/standard/74330.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6263:2013,https://www.iso.org/standard/53396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6264:1998,https://www.iso.org/standard/20085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6403:1988,https://www.iso.org/standard/12740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 6953-1:2015,https://www.iso.org/standard/59754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6953-2:2015,https://www.iso.org/standard/59290.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6953-3:2012,https://www.iso.org/standard/50967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 7368:2016,https://www.iso.org/standard/62775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 7789:2007,https://www.iso.org/standard/40310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 7790:2013,https://www.iso.org/standard/53397.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 9461:1992,https://www.iso.org/standard/17190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 10041-1:2010,https://www.iso.org/standard/45819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 10041-2:2010,https://www.iso.org/standard/45821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 10094-1:2010,https://www.iso.org/standard/45824.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO/CD 10094-1,https://www.iso.org/standard/74329.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 10094-2:2010,https://www.iso.org/standard/45957.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO/CD 10094-2,https://www.iso.org/standard/74328.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 10372:1992,https://www.iso.org/standard/18433.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 10770-1:2009,https://www.iso.org/standard/50159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 10770-2:2012,https://www.iso.org/standard/55084.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 10770-3:2007,https://www.iso.org/standard/43219.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO/CD 10770-3,https://www.iso.org/standard/73619.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 11727:1999,https://www.iso.org/standard/19651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 12238:2001,https://www.iso.org/standard/20887.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 15218:2003,https://www.iso.org/standard/26927.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 15407-1:2000,https://www.iso.org/standard/27625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 15407-2:2003,https://www.iso.org/standard/27626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 15524:2011,https://www.iso.org/standard/44784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 16873:2011,https://www.iso.org/standard/53398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 16874:2004,https://www.iso.org/standard/30490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 17082:2004,https://www.iso.org/standard/30549.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO/TR 17209:2013,https://www.iso.org/standard/51298.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 20401:2017,https://www.iso.org/standard/67812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 2941:2009,https://www.iso.org/standard/41062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 2942:2004,https://www.iso.org/standard/34692.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/DIS 2942,https://www.iso.org/standard/68005.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 2943:1998,https://www.iso.org/standard/26832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 3601-1:2012,https://www.iso.org/standard/58043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-1:2012/Cor 1:2012,https://www.iso.org/standard/62415.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-1:2012/NP Amd 1,https://www.iso.org/standard/74051.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-2:2016,https://www.iso.org/standard/69880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-3:2005,https://www.iso.org/standard/40409.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-3:2005/DAmd 1,https://www.iso.org/standard/73527.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-4:2008,https://www.iso.org/standard/42115.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-5:2015,https://www.iso.org/standard/62902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3723:2015,https://www.iso.org/standard/66753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 3724:2007,https://www.iso.org/standard/45517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 3968:2017,https://www.iso.org/standard/64104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 4021:1992,https://www.iso.org/standard/9706.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 4405:1991,https://www.iso.org/standard/10310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 4406:2017,https://www.iso.org/standard/72618.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 4407:2002,https://www.iso.org/standard/28058.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 5782-1:2017,https://www.iso.org/standard/67310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5782-2:1997,https://www.iso.org/standard/11919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6194-1:2007,https://www.iso.org/standard/34678.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-2:2009,https://www.iso.org/standard/45846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-3:2009,https://www.iso.org/standard/43009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-4:2009,https://www.iso.org/standard/43010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-4:2009/NP Amd 1,https://www.iso.org/standard/74297.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-5:2008,https://www.iso.org/standard/42162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 7986:1997,https://www.iso.org/standard/14983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO/TR 10949:2002,https://www.iso.org/standard/32951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 11170:2013,https://www.iso.org/standard/55198.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 11171:2016,https://www.iso.org/standard/70291.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/CD 11171,https://www.iso.org/standard/72619.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 11500:2008,https://www.iso.org/standard/45552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 11943:1999,https://www.iso.org/standard/20511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/FDIS 11943,https://www.iso.org/standard/66514.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 12500-1:2007,https://www.iso.org/standard/41150.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 12500-2:2007,https://www.iso.org/standard/41151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 12500-3:2009,https://www.iso.org/standard/44113.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 12500-4:2009,https://www.iso.org/standard/50473.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 12669:2017,https://www.iso.org/standard/61558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 12829:2016,https://www.iso.org/standard/61624.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/TR 15640:2011,https://www.iso.org/standard/55509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/TR 16144:2002,https://www.iso.org/standard/30874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/TR 16386:2014,https://www.iso.org/standard/59488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 16431:2012,https://www.iso.org/standard/50158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 16589-1:2011,https://www.iso.org/standard/53934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-1:2011/DAmd 1,https://www.iso.org/standard/73526.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-2:2011,https://www.iso.org/standard/53935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-3:2011,https://www.iso.org/standard/53936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-4:2011,https://www.iso.org/standard/53937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-5:2011,https://www.iso.org/standard/53938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16860:2005,https://www.iso.org/standard/42161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 16889:2008,https://www.iso.org/standard/44870.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 16889:2008/CD Amd 1,https://www.iso.org/standard/74774.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/NP 16889,https://www.iso.org/standard/74773.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 16908:2014,https://www.iso.org/standard/57918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 18237:2017,https://www.iso.org/standard/61843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 18413:2015,https://www.iso.org/standard/54468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 21018-1:2008,https://www.iso.org/standard/35611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 21018-3:2008,https://www.iso.org/standard/35612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 21018-4:2016,https://www.iso.org/standard/61846.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/DIS 21018-4,https://www.iso.org/standard/72620.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 21049:2004,https://www.iso.org/standard/35625.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO/DIS 21049,https://www.iso.org/standard/45610.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO 23181:2007,https://www.iso.org/standard/36707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO/CD 23369,https://www.iso.org/standard/68546.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 27407:2010,https://www.iso.org/standard/44141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 3722:1976,https://www.iso.org/standard/9202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 3939:1977,https://www.iso.org/standard/9584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 4400:1994,https://www.iso.org/standard/20509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6301-1:2017,https://www.iso.org/standard/67813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6301-2:2006,https://www.iso.org/standard/39277.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 6952:1994,https://www.iso.org/standard/21625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 10771-1:2015,https://www.iso.org/standard/59660.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO/TR 10771-2:2008,https://www.iso.org/standard/31352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 8,https://www.iso.org/contents/data/committee/05/23/52330/x/catalogue/ -ISO 10946:1999,https://www.iso.org/standard/18922.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO/DTR 10946,https://www.iso.org/standard/74014.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 131,https://www.iso.org/contents/data/committee/05/22/52232/x/catalogue/ -ISO 15217:2000,https://www.iso.org/standard/26926.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO/DIS 20145,https://www.iso.org/standard/67149.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 5,https://www.iso.org/contents/data/committee/05/22/52286/x/catalogue/ -ISO 5136:2003,https://www.iso.org/standard/28316.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5151:2017,https://www.iso.org/standard/63409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 5801:2017,https://www.iso.org/standard/56517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 5802:2001,https://www.iso.org/standard/34619.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 5802:2001/Amd 1:2015,https://www.iso.org/standard/66364.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 9097:1991,https://www.iso.org/standard/16691.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 10302-1:2011,https://www.iso.org/standard/53963.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 10302-2:2011,https://www.iso.org/standard/45106.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 12499:1999,https://www.iso.org/standard/1629.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 12759:2010,https://www.iso.org/standard/51665.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 12759:2010/Amd 1:2013,https://www.iso.org/standard/62986.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO/AWI 12759-1,https://www.iso.org/standard/67572.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO/DIS 12759-2,https://www.iso.org/standard/67573.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO/DIS 12759-3,https://www.iso.org/standard/67574.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO/CD 12759-4,https://www.iso.org/standard/67575.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO/NP 12759-6,https://www.iso.org/standard/72031.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13253:2017,https://www.iso.org/standard/63407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13261-1:1998,https://www.iso.org/standard/3502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13261-2:1998,https://www.iso.org/standard/27294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13347-1:2004,https://www.iso.org/standard/34435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-1:2004/Amd 1:2010,https://www.iso.org/standard/56775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-1:2004/Cor 1:2006,https://www.iso.org/standard/44485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-2:2004,https://www.iso.org/standard/29752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-2:2004/Cor 1:2006,https://www.iso.org/standard/44484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-3:2004,https://www.iso.org/standard/29753.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-3:2004/Amd 1:2010,https://www.iso.org/standard/56776.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-3:2004/Cor 1:2006,https://www.iso.org/standard/44121.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-4:2004,https://www.iso.org/standard/29754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13347-4:2004/Cor 1:2006,https://www.iso.org/standard/44483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13348:2007,https://www.iso.org/standard/45118.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO/AWI 13348,https://www.iso.org/standard/73004.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13349:2010,https://www.iso.org/standard/46450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13350:2015,https://www.iso.org/standard/62033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 13351:2009,https://www.iso.org/standard/52816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 14617-9:2002,https://www.iso.org/standard/33388.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14694:2003,https://www.iso.org/standard/37371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 14694:2003/Amd 1:2010,https://www.iso.org/standard/56778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 14695:2003,https://www.iso.org/standard/37370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 14695:2003/Cor 1:2009,https://www.iso.org/standard/53630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 15042:2017,https://www.iso.org/standard/63408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-1:2013,https://www.iso.org/standard/56467.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-1:2013/Cor 1:2013,https://www.iso.org/standard/65095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-1:2013/DAmd 1,https://www.iso.org/standard/72399.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-2:2013,https://www.iso.org/standard/56468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-2:2013/Cor 1:2013,https://www.iso.org/standard/65096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-3:2013,https://www.iso.org/standard/56469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO/TS 16491:2012,https://www.iso.org/standard/56862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16494:2014,https://www.iso.org/standard/56867.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO/FDIS 18326,https://www.iso.org/standard/62182.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 27327-1:2009,https://www.iso.org/standard/44100.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 27327-2:2014,https://www.iso.org/standard/56780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 117,https://www.iso.org/contents/data/committee/05/18/51820/x/catalogue/ -ISO 1217:2009,https://www.iso.org/standard/44769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 1217:2009/Amd 1:2016,https://www.iso.org/standard/66998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 2151:2004,https://www.iso.org/standard/31316.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 3857-1:1977,https://www.iso.org/standard/9436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 3857-2:1977,https://www.iso.org/standard/9437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 3857-3:1989,https://www.iso.org/standard/9439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 3857-4:2012,https://www.iso.org/standard/55307.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 5388:1981,https://www.iso.org/standard/11424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 5389:2005,https://www.iso.org/standard/39665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 5390:1977,https://www.iso.org/standard/11426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 5390:1977/Amd 1:2017,https://www.iso.org/standard/73737.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 5391:2003,https://www.iso.org/standard/36692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 5941:1979,https://www.iso.org/standard/12135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 7183:2007,https://www.iso.org/standard/39401.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 10442:2002,https://www.iso.org/standard/36210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 11011:2013,https://www.iso.org/standard/46580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO/DTR 12942,https://www.iso.org/standard/73651.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO/TR 12942:2012,https://www.iso.org/standard/44633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 14617-9:2002,https://www.iso.org/standard/33388.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO/TS 17104:2006,https://www.iso.org/standard/42119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/DIS 18623-1.2,https://www.iso.org/standard/63040.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 18740:2016,https://www.iso.org/standard/63235.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 1608-1:1993,https://www.iso.org/standard/6205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 1608-2:1989,https://www.iso.org/standard/6207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 1609:1986,https://www.iso.org/standard/6209.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 2861:2013,https://www.iso.org/standard/58069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 3529-1:1981,https://www.iso.org/standard/8911.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 3529-2:1981,https://www.iso.org/standard/8913.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO/NP 3529-2,https://www.iso.org/standard/70611.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 3529-3:2014,https://www.iso.org/standard/56051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 3530:1979,https://www.iso.org/standard/8917.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 6,https://www.iso.org/contents/data/committee/05/24/52430/x/catalogue/ -ISO 3567:2011,https://www.iso.org/standard/59372.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 3669:2017,https://www.iso.org/standard/65135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 5302:2003,https://www.iso.org/standard/11311.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 9803-1:2007,https://www.iso.org/standard/40216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 9803-2:2007,https://www.iso.org/standard/40217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 14291:2012,https://www.iso.org/standard/54567.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 19685:2017,https://www.iso.org/standard/66010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO/DIS 20146,https://www.iso.org/standard/67152.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO/PRF TS 20175,https://www.iso.org/standard/67207.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO/PRF TS 20177,https://www.iso.org/standard/67208.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 21358:2007,https://www.iso.org/standard/40195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 21360-1:2012,https://www.iso.org/standard/59991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 21360-2:2012,https://www.iso.org/standard/50844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO/DIS 21360-3,https://www.iso.org/standard/63215.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO/DIS 21360-4,https://www.iso.org/standard/69441.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 27892:2010,https://www.iso.org/standard/44415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 27893:2011,https://www.iso.org/standard/58068.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 27894:2009,https://www.iso.org/standard/44417.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 27895:2009,https://www.iso.org/standard/44418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 112,https://www.iso.org/contents/data/committee/05/16/51654/x/catalogue/ -ISO 17296-2:2015,https://www.iso.org/standard/61626.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO 17296-3:2014,https://www.iso.org/standard/61627.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO 17296-4:2014,https://www.iso.org/standard/61628.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM 52900:2015,https://www.iso.org/standard/69669.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM CD 52900,https://www.iso.org/standard/74514.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM 52901:2017,https://www.iso.org/standard/67288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM CD 52902,https://www.iso.org/standard/67287.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM DIS 52903-1,https://www.iso.org/standard/67290.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM CD 52903-2,https://www.iso.org/standard/69968.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM CD 52907,https://www.iso.org/standard/73565.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM PRF 52910,https://www.iso.org/standard/67289.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM DIS 52911-1,https://www.iso.org/standard/72951.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM DIS 52911-2,https://www.iso.org/standard/72952.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM 52915:2016,https://www.iso.org/standard/67472.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM DIS 52915,https://www.iso.org/standard/74640.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM 52921:2013,https://www.iso.org/standard/62794.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/IEC Guide 75:2006,https://www.iso.org/standard/39033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/TR 11065:1992,https://www.iso.org/standard/19047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 11161:2007,https://www.iso.org/standard/35996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 11161:2007/Amd 1:2010,https://www.iso.org/standard/50323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 11354-1:2011,https://www.iso.org/standard/50417.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 11354-2:2015,https://www.iso.org/standard/57019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/TR 13283:1998,https://www.iso.org/standard/30882.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 14258:1998,https://www.iso.org/standard/24020.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15704:2000,https://www.iso.org/standard/28777.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15704:2000/Amd 1:2005,https://www.iso.org/standard/40962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/CD 15704,https://www.iso.org/standard/71890.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 16100-1:2009,https://www.iso.org/standard/53378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 16100-2:2003,https://www.iso.org/standard/35157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 16100-3:2005,https://www.iso.org/standard/35158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 16100-4:2006,https://www.iso.org/standard/35159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 16100-5:2009,https://www.iso.org/standard/50416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 16100-6:2011,https://www.iso.org/standard/55213.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/DIS 16100-6,https://www.iso.org/standard/73656.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/DIS 16300-1,https://www.iso.org/standard/64684.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/CD 16300-2,https://www.iso.org/standard/64685.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 16300-3:2017,https://www.iso.org/standard/53763.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/TR 18161:2013,https://www.iso.org/standard/60899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/PAS 19450:2015,https://www.iso.org/standard/62274.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 20140-1:2013,https://www.iso.org/standard/54809.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/AWI 20140-1,https://www.iso.org/standard/69358.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/FDIS 20140-2,https://www.iso.org/standard/64673.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/DIS 20140-3,https://www.iso.org/standard/64674.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 20140-5:2017,https://www.iso.org/standard/63171.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 22400-1:2014,https://www.iso.org/standard/56847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 22400-2:2014,https://www.iso.org/standard/54497.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 22400-2:2014/Amd 1:2017,https://www.iso.org/standard/68295.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/DTR 22400-10,https://www.iso.org/standard/71283.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 22745-1:2010,https://www.iso.org/standard/53995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 22745-2:2010,https://www.iso.org/standard/53997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 22745-10:2010,https://www.iso.org/standard/44192.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 22745-11:2010,https://www.iso.org/standard/53999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 22745-13:2010,https://www.iso.org/standard/54000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 22745-14:2010,https://www.iso.org/standard/54425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 22745-20:2010,https://www.iso.org/standard/54003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 22745-30:2009,https://www.iso.org/standard/45282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 22745-35:2010,https://www.iso.org/standard/53618.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 22745-40:2010,https://www.iso.org/standard/51938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/PRF TR 23087,https://www.iso.org/standard/74512.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 184,https://www.iso.org/contents/data/committee/05/41/54110/x/catalogue/ -ISO 23570-1:2005,https://www.iso.org/standard/39926.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 23570-2:2005,https://www.iso.org/standard/39927.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 23570-3:2009,https://www.iso.org/standard/53400.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -IEC 81346-1:2009,https://www.iso.org/standard/50857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -IEC 81346-2:2009,https://www.iso.org/standard/50858.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -IEC/DIS 81346-2,https://www.iso.org/standard/75265.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9524:1993,https://www.iso.org/standard/17257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10791-1:2015,https://www.iso.org/standard/54729.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-2:2001,https://www.iso.org/standard/18858.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-3:1998,https://www.iso.org/standard/25541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-3:1998/Cor 1:1999,https://www.iso.org/standard/33106.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-4:1998,https://www.iso.org/standard/18859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-5:1998,https://www.iso.org/standard/18860.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-6:2014,https://www.iso.org/standard/46440.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-7:2014,https://www.iso.org/standard/54730.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-7:2014/DAmd 1,https://www.iso.org/standard/64012.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/CD 10791-7,https://www.iso.org/standard/73814.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-8:2001,https://www.iso.org/standard/27645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-9:2001,https://www.iso.org/standard/27646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 10791-10:2007,https://www.iso.org/standard/42038.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-2:2014,https://www.iso.org/standard/55295.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-2:2014/Amd 1:2016,https://www.iso.org/standard/63976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-4:2005,https://www.iso.org/standard/36688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 841:2001,https://www.iso.org/standard/23949.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 2806:1994,https://www.iso.org/standard/7798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 2972:1979,https://www.iso.org/standard/8027.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 3592:2000,https://www.iso.org/standard/33798.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 4342:1985,https://www.iso.org/standard/10220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 4343:2000,https://www.iso.org/standard/33799.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 6983-1:2009,https://www.iso.org/standard/34608.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 13041-1:2004,https://www.iso.org/standard/34654.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 13041-1,https://www.iso.org/standard/69009.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 13041-2:2008,https://www.iso.org/standard/43027.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/CD 13041-2,https://www.iso.org/standard/73489.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/FDIS 13041-2,https://www.iso.org/standard/62947.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 13041-3:2009,https://www.iso.org/standard/43223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 13041-4:2004,https://www.iso.org/standard/34657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 13041-5:2015,https://www.iso.org/standard/56623.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 13041-6:2009,https://www.iso.org/standard/46439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 13041-7:2004,https://www.iso.org/standard/34661.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 13041-8:2004,https://www.iso.org/standard/34663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 14649-1:2003,https://www.iso.org/standard/34743.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 14649-10:2004,https://www.iso.org/standard/40895.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 14649-11:2004,https://www.iso.org/standard/40896.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 14649-12:2005,https://www.iso.org/standard/37346.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 14649-13:2013,https://www.iso.org/standard/52935.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 14649-14:2013,https://www.iso.org/standard/52936.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 14649-111:2010,https://www.iso.org/standard/34746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 14649-121:2005,https://www.iso.org/standard/37323.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO/TS 14649-201:2011,https://www.iso.org/standard/60042.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO/CD 19744-1,https://www.iso.org/standard/69986.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/CD 21919,https://www.iso.org/standard/72195.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO/CD 21919-1,https://www.iso.org/standard/75206.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO 8373:2012,https://www.iso.org/standard/55890.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 9283:1998,https://www.iso.org/standard/22244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 9409-1:2004,https://www.iso.org/standard/36578.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 9409-2:2002,https://www.iso.org/standard/36579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 9787:2013,https://www.iso.org/standard/59444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 9946:1999,https://www.iso.org/standard/28794.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 10218-1:2011,https://www.iso.org/standard/51330.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/CD 10218-1,https://www.iso.org/standard/73933.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 10218-2:2011,https://www.iso.org/standard/41571.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/CD 10218-2,https://www.iso.org/standard/73934.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 11593:1996,https://www.iso.org/standard/19528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/NP 11593,https://www.iso.org/standard/74676.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/TR 13309:1995,https://www.iso.org/standard/21679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 13482:2014,https://www.iso.org/standard/53820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 14539:2000,https://www.iso.org/standard/24062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/TS 15066:2016,https://www.iso.org/standard/62996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 18646-1:2016,https://www.iso.org/standard/63127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/DIS 18646-2,https://www.iso.org/standard/69057.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO 19649:2017,https://www.iso.org/standard/65658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/DTR 20218-1,https://www.iso.org/standard/69488.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/TR 20218-2:2017,https://www.iso.org/standard/70584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/CD 22166-1,https://www.iso.org/standard/72715.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/CD TR 23482-1,https://www.iso.org/standard/71564.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/CD TR 23482-2,https://www.iso.org/standard/71627.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 299,https://www.iso.org/contents/data/committee/59/15/5915511/x/catalogue/ -ISO/IEC Guide 77-1:2008,https://www.iso.org/standard/44065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 77-2:2008,https://www.iso.org/standard/44070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 77-3:2008,https://www.iso.org/standard/44071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 3511-1:1977,https://www.iso.org/standard/8869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 3511-2:1984,https://www.iso.org/standard/8871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 3511-3:1984,https://www.iso.org/standard/8873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 3511-4:1985,https://www.iso.org/standard/8875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO/TS 8000-1:2011,https://www.iso.org/standard/50798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-2:2017,https://www.iso.org/standard/73456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-2:2017/FDAmd 1,https://www.iso.org/standard/74962.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-8:2015,https://www.iso.org/standard/60805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 8000-60:2017,https://www.iso.org/standard/66234.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-61:2016,https://www.iso.org/standard/63086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DIS 8000-62,https://www.iso.org/standard/65340.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DIS 8000-63,https://www.iso.org/standard/65344.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-100:2016,https://www.iso.org/standard/62392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-110:2009,https://www.iso.org/standard/51653.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/PRF 8000-115,https://www.iso.org/standard/70095.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-120:2016,https://www.iso.org/standard/62393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-130:2016,https://www.iso.org/standard/62394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 8000-140:2016,https://www.iso.org/standard/62395.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 8000-150:2011,https://www.iso.org/standard/54579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 8000-311:2012,https://www.iso.org/standard/60010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 9506-1:2003,https://www.iso.org/standard/37079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 9506-2:2003,https://www.iso.org/standard/37080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 10303-1:1994,https://www.iso.org/standard/20579.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/AWI 10303-1,https://www.iso.org/standard/72237.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-11:2004,https://www.iso.org/standard/38047.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-14:2005,https://www.iso.org/standard/32472.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-21:2016,https://www.iso.org/standard/63141.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-22:1998,https://www.iso.org/standard/25097.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-23:2000,https://www.iso.org/standard/25098.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-24:2001,https://www.iso.org/standard/25099.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-25:2005,https://www.iso.org/standard/34536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-26:2011,https://www.iso.org/standard/50029.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-27:2000,https://www.iso.org/standard/32873.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-28:2007,https://www.iso.org/standard/40646.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-31:1994,https://www.iso.org/standard/20581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-32:1998,https://www.iso.org/standard/20582.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-34:2001,https://www.iso.org/standard/25073.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-35:2003,https://www.iso.org/standard/29286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-41:2014,https://www.iso.org/standard/64206.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-42:2014,https://www.iso.org/standard/60762.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-43:2011,https://www.iso.org/standard/50845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-44:2014,https://www.iso.org/standard/64209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-45:2014,https://www.iso.org/standard/64210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-46:2011,https://www.iso.org/standard/50848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-47:2014,https://www.iso.org/standard/64292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-49:1998,https://www.iso.org/standard/25101.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-50:2002,https://www.iso.org/standard/34357.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-50:2002/Cor 1:2010,https://www.iso.org/standard/57267.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-50:2002/Cor 2:2014,https://www.iso.org/standard/67876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-51:2005,https://www.iso.org/standard/42168.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-52:2011,https://www.iso.org/standard/44776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-52:2011/Cor 1:2014,https://www.iso.org/standard/67877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-53:2011,https://www.iso.org/standard/44777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-54:2005,https://www.iso.org/standard/37262.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-55:2005,https://www.iso.org/standard/38226.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-55:2005/Cor 1:2005,https://www.iso.org/standard/42295.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-56:2005,https://www.iso.org/standard/38308.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DIS 10303-57,https://www.iso.org/standard/66348.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-58:2011,https://www.iso.org/standard/51940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-59:2014,https://www.iso.org/standard/60009.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-61:2011,https://www.iso.org/standard/51333.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DIS 10303-62,https://www.iso.org/standard/71526.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-101:2014,https://www.iso.org/standard/63284.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-104:2000,https://www.iso.org/standard/32858.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-104:2000/Cor 1:2009,https://www.iso.org/standard/55059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-104:2000/Cor 2:2014,https://www.iso.org/standard/67878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-105:2014,https://www.iso.org/standard/64294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-107:2006,https://www.iso.org/standard/39607.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-108:2005,https://www.iso.org/standard/34697.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-108:2005/Cor 1:2008,https://www.iso.org/standard/51856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-108:2005/Cor 2:2014,https://www.iso.org/standard/67879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-109:2004,https://www.iso.org/standard/38039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-109:2004/Cor 1:2010,https://www.iso.org/standard/51857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-109:2004/Cor 2:2014,https://www.iso.org/standard/67880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-110:2011,https://www.iso.org/standard/52167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-111:2007,https://www.iso.org/standard/39561.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-111:2007/Cor 1:2008,https://www.iso.org/standard/52809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-111:2007/Cor 2:2014,https://www.iso.org/standard/67881.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-112:2006,https://www.iso.org/standard/39581.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-207:1999,https://www.iso.org/standard/25102.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-207:1999/Cor 1:2001,https://www.iso.org/standard/34899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-209:2014,https://www.iso.org/standard/59780.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-210:2014,https://www.iso.org/standard/64549.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/NP 10303-210,https://www.iso.org/standard/72406.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-212:2001,https://www.iso.org/standard/22930.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-215:2004,https://www.iso.org/standard/35663.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-215:2004/Cor 1:2008,https://www.iso.org/standard/50918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-216:2003,https://www.iso.org/standard/25078.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-216:2003/Cor 1:2008,https://www.iso.org/standard/50804.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-218:2004,https://www.iso.org/standard/35602.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-219:2007,https://www.iso.org/standard/38722.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-221:2007,https://www.iso.org/standard/36771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-223:2008,https://www.iso.org/standard/39842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-224:2006,https://www.iso.org/standard/36000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-225:1999,https://www.iso.org/standard/25091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-227:2005,https://www.iso.org/standard/34006.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-227:2005/Cor 1:2008,https://www.iso.org/standard/50931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-232:2002,https://www.iso.org/standard/27831.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-233:2012,https://www.iso.org/standard/55257.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-235:2009,https://www.iso.org/standard/44144.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-235:2009/Cor 1:2011,https://www.iso.org/standard/60282.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/CD 10303-235,https://www.iso.org/standard/74409.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-236:2006,https://www.iso.org/standard/42340.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-238:2007,https://www.iso.org/standard/38036.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-239:2012,https://www.iso.org/standard/54791.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/AWI 10303-239,https://www.iso.org/standard/70696.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-240:2005,https://www.iso.org/standard/37836.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-242:2014,https://www.iso.org/standard/57620.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-242:2014/Cor 1:2016,https://www.iso.org/standard/72059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/CD 10303-242,https://www.iso.org/standard/66654.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-304:2001,https://www.iso.org/standard/33594.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TR 10303-307:2000,https://www.iso.org/standard/31353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-325:2004,https://www.iso.org/standard/33595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-332:2002,https://www.iso.org/standard/27832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-403:2010,https://www.iso.org/standard/56238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-409:2014,https://www.iso.org/standard/63193.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-410:2014,https://www.iso.org/standard/64296.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-421:2005,https://www.iso.org/standard/40290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-433:2011,https://www.iso.org/standard/60674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-436:2006,https://www.iso.org/standard/42308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-439:2011,https://www.iso.org/standard/60675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-442:2014,https://www.iso.org/standard/64503.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-501:2000,https://www.iso.org/standard/27354.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-502:2000,https://www.iso.org/standard/27355.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-503:2011,https://www.iso.org/standard/59217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-504:2011,https://www.iso.org/standard/59218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-505:2000,https://www.iso.org/standard/27358.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-506:2011,https://www.iso.org/standard/59219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-507:2001,https://www.iso.org/standard/27360.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-508:2001,https://www.iso.org/standard/27361.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-509:2001,https://www.iso.org/standard/27362.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-510:2000,https://www.iso.org/standard/27363.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-511:2001,https://www.iso.org/standard/27364.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-512:1999,https://www.iso.org/standard/27365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-513:2000,https://www.iso.org/standard/27366.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-514:1999,https://www.iso.org/standard/27367.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-515:2000,https://www.iso.org/standard/27368.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-517:2011,https://www.iso.org/standard/59220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-518:2014,https://www.iso.org/standard/64299.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-519:2000,https://www.iso.org/standard/29958.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-519:2000/Cor 1:2000,https://www.iso.org/standard/34594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-520:2011,https://www.iso.org/standard/59214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-521:2011,https://www.iso.org/standard/59215.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-522:2014,https://www.iso.org/standard/64300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-523:2011,https://www.iso.org/standard/59216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1001:2014,https://www.iso.org/standard/64301.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1002:2014,https://www.iso.org/standard/64302.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1003:2014,https://www.iso.org/standard/64303.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1004:2014,https://www.iso.org/standard/63285.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1005:2014,https://www.iso.org/standard/64304.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1006:2010,https://www.iso.org/standard/56926.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1007:2010,https://www.iso.org/standard/56927.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1008:2014,https://www.iso.org/standard/64305.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1009:2010,https://www.iso.org/standard/56928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1010:2014,https://www.iso.org/standard/64306.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1011:2004,https://www.iso.org/standard/37903.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1012:2010,https://www.iso.org/standard/56250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1013:2011,https://www.iso.org/standard/60622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1014:2014,https://www.iso.org/standard/67882.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1015:2004,https://www.iso.org/standard/37907.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1016:2010,https://www.iso.org/standard/56929.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1017:2010,https://www.iso.org/standard/56395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1018:2004,https://www.iso.org/standard/37910.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1019:2006,https://www.iso.org/standard/44819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1020:2006,https://www.iso.org/standard/44820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1021:2011,https://www.iso.org/standard/60623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1022:2014,https://www.iso.org/standard/64307.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1023:2014,https://www.iso.org/standard/64308.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1024:2004,https://www.iso.org/standard/37919.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1025:2011,https://www.iso.org/standard/60757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1026:2014,https://www.iso.org/standard/64309.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1027:2014,https://www.iso.org/standard/64310.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1030:2014,https://www.iso.org/standard/64311.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1032:2014,https://www.iso.org/standard/64312.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1033:2014,https://www.iso.org/standard/64313.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1034:2014,https://www.iso.org/standard/64314.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1036:2004,https://www.iso.org/standard/37947.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1038:2006,https://www.iso.org/standard/44824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1039:2004,https://www.iso.org/standard/37953.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1040:2008,https://www.iso.org/standard/52555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1041:2014,https://www.iso.org/standard/64315.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1042:2014,https://www.iso.org/standard/64316.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1043:2014,https://www.iso.org/standard/64317.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1044:2004,https://www.iso.org/standard/37923.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1046:2006,https://www.iso.org/standard/44825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1047:2014,https://www.iso.org/standard/64318.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1049:2014,https://www.iso.org/standard/64319.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1050:2014,https://www.iso.org/standard/64320.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1051:2014,https://www.iso.org/standard/67918.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1052:2014,https://www.iso.org/standard/64322.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1054:2014,https://www.iso.org/standard/64323.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1055:2004,https://www.iso.org/standard/37925.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1056:2010,https://www.iso.org/standard/56263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1057:2014,https://www.iso.org/standard/64324.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1058:2010,https://www.iso.org/standard/56262.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1059:2014,https://www.iso.org/standard/64325.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1060:2004,https://www.iso.org/standard/37934.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1061:2014,https://www.iso.org/standard/64326.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1062:2011,https://www.iso.org/standard/60624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1063:2014,https://www.iso.org/standard/64327.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1064:2004,https://www.iso.org/standard/37935.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1065:2004,https://www.iso.org/standard/37936.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1068:2014,https://www.iso.org/standard/64328.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1070:2014,https://www.iso.org/standard/64329.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1071:2005,https://www.iso.org/standard/39429.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1074:2005,https://www.iso.org/standard/39462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1077:2005,https://www.iso.org/standard/39441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1080:2005,https://www.iso.org/standard/39459.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1085:2005,https://www.iso.org/standard/39460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1091:2005,https://www.iso.org/standard/39456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1092:2005,https://www.iso.org/standard/39455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1099:2005,https://www.iso.org/standard/39458.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1101:2005,https://www.iso.org/standard/38040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1102:2005,https://www.iso.org/standard/38041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1103:2014,https://www.iso.org/standard/64330.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1104:2014,https://www.iso.org/standard/64331.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1105:2004,https://www.iso.org/standard/38433.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1106:2014,https://www.iso.org/standard/64332.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1108:2014,https://www.iso.org/standard/64333.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1109:2014,https://www.iso.org/standard/64334.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1110:2014,https://www.iso.org/standard/64335.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1111:2014,https://www.iso.org/standard/64336.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1112:2014,https://www.iso.org/standard/64337.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1113:2006,https://www.iso.org/standard/44831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1114:2014,https://www.iso.org/standard/64338.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1115:2014,https://www.iso.org/standard/64339.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1116:2010,https://www.iso.org/standard/56372.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1118:2004,https://www.iso.org/standard/37951.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1121:2014,https://www.iso.org/standard/64340.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1122:2014,https://www.iso.org/standard/64341.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1123:2004,https://www.iso.org/standard/37939.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1124:2004,https://www.iso.org/standard/37940.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1126:2014,https://www.iso.org/standard/64342.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1127:2014,https://www.iso.org/standard/66656.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1128:2004,https://www.iso.org/standard/37943.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DTS 10303-1129,https://www.iso.org/standard/64343.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1129:2010,https://www.iso.org/standard/56272.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1130:2014,https://www.iso.org/standard/64344.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1131:2014,https://www.iso.org/standard/64345.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1132:2014,https://www.iso.org/standard/64346.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1133:2011,https://www.iso.org/standard/60627.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1134:2004,https://www.iso.org/standard/39756.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1136:2014,https://www.iso.org/standard/64347.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1140:2010,https://www.iso.org/standard/52570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1141:2014,https://www.iso.org/standard/64348.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1142:2014,https://www.iso.org/standard/66741.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1143:2005,https://www.iso.org/standard/39509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1144:2005,https://www.iso.org/standard/39510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1145:2005,https://www.iso.org/standard/39511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1146:2005,https://www.iso.org/standard/39512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1147:2014,https://www.iso.org/standard/64350.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1151:2005,https://www.iso.org/standard/40300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1156:2005,https://www.iso.org/standard/39439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1157:2005,https://www.iso.org/standard/39440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1158:2005,https://www.iso.org/standard/39442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1159:2005,https://www.iso.org/standard/39443.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1160:2005,https://www.iso.org/standard/39444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1161:2005,https://www.iso.org/standard/39445.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1162:2005,https://www.iso.org/standard/39446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1163:2005,https://www.iso.org/standard/39448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1164:2011,https://www.iso.org/standard/60628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1165:2005,https://www.iso.org/standard/39452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1166:2005,https://www.iso.org/standard/39449.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1167:2005,https://www.iso.org/standard/39450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1168:2005,https://www.iso.org/standard/39451.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1169:2005,https://www.iso.org/standard/39427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1170:2005,https://www.iso.org/standard/39428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1171:2005,https://www.iso.org/standard/39430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1172:2005,https://www.iso.org/standard/39431.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1173:2005,https://www.iso.org/standard/39432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1174:2005,https://www.iso.org/standard/39433.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1175:2005,https://www.iso.org/standard/39434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1176:2005,https://www.iso.org/standard/39435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1177:2005,https://www.iso.org/standard/39436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1178:2005,https://www.iso.org/standard/39437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1179:2005,https://www.iso.org/standard/39438.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1188:2005,https://www.iso.org/standard/40220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1198:2005,https://www.iso.org/standard/39457.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1199:2005,https://www.iso.org/standard/39461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1203:2005,https://www.iso.org/standard/40218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1204:2005,https://www.iso.org/standard/40221.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1205:2005,https://www.iso.org/standard/40222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1206:2014,https://www.iso.org/standard/64351.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1207:2005,https://www.iso.org/standard/40224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1208:2005,https://www.iso.org/standard/40225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1209:2005,https://www.iso.org/standard/40219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1210:2004,https://www.iso.org/standard/38464.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1211:2005,https://www.iso.org/standard/39454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1212:2005,https://www.iso.org/standard/39453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1213:2005,https://www.iso.org/standard/40301.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1214:2004,https://www.iso.org/standard/38473.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1215:2008,https://www.iso.org/standard/52572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1216:2008,https://www.iso.org/standard/52573.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1217:2004,https://www.iso.org/standard/38474.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1218:2004,https://www.iso.org/standard/38471.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1228:2004,https://www.iso.org/standard/39757.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1230:2005,https://www.iso.org/standard/42496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1231:2014,https://www.iso.org/standard/64352.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1232:2014,https://www.iso.org/standard/64607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1233:2011,https://www.iso.org/standard/60629.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1240:2004,https://www.iso.org/standard/39303.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1241:2011,https://www.iso.org/standard/60630.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1242:2004,https://www.iso.org/standard/39304.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1243:2004,https://www.iso.org/standard/39301.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1244:2004,https://www.iso.org/standard/39305.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1245:2004,https://www.iso.org/standard/39307.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1246:2014,https://www.iso.org/standard/64353.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1248:2014,https://www.iso.org/standard/64354.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1249:2004,https://www.iso.org/standard/38993.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1250:2004,https://www.iso.org/standard/38465.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1251:2011,https://www.iso.org/standard/60631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1252:2010,https://www.iso.org/standard/52641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1253:2004,https://www.iso.org/standard/38989.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1254:2004,https://www.iso.org/standard/38992.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1255:2011,https://www.iso.org/standard/60632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1256:2010,https://www.iso.org/standard/52643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1257:2004,https://www.iso.org/standard/38990.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1258:2011,https://www.iso.org/standard/60633.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1259:2010,https://www.iso.org/standard/56237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1260:2011,https://www.iso.org/standard/60634.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1261:2011,https://www.iso.org/standard/60635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1262:2010,https://www.iso.org/standard/52644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1263:2010,https://www.iso.org/standard/56338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1264:2010,https://www.iso.org/standard/52645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1265:2004,https://www.iso.org/standard/38983.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1266:2010,https://www.iso.org/standard/56406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1267:2011,https://www.iso.org/standard/60636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1268:2010,https://www.iso.org/standard/56405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1269:2010,https://www.iso.org/standard/56404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1270:2010,https://www.iso.org/standard/56352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1271:2011,https://www.iso.org/standard/60637.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1272:2004,https://www.iso.org/standard/39310.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1273:2004,https://www.iso.org/standard/39326.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1274:2010,https://www.iso.org/standard/52646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1275:2014,https://www.iso.org/standard/64355.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1276:2004,https://www.iso.org/standard/39327.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1277:2004,https://www.iso.org/standard/39328.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1278:2011,https://www.iso.org/standard/60638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1280:2010,https://www.iso.org/standard/56399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1281:2011,https://www.iso.org/standard/60639.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1282:2010,https://www.iso.org/standard/52648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1283:2011,https://www.iso.org/standard/60640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1285:2004,https://www.iso.org/standard/39336.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1286:2004,https://www.iso.org/standard/39335.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1287:2011,https://www.iso.org/standard/60641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1288:2014,https://www.iso.org/standard/64356.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1289:2010,https://www.iso.org/standard/56940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1290:2010,https://www.iso.org/standard/56270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1291:2008,https://www.iso.org/standard/52578.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1292:2011,https://www.iso.org/standard/60643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1293:2011,https://www.iso.org/standard/60644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1294:2004,https://www.iso.org/standard/38467.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1295:2011,https://www.iso.org/standard/60645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1296:2004,https://www.iso.org/standard/38991.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1297:2011,https://www.iso.org/standard/60646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1298:2004,https://www.iso.org/standard/39311.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1300:2004,https://www.iso.org/standard/39314.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1301:2004,https://www.iso.org/standard/39315.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1304:2011,https://www.iso.org/standard/60647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1306:2011,https://www.iso.org/standard/60648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1307:2011,https://www.iso.org/standard/60649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1308:2010,https://www.iso.org/standard/56385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1309:2014,https://www.iso.org/standard/64357.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1310:2014,https://www.iso.org/standard/63286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1311:2014,https://www.iso.org/standard/64358.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1312:2014,https://www.iso.org/standard/64359.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1313:2008,https://www.iso.org/standard/52607.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1314:2008,https://www.iso.org/standard/52608.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1315:2010,https://www.iso.org/standard/56351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1316:2014,https://www.iso.org/standard/64360.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1317:2014,https://www.iso.org/standard/64376.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1318:2008,https://www.iso.org/standard/52612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1319:2014,https://www.iso.org/standard/64377.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1320:2014,https://www.iso.org/standard/64378.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1321:2008,https://www.iso.org/standard/52615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1322:2008,https://www.iso.org/standard/52616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1323:2014,https://www.iso.org/standard/64379.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1324:2008,https://www.iso.org/standard/52618.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1327:2010,https://www.iso.org/standard/56261.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1329:2008,https://www.iso.org/standard/52620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1330:2008,https://www.iso.org/standard/52621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1331:2008,https://www.iso.org/standard/52622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1340:2004,https://www.iso.org/standard/38462.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1341:2014,https://www.iso.org/standard/64380.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1342:2014,https://www.iso.org/standard/64381.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1343:2014,https://www.iso.org/standard/64382.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1344:2014,https://www.iso.org/standard/64383.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1345:2014,https://www.iso.org/standard/64384.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1346:2014,https://www.iso.org/standard/64385.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1347:2005,https://www.iso.org/standard/39958.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1348:2011,https://www.iso.org/standard/60756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1349:2014,https://www.iso.org/standard/64386.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1350:2014,https://www.iso.org/standard/64387.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1351:2010,https://www.iso.org/standard/56300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1352:2006,https://www.iso.org/standard/42315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1353:2006,https://www.iso.org/standard/42316.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1354:2006,https://www.iso.org/standard/42317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1355:2006,https://www.iso.org/standard/42318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1357:2004,https://www.iso.org/standard/39338.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1358:2004,https://www.iso.org/standard/39329.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1362:2014,https://www.iso.org/standard/64388.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1364:2004,https://www.iso.org/standard/40437.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1365:2004,https://www.iso.org/standard/40438.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1366:2008,https://www.iso.org/standard/52581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1367:2010,https://www.iso.org/standard/42691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1369:2008,https://www.iso.org/standard/52582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1371:2011,https://www.iso.org/standard/60652.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1372:2014,https://www.iso.org/standard/63194.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1373:2014,https://www.iso.org/standard/63195.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1374:2014,https://www.iso.org/standard/63196.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1375:2014,https://www.iso.org/standard/63197.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1376:2014,https://www.iso.org/standard/63198.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1377:2014,https://www.iso.org/standard/63199.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1378:2014,https://www.iso.org/standard/63200.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1379:2014,https://www.iso.org/standard/63201.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1380:2014,https://www.iso.org/standard/63202.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1381:2014,https://www.iso.org/standard/63203.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1382:2014,https://www.iso.org/standard/63264.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1383:2014,https://www.iso.org/standard/63278.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1384:2014,https://www.iso.org/standard/63279.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1385:2014,https://www.iso.org/standard/63280.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1386:2014,https://www.iso.org/standard/63281.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1387:2014,https://www.iso.org/standard/63282.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1396:2010,https://www.iso.org/standard/56420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1397:2010,https://www.iso.org/standard/56421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1398:2010,https://www.iso.org/standard/56422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1399:2010,https://www.iso.org/standard/56423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1400:2011,https://www.iso.org/standard/60653.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1401:2011,https://www.iso.org/standard/60654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1402:2010,https://www.iso.org/standard/56438.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1403:2014,https://www.iso.org/standard/64390.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1404:2010,https://www.iso.org/standard/56440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1433:2011,https://www.iso.org/standard/60655.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1434:2011,https://www.iso.org/standard/60656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1435:2011,https://www.iso.org/standard/60657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1436:2011,https://www.iso.org/standard/60658.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1437:2011,https://www.iso.org/standard/60659.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1438:2011,https://www.iso.org/standard/60660.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1448:2011,https://www.iso.org/standard/60662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1450:2011,https://www.iso.org/standard/60664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1453:2014,https://www.iso.org/standard/67914.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1466:2011,https://www.iso.org/standard/60666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1467:2011,https://www.iso.org/standard/60667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1468:2010,https://www.iso.org/standard/52021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1469:2010,https://www.iso.org/standard/52022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1470:2014,https://www.iso.org/standard/67915.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1471:2010,https://www.iso.org/standard/52024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1472:2010,https://www.iso.org/standard/52025.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1473:2010,https://www.iso.org/standard/56954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1474:2010,https://www.iso.org/standard/52027.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1475:2011,https://www.iso.org/standard/60669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1476:2010,https://www.iso.org/standard/56955.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1477:2011,https://www.iso.org/standard/60670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1478:2010,https://www.iso.org/standard/52031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1479:2010,https://www.iso.org/standard/52032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1480:2010,https://www.iso.org/standard/52035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1481:2010,https://www.iso.org/standard/52036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1482:2010,https://www.iso.org/standard/52037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1483:2010,https://www.iso.org/standard/52038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1484:2010,https://www.iso.org/standard/56956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1485:2010,https://www.iso.org/standard/56957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1486:2011,https://www.iso.org/standard/60671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1488:2010,https://www.iso.org/standard/56958.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1489:2011,https://www.iso.org/standard/60672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1490:2010,https://www.iso.org/standard/52046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1491:2014,https://www.iso.org/standard/67916.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1492:2010,https://www.iso.org/standard/52048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1493:2010,https://www.iso.org/standard/52049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1501:2004,https://www.iso.org/standard/37955.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1502:2004,https://www.iso.org/standard/37956.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1507:2014,https://www.iso.org/standard/64391.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1509:2014,https://www.iso.org/standard/64392.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1510:2004,https://www.iso.org/standard/37959.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1511:2014,https://www.iso.org/standard/63287.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1512:2004,https://www.iso.org/standard/37961.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1514:2010,https://www.iso.org/standard/56959.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1520:2014,https://www.iso.org/standard/64515.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1521:2014,https://www.iso.org/standard/64516.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1522:2014,https://www.iso.org/standard/64517.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1523:2014,https://www.iso.org/standard/64518.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1524:2014,https://www.iso.org/standard/64519.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1525:2014,https://www.iso.org/standard/64520.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1526:2014,https://www.iso.org/standard/64521.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1527:2014,https://www.iso.org/standard/64523.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1601:2014,https://www.iso.org/standard/64393.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1602:2006,https://www.iso.org/standard/42369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1603:2014,https://www.iso.org/standard/66742.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1604:2006,https://www.iso.org/standard/42381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1605:2006,https://www.iso.org/standard/42382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1606:2006,https://www.iso.org/standard/42383.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1607:2006,https://www.iso.org/standard/42384.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1608:2006,https://www.iso.org/standard/42385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1609:2006,https://www.iso.org/standard/42386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1610:2006,https://www.iso.org/standard/42387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1611:2006,https://www.iso.org/standard/42388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1612:2006,https://www.iso.org/standard/42390.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1613:2014,https://www.iso.org/standard/64395.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1614:2006,https://www.iso.org/standard/42392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1615:2006,https://www.iso.org/standard/42393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1616:2006,https://www.iso.org/standard/42394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1617:2006,https://www.iso.org/standard/42395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1618:2006,https://www.iso.org/standard/42396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1619:2006,https://www.iso.org/standard/42397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1620:2006,https://www.iso.org/standard/42398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1621:2006,https://www.iso.org/standard/42399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1622:2006,https://www.iso.org/standard/42400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1623:2006,https://www.iso.org/standard/42402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1624:2006,https://www.iso.org/standard/42403.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1625:2006,https://www.iso.org/standard/42404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1626:2006,https://www.iso.org/standard/42405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1627:2006,https://www.iso.org/standard/42406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1628:2014,https://www.iso.org/standard/64396.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1630:2006,https://www.iso.org/standard/42409.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1631:2010,https://www.iso.org/standard/56279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1632:2010,https://www.iso.org/standard/56280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1633:2010,https://www.iso.org/standard/56281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1634:2014,https://www.iso.org/standard/64397.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1635:2010,https://www.iso.org/standard/56283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1636:2014,https://www.iso.org/standard/66757.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1637:2014,https://www.iso.org/standard/64399.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1638:2010,https://www.iso.org/standard/56288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1639:2010,https://www.iso.org/standard/56289.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1640:2014,https://www.iso.org/standard/64401.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1641:2014,https://www.iso.org/standard/64402.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1642:2014,https://www.iso.org/standard/66743.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1643:2014,https://www.iso.org/standard/64404.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1644:2014,https://www.iso.org/standard/64405.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1645:2014,https://www.iso.org/standard/64406.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1646:2014,https://www.iso.org/standard/64407.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1647:2014,https://www.iso.org/standard/64408.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1648:2014,https://www.iso.org/standard/64409.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1649:2014,https://www.iso.org/standard/64410.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1650:2014,https://www.iso.org/standard/66744.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1651:2014,https://www.iso.org/standard/64412.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1652:2014,https://www.iso.org/standard/63288.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1653:2014,https://www.iso.org/standard/64413.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1654:2014,https://www.iso.org/standard/64414.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1655:2010,https://www.iso.org/standard/56967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1656:2014,https://www.iso.org/standard/64415.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1657:2014,https://www.iso.org/standard/64417.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1658:2006,https://www.iso.org/standard/42497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1659:2006,https://www.iso.org/standard/44841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1660:2014,https://www.iso.org/standard/64418.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1661:2006,https://www.iso.org/standard/42501.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1662:2014,https://www.iso.org/standard/64420.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1663:2014,https://www.iso.org/standard/64421.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1664:2010,https://www.iso.org/standard/56309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1665:2006,https://www.iso.org/standard/42364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1666:2010,https://www.iso.org/standard/56313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1667:2014,https://www.iso.org/standard/64422.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1668:2014,https://www.iso.org/standard/64423.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1669:2014,https://www.iso.org/standard/64424.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1670:2014,https://www.iso.org/standard/64425.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1671:2014,https://www.iso.org/standard/64426.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1672:2010,https://www.iso.org/standard/56972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1673:2006,https://www.iso.org/standard/42529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1674:2010,https://www.iso.org/standard/56319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1675:2006,https://www.iso.org/standard/42537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1676:2014,https://www.iso.org/standard/64427.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1677:2006,https://www.iso.org/standard/42539.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1678:2006,https://www.iso.org/standard/42540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1679:2010,https://www.iso.org/standard/56320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1680:2006,https://www.iso.org/standard/42542.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1681:2014,https://www.iso.org/standard/64428.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1682:2014,https://www.iso.org/standard/64429.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1684:2010,https://www.iso.org/standard/56328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1685:2014,https://www.iso.org/standard/64430.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1686:2014,https://www.iso.org/standard/66745.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1687:2014,https://www.iso.org/standard/64432.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1688:2010,https://www.iso.org/standard/56332.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1689:2014,https://www.iso.org/standard/64433.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1690:2014,https://www.iso.org/standard/64434.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1691:2014,https://www.iso.org/standard/64435.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1692:2014,https://www.iso.org/standard/64436.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1693:2014,https://www.iso.org/standard/64437.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1694:2010,https://www.iso.org/standard/56341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1695:2010,https://www.iso.org/standard/56343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1696:2014,https://www.iso.org/standard/64438.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1698:2014,https://www.iso.org/standard/66746.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1700:2014,https://www.iso.org/standard/64440.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1701:2014,https://www.iso.org/standard/64441.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1702:2014,https://www.iso.org/standard/64442.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1703:2014,https://www.iso.org/standard/64443.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1704:2014,https://www.iso.org/standard/64444.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1705:2014,https://www.iso.org/standard/64445.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1706:2014,https://www.iso.org/standard/66747.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1707:2014,https://www.iso.org/standard/66748.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1708:2010,https://www.iso.org/standard/56358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1709:2014,https://www.iso.org/standard/64456.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1710:2010,https://www.iso.org/standard/56982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1711:2014,https://www.iso.org/standard/64457.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1712:2014,https://www.iso.org/standard/64458.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1713:2010,https://www.iso.org/standard/56983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1714:2010,https://www.iso.org/standard/56984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1715:2008,https://www.iso.org/standard/52592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1716:2014,https://www.iso.org/standard/64459.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1717:2014,https://www.iso.org/standard/64460.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1718:2014,https://www.iso.org/standard/66749.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1719:2010,https://www.iso.org/standard/56370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1720:2014,https://www.iso.org/standard/64462.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1721:2014,https://www.iso.org/standard/64463.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1722:2014,https://www.iso.org/standard/64464.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1723:2014,https://www.iso.org/standard/64465.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1724:2014,https://www.iso.org/standard/64466.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1725:2014,https://www.iso.org/standard/64564.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1726:2014,https://www.iso.org/standard/64467.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1727:2014,https://www.iso.org/standard/64468.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1728:2014,https://www.iso.org/standard/64469.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1729:2014,https://www.iso.org/standard/64470.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1730:2014,https://www.iso.org/standard/64471.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1731:2014,https://www.iso.org/standard/64472.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1732:2014,https://www.iso.org/standard/64473.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1733:2014,https://www.iso.org/standard/64474.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1734:2014,https://www.iso.org/standard/64475.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1735:2014,https://www.iso.org/standard/64476.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1736:2014,https://www.iso.org/standard/64477.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1737:2014,https://www.iso.org/standard/64478.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1738:2006,https://www.iso.org/standard/42629.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1739:2010,https://www.iso.org/standard/56996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1740:2010,https://www.iso.org/standard/56997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1741:2014,https://www.iso.org/standard/64479.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1742:2014,https://www.iso.org/standard/64480.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1743:2010,https://www.iso.org/standard/57427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1744:2014,https://www.iso.org/standard/64481.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1745:2006,https://www.iso.org/standard/42670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1746:2010,https://www.iso.org/standard/56411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1747:2010,https://www.iso.org/standard/56999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1748:2014,https://www.iso.org/standard/64482.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1749:2014,https://www.iso.org/standard/64483.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1750:2014,https://www.iso.org/standard/64484.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1751:2014,https://www.iso.org/standard/64485.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1752:2014,https://www.iso.org/standard/64486.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1753:2014,https://www.iso.org/standard/64487.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1754:2010,https://www.iso.org/standard/56419.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1755:2014,https://www.iso.org/standard/64488.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1756:2010,https://www.iso.org/standard/57004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1757:2006,https://www.iso.org/standard/42690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1759:2006,https://www.iso.org/standard/42389.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1760:2014,https://www.iso.org/standard/64489.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1761:2010,https://www.iso.org/standard/56323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1762:2008,https://www.iso.org/standard/52598.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1763:2010,https://www.iso.org/standard/56325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1764:2014,https://www.iso.org/standard/64490.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1765:2010,https://www.iso.org/standard/57006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1767:2014,https://www.iso.org/standard/64491.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1768:2010,https://www.iso.org/standard/56259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1769:2014,https://www.iso.org/standard/63283.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1770:2014,https://www.iso.org/standard/64492.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1771:2014,https://www.iso.org/standard/64493.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1772:2014,https://www.iso.org/standard/64494.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1773:2014,https://www.iso.org/standard/64495.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1775:2008,https://www.iso.org/standard/52630.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1776:2014,https://www.iso.org/standard/64497.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1777:2008,https://www.iso.org/standard/52632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1778:2014,https://www.iso.org/standard/64498.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1779:2014,https://www.iso.org/standard/64499.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1780:2008,https://www.iso.org/standard/52635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1782:2014,https://www.iso.org/standard/64500.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1784:2010,https://www.iso.org/standard/52953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1785:2010,https://www.iso.org/standard/52954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1786:2011,https://www.iso.org/standard/60673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1788:2014,https://www.iso.org/standard/64525.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1789:2014,https://www.iso.org/standard/64526.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1790:2014,https://www.iso.org/standard/64527.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1791:2014,https://www.iso.org/standard/64501.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1792:2014,https://www.iso.org/standard/64528.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1793:2010,https://www.iso.org/standard/57012.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1794:2014,https://www.iso.org/standard/64529.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1795:2014,https://www.iso.org/standard/64530.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1796:2014,https://www.iso.org/standard/64531.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1797:2014,https://www.iso.org/standard/64532.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1798:2014,https://www.iso.org/standard/64533.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1799:2014,https://www.iso.org/standard/64534.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1800:2014,https://www.iso.org/standard/64502.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1802:2014,https://www.iso.org/standard/64535.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1803:2014,https://www.iso.org/standard/66750.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1804:2014,https://www.iso.org/standard/64537.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1805:2014,https://www.iso.org/standard/64538.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1806:2014,https://www.iso.org/standard/64539.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1807:2014,https://www.iso.org/standard/64540.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1808:2014,https://www.iso.org/standard/64541.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1809:2014,https://www.iso.org/standard/64542.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1801:2011,https://www.iso.org/standard/57014.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1810:2014,https://www.iso.org/standard/64543.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1811:2014,https://www.iso.org/standard/64544.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1812:2014,https://www.iso.org/standard/64545.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1813:2014,https://www.iso.org/standard/64546.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1814:2014,https://www.iso.org/standard/64547.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1815:2014,https://www.iso.org/standard/64555.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1816:2014,https://www.iso.org/standard/64556.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1817:2014,https://www.iso.org/standard/64557.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 10303-1819:2014,https://www.iso.org/standard/63314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1820:2014,https://www.iso.org/standard/64558.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1821:2014,https://www.iso.org/standard/64559.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1822:2014,https://www.iso.org/standard/64560.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1823:2014,https://www.iso.org/standard/64561.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-1824:2014,https://www.iso.org/standard/64562.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-3001:2014,https://www.iso.org/standard/64563.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 10303-5001:2010,https://www.iso.org/standard/55735.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TR 10314-1:1990,https://www.iso.org/standard/18360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/TR 10314-2:1991,https://www.iso.org/standard/18361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 13281:1997,https://www.iso.org/standard/21513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 13281-2:2000,https://www.iso.org/standard/27722.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 13584-1:2001,https://www.iso.org/standard/25103.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-20:1998,https://www.iso.org/standard/22328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-20:1998/Cor 1:2014,https://www.iso.org/standard/67875.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-24:2003,https://www.iso.org/standard/34070.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-25:2004,https://www.iso.org/standard/35361.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-26:2000,https://www.iso.org/standard/32856.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-26:2000/Amd 1:2007,https://www.iso.org/standard/45359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-31:1999,https://www.iso.org/standard/32859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-32:2010,https://www.iso.org/standard/50639.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 13584-35:2010,https://www.iso.org/standard/44972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-42:2010,https://www.iso.org/standard/43423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-101:2003,https://www.iso.org/standard/22333.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-102:2006,https://www.iso.org/standard/43987.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-501:2007,https://www.iso.org/standard/39753.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 13584-511:2006,https://www.iso.org/standard/38878.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 14258:1998/Cor 1:2000,https://www.iso.org/standard/33536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 14306:2017,https://www.iso.org/standard/62770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15531-1:2004,https://www.iso.org/standard/28144.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15531-31:2004,https://www.iso.org/standard/31583.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15531-32:2005,https://www.iso.org/standard/34726.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15531-42:2005,https://www.iso.org/standard/33598.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15531-43:2006,https://www.iso.org/standard/42272.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15531-44:2017,https://www.iso.org/standard/71064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15745-1:2003,https://www.iso.org/standard/30418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15745-1:2003/Amd 1:2007,https://www.iso.org/standard/42277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15745-2:2003,https://www.iso.org/standard/32973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15745-3:2003,https://www.iso.org/standard/33820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15745-4:2003,https://www.iso.org/standard/33443.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15745-4:2003/Amd 1:2006,https://www.iso.org/standard/40583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15745-4:2003/Amd 2:2007,https://www.iso.org/standard/42279.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15745-5:2007,https://www.iso.org/standard/42278.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15746-1:2015,https://www.iso.org/standard/61131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15746-2:2017,https://www.iso.org/standard/64672.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 15926-1:2004,https://www.iso.org/standard/29556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15926-2:2003,https://www.iso.org/standard/29557.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-3:2009,https://www.iso.org/standard/42875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DTS 15926-4,https://www.iso.org/standard/73830.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-4:2007,https://www.iso.org/standard/41329.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-4:2007/Amd 1:2010,https://www.iso.org/standard/53791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-6:2013,https://www.iso.org/standard/56819.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/WD 15926-6,https://www.iso.org/standard/70693.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-7:2011,https://www.iso.org/standard/52455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-8:2011,https://www.iso.org/standard/52456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-11:2015,https://www.iso.org/standard/57859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/PRF TS 15926-12,https://www.iso.org/standard/70695.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DIS 15926-13,https://www.iso.org/standard/70694.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 16739:2013,https://www.iso.org/standard/51622.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DIS 16739-1,https://www.iso.org/standard/70303.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/PAS 17506:2012,https://www.iso.org/standard/59902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18435-1:2009,https://www.iso.org/standard/38692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 18435-2:2012,https://www.iso.org/standard/55419.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 18435-3:2015,https://www.iso.org/standard/61770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 18629-1:2004,https://www.iso.org/standard/35431.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18629-11:2005,https://www.iso.org/standard/33529.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18629-12:2005,https://www.iso.org/standard/35184.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18629-13:2006,https://www.iso.org/standard/35185.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18629-14:2006,https://www.iso.org/standard/35186.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18629-41:2006,https://www.iso.org/standard/35191.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18629-42:2006,https://www.iso.org/standard/35192.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18629-43:2006,https://www.iso.org/standard/35193.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18629-44:2006,https://www.iso.org/standard/35194.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DTR 18828-1,https://www.iso.org/standard/69229.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18828-2:2016,https://www.iso.org/standard/63505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 18828-3:2017,https://www.iso.org/standard/68533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/PRF 18828-4,https://www.iso.org/standard/69230.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DIS 18828-5,https://www.iso.org/standard/69231.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 18876-1:2003,https://www.iso.org/standard/33701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 18876-2:2003,https://www.iso.org/standard/33702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 19439:2006,https://www.iso.org/standard/33833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 19439:2006/Cor 1:2006,https://www.iso.org/standard/44498.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 19440:2007,https://www.iso.org/standard/33834.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/CD 19440,https://www.iso.org/standard/74491.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 20242-1:2005,https://www.iso.org/standard/40754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 20242-2:2010,https://www.iso.org/standard/37238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 20242-3:2011,https://www.iso.org/standard/37239.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 20242-4:2011,https://www.iso.org/standard/37240.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/CD 20242-5,https://www.iso.org/standard/69073.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO/DIS 20534,https://www.iso.org/standard/68274.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 22093:2011,https://www.iso.org/standard/56444.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 184/SC 1,https://www.iso.org/contents/data/committee/05/41/54124/x/catalogue/ -ISO/TS 29002-4:2009,https://www.iso.org/standard/53726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 29002-5:2009,https://www.iso.org/standard/50773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 29002-6:2010,https://www.iso.org/standard/53617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 29002-10:2009,https://www.iso.org/standard/50774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 29002-20:2010,https://www.iso.org/standard/50775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 29002-31:2009,https://www.iso.org/standard/53616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -IEC 62264-1:2013,https://www.iso.org/standard/57308.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -IEC 62264-2:2015,https://www.iso.org/standard/57310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -IEC 62264-3:2016,https://www.iso.org/standard/67480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -IEC 62264-4:2016,https://www.iso.org/standard/63740.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -IEC 62264-5:2016,https://www.iso.org/standard/67481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 5,https://www.iso.org/contents/data/committee/05/41/54192/x/catalogue/ -ISO 29262:2011,https://www.iso.org/standard/45372.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2562:1973,https://www.iso.org/standard/7520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2562:1973/Amd 1:1982,https://www.iso.org/standard/7521.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2727:1973,https://www.iso.org/standard/7700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2769:1973,https://www.iso.org/standard/7750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2891:1977,https://www.iso.org/standard/7915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2905:1985,https://www.iso.org/standard/7942.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2912:1973,https://www.iso.org/standard/7954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2912:1973/Amd 1:1982,https://www.iso.org/standard/7955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 2934:1973,https://www.iso.org/standard/7981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3371:1975,https://www.iso.org/standard/8660.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3476:1975,https://www.iso.org/standard/8829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3589:1975,https://www.iso.org/standard/8999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3589:1975/Amd 1:1982,https://www.iso.org/standard/9000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3590:1976,https://www.iso.org/standard/9001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3610:1976,https://www.iso.org/standard/9042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3970:1977,https://www.iso.org/standard/9632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3970:1977/Amd 1:1982,https://www.iso.org/standard/9633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 8526-1:1990,https://www.iso.org/standard/15752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 8526-2:1990,https://www.iso.org/standard/15755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 8526-2:1990/Cor 1:1992,https://www.iso.org/standard/20884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 238:2016,https://www.iso.org/standard/64192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 296:1991,https://www.iso.org/standard/4224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 297:1988,https://www.iso.org/standard/4226.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 299:1987,https://www.iso.org/standard/4229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 702-1:2009,https://www.iso.org/standard/50437.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 702-2:2007,https://www.iso.org/standard/35205.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 702-2:2007/Cor 1:2009,https://www.iso.org/standard/55202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 702-3:2007,https://www.iso.org/standard/35206.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 702-4:2004,https://www.iso.org/standard/32138.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 839-1:2006,https://www.iso.org/standard/42233.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 839-2:1977,https://www.iso.org/standard/5209.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 1080:1975,https://www.iso.org/standard/5577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3089:2005,https://www.iso.org/standard/33838.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 3442-1:2005,https://www.iso.org/standard/39613.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 3442-2:2005,https://www.iso.org/standard/39614.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 3442-3:2007,https://www.iso.org/standard/40246.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 3936:1993,https://www.iso.org/standard/9580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3937-1:2008,https://www.iso.org/standard/43461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3937-2:2008,https://www.iso.org/standard/43462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3937-3:2008,https://www.iso.org/standard/43463.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4202:2016,https://www.iso.org/standard/64201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4207:2016,https://www.iso.org/standard/64205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4248:1978,https://www.iso.org/standard/10047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5413:1993,https://www.iso.org/standard/21092.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5414-1:2002,https://www.iso.org/standard/37074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5414-2:2002,https://www.iso.org/standard/35254.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5415:2007,https://www.iso.org/standard/42236.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5734:1986,https://www.iso.org/standard/11845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 7388-1:2007,https://www.iso.org/standard/44098.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7388-2:2007,https://www.iso.org/standard/44099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7388-3:2016,https://www.iso.org/standard/68845.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 9270-1:2010,https://www.iso.org/standard/50991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 9270-2:2010,https://www.iso.org/standard/51517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10649-1:2013,https://www.iso.org/standard/60703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10649-2:2013,https://www.iso.org/standard/60704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10649-3:2013,https://www.iso.org/standard/60705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10649-4:2013,https://www.iso.org/standard/60706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10649-5:2012,https://www.iso.org/standard/54320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10649-6:2012,https://www.iso.org/standard/54321.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10889-1:2004,https://www.iso.org/standard/38550.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10889-2:2016,https://www.iso.org/standard/68866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10889-3:2016,https://www.iso.org/standard/68867.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10889-4:2016,https://www.iso.org/standard/68868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10889-5:2016,https://www.iso.org/standard/64171.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10889-6:2016,https://www.iso.org/standard/68869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10889-7:2016,https://www.iso.org/standard/68870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10889-8:1997,https://www.iso.org/standard/2726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10897:2016,https://www.iso.org/standard/64172.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 12164-1:2001,https://www.iso.org/standard/33040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 12164-2:2001,https://www.iso.org/standard/30047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 12164-3:2014,https://www.iso.org/standard/60399.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 12164-4:2014,https://www.iso.org/standard/60400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 15488:2003,https://www.iso.org/standard/36756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO/DIS 15488,https://www.iso.org/standard/68871.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 19719:2010,https://www.iso.org/standard/43191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO 26622-1:2017,https://www.iso.org/standard/64169.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 26622-2:2008,https://www.iso.org/standard/43628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 26623-1:2014,https://www.iso.org/standard/60401.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO/NP 26623-1,https://www.iso.org/standard/72968.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 26623-2:2014,https://www.iso.org/standard/60402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3408-1:2006,https://www.iso.org/standard/35022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3408-2:1991,https://www.iso.org/standard/8714.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3408-3:2006,https://www.iso.org/standard/35023.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3408-4:2006,https://www.iso.org/standard/34617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 3408-5:2006,https://www.iso.org/standard/34618.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 5169:1977,https://www.iso.org/standard/11173.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 5170:1977,https://www.iso.org/standard/11174.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 23848-1:2009,https://www.iso.org/standard/44773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 23848-2:2009,https://www.iso.org/standard/44774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 229:1973,https://www.iso.org/standard/4105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 230-1:2012,https://www.iso.org/standard/46449.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-2:2014,https://www.iso.org/standard/55295.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-2:2014/Amd 1:2016,https://www.iso.org/standard/63976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-3:2007,https://www.iso.org/standard/39188.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/CD 230-3,https://www.iso.org/standard/73291.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-5:2000,https://www.iso.org/standard/4112.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO/NP 230-5,https://www.iso.org/standard/72303.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO 230-6:2002,https://www.iso.org/standard/30762.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-7:2015,https://www.iso.org/standard/56624.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/TR 230-8:2010,https://www.iso.org/standard/55987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/TR 230-9:2005,https://www.iso.org/standard/39165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-10:2016,https://www.iso.org/standard/68492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 230-10:2016/WD Amd 1,https://www.iso.org/standard/72661.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/PRF TR 230-11,https://www.iso.org/standard/71882.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 369:2009,https://www.iso.org/standard/53391.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 447:1984,https://www.iso.org/standard/4467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 8525:2008,https://www.iso.org/standard/41083.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO/NP 8525,https://www.iso.org/standard/72301.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO 14955-1:2017,https://www.iso.org/standard/70035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 14955-2,https://www.iso.org/standard/66354.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO/DIS 14955-4.2,https://www.iso.org/standard/68764.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 16089:2015,https://www.iso.org/standard/55665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 16090-1:2017,https://www.iso.org/standard/55666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 16092-1:2017,https://www.iso.org/standard/55667.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO/CD 16092-2,https://www.iso.org/standard/63389.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 16092-3:2017,https://www.iso.org/standard/63390.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO/CD 16092-4,https://www.iso.org/standard/63391.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 16093:2017,https://www.iso.org/standard/55668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 16156:2004,https://www.iso.org/standard/32131.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 8,https://www.iso.org/contents/data/committee/04/84/48404/x/catalogue/ -ISO/TR 16907:2015,https://www.iso.org/standard/57912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/TR 17243-1:2014,https://www.iso.org/standard/59471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/TR 17243-2:2017,https://www.iso.org/standard/66432.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/TR 17529:2014,https://www.iso.org/standard/59971.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 23125:2015,https://www.iso.org/standard/65500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 26303:2012,https://www.iso.org/standard/60602.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 28881:2013,https://www.iso.org/standard/45002.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 28881:2013/Cor 1:2013,https://www.iso.org/standard/64870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 298:1973,https://www.iso.org/standard/4227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 1708:1989,https://www.iso.org/standard/6328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3655:1986,https://www.iso.org/standard/9102.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 6155:1998,https://www.iso.org/standard/25593.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 8956:1986,https://www.iso.org/standard/16481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 1701-1:2004,https://www.iso.org/standard/37682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 1701-2:2004,https://www.iso.org/standard/37683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 1984-1:2001,https://www.iso.org/standard/33507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 1984-2:2001,https://www.iso.org/standard/33508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3070-1:2007,https://www.iso.org/standard/37684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3070-2:2016,https://www.iso.org/standard/60887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3070-3:2007,https://www.iso.org/standard/40185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3686-1:2000,https://www.iso.org/standard/27642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3686-2:2000,https://www.iso.org/standard/27652.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 6545:1992,https://www.iso.org/standard/12939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 8636-1:2000,https://www.iso.org/standard/27412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 8636-2:2007,https://www.iso.org/standard/42230.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/AWI 8636-2,https://www.iso.org/standard/73818.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 17543-1,https://www.iso.org/standard/73494.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/FDIS 17543-1,https://www.iso.org/standard/60024.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 6480:1983,https://www.iso.org/standard/12844.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/CD 6480,https://www.iso.org/standard/73815.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 6480,https://www.iso.org/standard/71541.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 6481:1981,https://www.iso.org/standard/12845.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/CD 6481,https://www.iso.org/standard/73811.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 6481,https://www.iso.org/standard/71542.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 6779:1981,https://www.iso.org/standard/13275.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/CD 6779,https://www.iso.org/standard/73816.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 6779,https://www.iso.org/standard/71543.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 2423:1982,https://www.iso.org/standard/7327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 2772,https://www.iso.org/standard/71544.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 2772,https://www.iso.org/standard/73823.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 2772-1:1973,https://www.iso.org/standard/7753.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 2772-2:1974,https://www.iso.org/standard/7754.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 2773-1:1973,https://www.iso.org/standard/7755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 2773-2:1973,https://www.iso.org/standard/7756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3190:1975,https://www.iso.org/standard/8384.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3686-1:2000,https://www.iso.org/standard/27642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3686-2:2000,https://www.iso.org/standard/27652.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 1985:2015,https://www.iso.org/standard/55019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 1986-1:2014,https://www.iso.org/standard/64504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 2407:1997,https://www.iso.org/standard/22464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 2407:1997/Amd 1:2016,https://www.iso.org/standard/66192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 2433:1999,https://www.iso.org/standard/27414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 3875:2004,https://www.iso.org/standard/30668.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 3875,https://www.iso.org/standard/73813.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO/DIS 3875.2,https://www.iso.org/standard/66846.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 4703:2001,https://www.iso.org/standard/27643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 14137:2015,https://www.iso.org/standard/60023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 237:1975,https://www.iso.org/standard/4127.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 513:2012,https://www.iso.org/standard/59932.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 883:2013,https://www.iso.org/standard/62905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 1832:2017,https://www.iso.org/standard/69202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3002-1:1982,https://www.iso.org/standard/8052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-1:1982/Amd 1:1992,https://www.iso.org/standard/8053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-2:1982,https://www.iso.org/standard/8054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-3:1984,https://www.iso.org/standard/8055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-4:1984,https://www.iso.org/standard/8056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3002-5:1989,https://www.iso.org/standard/8057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 3286:2016,https://www.iso.org/standard/68789.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3364:2017,https://www.iso.org/standard/69204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3365:2016,https://www.iso.org/standard/68791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4203:1978,https://www.iso.org/standard/9988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-1:2014,https://www.iso.org/standard/64176.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-2:2014,https://www.iso.org/standard/64177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-3:2014,https://www.iso.org/standard/64178.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-4:2014,https://www.iso.org/standard/64179.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-5:2014,https://www.iso.org/standard/64180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-6:2014,https://www.iso.org/standard/64181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-7:2014,https://www.iso.org/standard/64182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-8:2014,https://www.iso.org/standard/64183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-9:2014,https://www.iso.org/standard/64184.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-10:2014,https://www.iso.org/standard/64185.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-11:2014,https://www.iso.org/standard/64186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-12:2014,https://www.iso.org/standard/64187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-13:2014,https://www.iso.org/standard/64188.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-14:2014,https://www.iso.org/standard/64189.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5610-15:2014,https://www.iso.org/standard/64190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-1:2015,https://www.iso.org/standard/64175.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-2:2015,https://www.iso.org/standard/66142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-3:2015,https://www.iso.org/standard/66143.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-4:2015,https://www.iso.org/standard/66144.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-5:2015,https://www.iso.org/standard/66145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-6:2015,https://www.iso.org/standard/66146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-7:2015,https://www.iso.org/standard/66147.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-8:2015,https://www.iso.org/standard/66148.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-9:2015,https://www.iso.org/standard/66149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-10:2015,https://www.iso.org/standard/66150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-11:2015,https://www.iso.org/standard/66151.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5611-12:2015,https://www.iso.org/standard/66161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 6987:2012,https://www.iso.org/standard/55467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 9361-1:2014,https://www.iso.org/standard/65232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 9361-2:2011,https://www.iso.org/standard/53793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10643:2009,https://www.iso.org/standard/46026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10910:1995,https://www.iso.org/standard/2696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 11054:2006,https://www.iso.org/standard/38556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 13399-1:2006,https://www.iso.org/standard/36757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 13399-1:2006/Amd 1:2010,https://www.iso.org/standard/50004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 13399-1:2006/Cor 1:2008,https://www.iso.org/standard/50576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 13399-1:2006/Cor 2:2011,https://www.iso.org/standard/59310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-2:2005/Cor 1:2011,https://www.iso.org/standard/59312.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-2:2014,https://www.iso.org/standard/54167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-3:2007/Cor 1:2011,https://www.iso.org/standard/59313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-3:2014,https://www.iso.org/standard/54168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-4:2007/Cor 1:2011,https://www.iso.org/standard/59314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-4:2014,https://www.iso.org/standard/54169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-5:2007/Cor 1:2011,https://www.iso.org/standard/59318.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-5:2014,https://www.iso.org/standard/54170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-50:2007/Cor 1:2011,https://www.iso.org/standard/59317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-50:2013,https://www.iso.org/standard/54171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-60:2014,https://www.iso.org/standard/54172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-70:2016,https://www.iso.org/standard/66565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-71:2016,https://www.iso.org/standard/66793.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-72:2016,https://www.iso.org/standard/66794.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-80:2017,https://www.iso.org/standard/68886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-100:2008,https://www.iso.org/standard/46415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-100:2008/Cor 1:2011,https://www.iso.org/standard/59319.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-150:2008,https://www.iso.org/standard/46416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-201:2014,https://www.iso.org/standard/60417.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-202:2015,https://www.iso.org/standard/60418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-203:2015,https://www.iso.org/standard/60419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-204:2016,https://www.iso.org/standard/63600.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-301:2013,https://www.iso.org/standard/60421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-302:2013,https://www.iso.org/standard/60422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-303:2016,https://www.iso.org/standard/60275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-304:2016,https://www.iso.org/standard/60274.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-305:2017,https://www.iso.org/standard/60423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-306,https://www.iso.org/standard/70658.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-307:2016,https://www.iso.org/standard/60425.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-308:2016,https://www.iso.org/standard/60426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-309:2016,https://www.iso.org/standard/60427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-310:2017,https://www.iso.org/standard/67684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-311:2016,https://www.iso.org/standard/60429.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-312:2016,https://www.iso.org/standard/60430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-313,https://www.iso.org/standard/70161.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-314,https://www.iso.org/standard/70162.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-315,https://www.iso.org/standard/70347.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-401:2016,https://www.iso.org/standard/60433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-403,https://www.iso.org/standard/70656.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-405:2016,https://www.iso.org/standard/63601.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-406,https://www.iso.org/standard/70657.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 16084:2017,https://www.iso.org/standard/68452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 16462:2014,https://www.iso.org/standard/64173.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 16463:2014,https://www.iso.org/standard/64174.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO/DIS 22180,https://www.iso.org/standard/72767.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 241:1994,https://www.iso.org/standard/21904.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 242:2014,https://www.iso.org/standard/65235.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 243:2014,https://www.iso.org/standard/65234.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 504:1975,https://www.iso.org/standard/4559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 514:2014,https://www.iso.org/standard/65233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3685:1993,https://www.iso.org/standard/9151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5421:1977,https://www.iso.org/standard/11464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5608:2012,https://www.iso.org/standard/60180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5609-1:2012,https://www.iso.org/standard/60124.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5609-2:2012,https://www.iso.org/standard/60125.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5609-3:2012,https://www.iso.org/standard/60126.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5609-4:2012,https://www.iso.org/standard/60127.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5609-5:2012,https://www.iso.org/standard/60128.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5609-6:2012,https://www.iso.org/standard/60129.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 240:2016,https://www.iso.org/standard/60698.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 1641-1:2016,https://www.iso.org/standard/65993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 1641-2:2011,https://www.iso.org/standard/50889.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 1641-3:2011,https://www.iso.org/standard/54319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2584:2016,https://www.iso.org/standard/64196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2585:1972,https://www.iso.org/standard/7559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2586:1985,https://www.iso.org/standard/7561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2587:1972,https://www.iso.org/standard/7562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2780:2006,https://www.iso.org/standard/42237.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2940-1:1974,https://www.iso.org/standard/7988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2940-2:1974,https://www.iso.org/standard/7989.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3337:2000,https://www.iso.org/standard/33368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3338-1:1996,https://www.iso.org/standard/27425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3338-2:2013,https://www.iso.org/standard/60699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3338-3:1996,https://www.iso.org/standard/2689.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3855:1977,https://www.iso.org/standard/9420.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3855:1977/Cor 1:1996,https://www.iso.org/standard/26719.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3859:2000,https://www.iso.org/standard/33369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3860:2011,https://www.iso.org/standard/50898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3940:1977,https://www.iso.org/standard/9585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 6108:1978,https://www.iso.org/standard/12322.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 6262-1:2013,https://www.iso.org/standard/62906.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 6262-2:2013,https://www.iso.org/standard/62907.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 6462:2011,https://www.iso.org/standard/44803.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 6986:2013,https://www.iso.org/standard/62908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-1:2013,https://www.iso.org/standard/62910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-2:2013,https://www.iso.org/standard/62911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-3:2013,https://www.iso.org/standard/62912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-4:2013,https://www.iso.org/standard/62913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-5:2013,https://www.iso.org/standard/62914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-6:2013,https://www.iso.org/standard/62915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-7:2013,https://www.iso.org/standard/62916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-8:2013,https://www.iso.org/standard/62917.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-9:2013,https://www.iso.org/standard/62918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-10:2013,https://www.iso.org/standard/62919.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-11:2013,https://www.iso.org/standard/62920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7755-12:2013,https://www.iso.org/standard/62921.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 8688-1:1989,https://www.iso.org/standard/16091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 8688-2:1989,https://www.iso.org/standard/16092.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10145-1:2016,https://www.iso.org/standard/68787.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10145-2:2016,https://www.iso.org/standard/68788.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10911:2017,https://www.iso.org/standard/69345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 11529:2013,https://www.iso.org/standard/60102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 12197:2016,https://www.iso.org/standard/64208.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 15641:2001,https://www.iso.org/standard/27337.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 15917:2012,https://www.iso.org/standard/60182.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 22037:2007,https://www.iso.org/standard/40654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 241:1994,https://www.iso.org/standard/21904.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 235:2016,https://www.iso.org/standard/64191.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 236-1:1976,https://www.iso.org/standard/4125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 236-2:2013,https://www.iso.org/standard/60697.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 239:1999,https://www.iso.org/standard/28555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 494:2017,https://www.iso.org/standard/68941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 521:2011,https://www.iso.org/standard/51322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 522:1975,https://www.iso.org/standard/4585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 866:2016,https://www.iso.org/standard/64193.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2238:2011,https://www.iso.org/standard/50890.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2250:2017,https://www.iso.org/standard/68940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2306:1972,https://www.iso.org/standard/7135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2402:1972,https://www.iso.org/standard/7298.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2540:2016,https://www.iso.org/standard/64194.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2541:2016,https://www.iso.org/standard/64195.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3291:2016,https://www.iso.org/standard/64197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3292:2016,https://www.iso.org/standard/64198.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3293:2016,https://www.iso.org/standard/65992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3294:2016,https://www.iso.org/standard/65995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3314:1975,https://www.iso.org/standard/8572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3438:2013,https://www.iso.org/standard/60702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3465:1975,https://www.iso.org/standard/8810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3466:2016,https://www.iso.org/standard/68792.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3467:2016,https://www.iso.org/standard/68793.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4204:2016,https://www.iso.org/standard/64202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4205:2016,https://www.iso.org/standard/64203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4206:2016,https://www.iso.org/standard/64204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4208:1977,https://www.iso.org/standard/9995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5419:1982,https://www.iso.org/standard/11462.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5419:1982/Cor 1:1996,https://www.iso.org/standard/26720.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5420:1983,https://www.iso.org/standard/11463.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5468:2017,https://www.iso.org/standard/69201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7079:2016,https://www.iso.org/standard/64207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 9766:2012,https://www.iso.org/standard/60181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10887:1999,https://www.iso.org/standard/2751.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10888:1999,https://www.iso.org/standard/2749.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10898:2016,https://www.iso.org/standard/65994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 10899:1996,https://www.iso.org/standard/18900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2296:2011,https://www.iso.org/standard/50892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2336-1:1996,https://www.iso.org/standard/25062.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 2336-2:2006,https://www.iso.org/standard/40606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2924:1973,https://www.iso.org/standard/7969.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4875-1:2006,https://www.iso.org/standard/41854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4875-2:2006,https://www.iso.org/standard/41855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 529:2017,https://www.iso.org/standard/69200.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2283:2000,https://www.iso.org/standard/30051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2284:2017,https://www.iso.org/standard/69197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2568:1988,https://www.iso.org/standard/7527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2857:1973,https://www.iso.org/standard/7858.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2857:1973/Amd 1:1984,https://www.iso.org/standard/7859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2857:1973/Amd 2:1986,https://www.iso.org/standard/7860.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 2857:1973/Cor 1:1990,https://www.iso.org/standard/7861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4230:2016,https://www.iso.org/standard/69198.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 4231:2016,https://www.iso.org/standard/69199.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5396:1977,https://www.iso.org/standard/11438.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5407:1981,https://www.iso.org/standard/11449.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5967:1981,https://www.iso.org/standard/12161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5968:1981,https://www.iso.org/standard/12162.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5969:1979,https://www.iso.org/standard/12163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 5969:1979/Cor 1:1991,https://www.iso.org/standard/12164.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7226:1988,https://www.iso.org/standard/13863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 8051:2016,https://www.iso.org/standard/60700.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 8830:1991,https://www.iso.org/standard/16305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 234-1:1983,https://www.iso.org/standard/4120.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 234-2:1982,https://www.iso.org/standard/4121.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 525:2013,https://www.iso.org/standard/40211.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-1:1999,https://www.iso.org/standard/4707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-1:1999/Cor 1:1999,https://www.iso.org/standard/33117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-2:1999,https://www.iso.org/standard/2715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-2:1999/Cor 1:1999,https://www.iso.org/standard/33118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-3:1999,https://www.iso.org/standard/4709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-3:1999/Cor 1:1999,https://www.iso.org/standard/33125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-4:1999,https://www.iso.org/standard/4710.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-4:1999/Cor 1:1999,https://www.iso.org/standard/33126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-5:1999,https://www.iso.org/standard/4711.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-5:1999/Cor 1:1999,https://www.iso.org/standard/33127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-6:1999,https://www.iso.org/standard/4712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-6:1999/Cor 1:1999,https://www.iso.org/standard/33128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-7:1999,https://www.iso.org/standard/4713.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-7:1999/Cor 1:1999,https://www.iso.org/standard/33129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-8:1999,https://www.iso.org/standard/4714.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-8:1999/Cor 1:1999,https://www.iso.org/standard/33130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-9:1999,https://www.iso.org/standard/20536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-9:1999/Cor 1:1999,https://www.iso.org/standard/33131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-10:1999,https://www.iso.org/standard/21632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-10:1999/Cor 1:1999,https://www.iso.org/standard/33132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-11:1999,https://www.iso.org/standard/2724.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-11:1999/Cor 1:1999,https://www.iso.org/standard/33133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-12:1999,https://www.iso.org/standard/2736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-12:1999/Cor 1:1999,https://www.iso.org/standard/33134.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-13:1999,https://www.iso.org/standard/21897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-13:1999/Cor 1:1999,https://www.iso.org/standard/33135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-14:1999,https://www.iso.org/standard/21898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-14:1999/Cor 1:1999,https://www.iso.org/standard/33136.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-15:1999,https://www.iso.org/standard/21899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-15:1999/Cor 1:1999,https://www.iso.org/standard/33137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-16:1999,https://www.iso.org/standard/21900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-16:1999/Cor 1:1999,https://www.iso.org/standard/33138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-17:2014,https://www.iso.org/standard/41053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 603-18:2013,https://www.iso.org/standard/56008.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 666:2012,https://www.iso.org/standard/61254.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 39/SC 10,https://www.iso.org/contents/data/committee/34/11/341140/x/catalogue/ -ISO 2421:2003,https://www.iso.org/standard/28469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 2976:2005,https://www.iso.org/standard/36550.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 3366:1999,https://www.iso.org/standard/20539.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 3919:2005,https://www.iso.org/standard/36551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 3919:2005/Amd 1:2014,https://www.iso.org/standard/64264.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 5429:2012,https://www.iso.org/standard/56013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 6103:2014,https://www.iso.org/standard/60013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 6104:2005,https://www.iso.org/standard/36553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 6106:2013,https://www.iso.org/standard/56014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 6344-1:1998,https://www.iso.org/standard/12643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 6344-2:1998,https://www.iso.org/standard/12644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 6344-3:2013,https://www.iso.org/standard/56010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 8486-1:1996,https://www.iso.org/standard/15695.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 8486-2:2007,https://www.iso.org/standard/42206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 9136-1:2004,https://www.iso.org/standard/36545.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 9136-2:1999,https://www.iso.org/standard/27265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 9138:2015,https://www.iso.org/standard/60012.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 9284:2013,https://www.iso.org/standard/60014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 9285:1997,https://www.iso.org/standard/16940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 9286:1997,https://www.iso.org/standard/16941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 13942:2000,https://www.iso.org/standard/23381.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO/CD 13942,https://www.iso.org/standard/73336.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 15635:2001,https://www.iso.org/standard/28485.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 15636:2003,https://www.iso.org/standard/28486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 15637-1:2002,https://www.iso.org/standard/30069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 15637-2:2002,https://www.iso.org/standard/30070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 16057:2002,https://www.iso.org/standard/30687.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 21537-1:2004,https://www.iso.org/standard/35935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 21537-2:2004,https://www.iso.org/standard/35936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 21538:2016,https://www.iso.org/standard/69896.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 21948:2001,https://www.iso.org/standard/28472.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 21949:2001,https://www.iso.org/standard/30065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 21950:2001,https://www.iso.org/standard/28473.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 21951:2001,https://www.iso.org/standard/30066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 22917:2016,https://www.iso.org/standard/64774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO/TR 24857:2006,https://www.iso.org/standard/42503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 5,https://www.iso.org/contents/data/committee/04/75/47502/x/catalogue/ -ISO 6752:2008,https://www.iso.org/standard/44267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 6753-1:2005,https://www.iso.org/standard/34426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 6898:1984,https://www.iso.org/standard/13420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 6899:1984,https://www.iso.org/standard/13421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 8020:2002,https://www.iso.org/standard/32057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8540:1993,https://www.iso.org/standard/15789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 8695:2010,https://www.iso.org/standard/52941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8977:2003,https://www.iso.org/standard/30348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9181:2007,https://www.iso.org/standard/44036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9182-1:2013,https://www.iso.org/standard/60718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9182-2:2013,https://www.iso.org/standard/60719.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9182-3:2013,https://www.iso.org/standard/60720.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9182-4:2013,https://www.iso.org/standard/60721.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9182-5:2013,https://www.iso.org/standard/60722.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9183-1:2008,https://www.iso.org/standard/41580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9183-2:2011,https://www.iso.org/standard/57875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9188:1993,https://www.iso.org/standard/16813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 9189:1993,https://www.iso.org/standard/16814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39,https://www.iso.org/contents/data/committee/04/83/48354/x/catalogue/ -ISO 9448-1:2013,https://www.iso.org/standard/60707.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-2:2013,https://www.iso.org/standard/60708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-3:2013,https://www.iso.org/standard/60709.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-4:2013,https://www.iso.org/standard/60710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-5:2013,https://www.iso.org/standard/60711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-6:2013,https://www.iso.org/standard/60712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-7:2013,https://www.iso.org/standard/60713.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-8:2013,https://www.iso.org/standard/60714.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-9:2013,https://www.iso.org/standard/60715.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-10:2013,https://www.iso.org/standard/60716.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9448-11:2013,https://www.iso.org/standard/60717.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10069-1:2008,https://www.iso.org/standard/45054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10069-2:2008,https://www.iso.org/standard/45055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10071-1:2008,https://www.iso.org/standard/45056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10071-2:2005,https://www.iso.org/standard/33849.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10242-1:2011,https://www.iso.org/standard/57879.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10242-2:2008,https://www.iso.org/standard/45058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10242-3:2008,https://www.iso.org/standard/45059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10243:2010,https://www.iso.org/standard/50759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10243:2010/Amd 1:2011,https://www.iso.org/standard/58104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11415:1997,https://www.iso.org/standard/2705.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11900-1:2007,https://www.iso.org/standard/44041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11900-2:2008,https://www.iso.org/standard/45061.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11900-3:2004,https://www.iso.org/standard/32369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11901-1:2003,https://www.iso.org/standard/29169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11901-2:2004,https://www.iso.org/standard/29170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO/DIS 11901-2,https://www.iso.org/standard/68884.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11901-3:2014,https://www.iso.org/standard/59868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11901-4:2014,https://www.iso.org/standard/59869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11903:2008,https://www.iso.org/standard/45062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 16366:2008,https://www.iso.org/standard/41578.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 16367:2008,https://www.iso.org/standard/41579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 18084:2011,https://www.iso.org/standard/57880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO/DIS 20928,https://www.iso.org/standard/69474.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO/DIS 20929,https://www.iso.org/standard/69485.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 23480:2013,https://www.iso.org/standard/60723.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 23481:2013,https://www.iso.org/standard/62185.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 1651:1974,https://www.iso.org/standard/6265.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 1651:1974/Amd 1:1982,https://www.iso.org/standard/6266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 1684:1975,https://www.iso.org/standard/6299.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 1684:1975/Amd 2:1982,https://www.iso.org/standard/6300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 2804:1996,https://www.iso.org/standard/25966.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 6751:2011,https://www.iso.org/standard/57874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 6753-2:1998,https://www.iso.org/standard/20382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8017:2007,https://www.iso.org/standard/44038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8018:2007,https://www.iso.org/standard/44037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8404:2013,https://www.iso.org/standard/59870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8405:2013,https://www.iso.org/standard/59871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8406:2008,https://www.iso.org/standard/45063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8693:2011,https://www.iso.org/standard/57876.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 8694:2011,https://www.iso.org/standard/57877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 9449:2007,https://www.iso.org/standard/44035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10072:2004,https://www.iso.org/standard/32434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10073:2008,https://www.iso.org/standard/45057.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10907-1:2008,https://www.iso.org/standard/45060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 10907-2:2007,https://www.iso.org/standard/42122.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 12165:2000,https://www.iso.org/standard/21059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 15600:2000,https://www.iso.org/standard/28344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 16915:2003,https://www.iso.org/standard/32498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 16916:2016,https://www.iso.org/standard/68883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 24233:2008,https://www.iso.org/standard/39418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 28238:2010,https://www.iso.org/standard/44591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 8,https://www.iso.org/contents/data/committee/04/75/47522/x/catalogue/ -ISO 11090-1:2014,https://www.iso.org/standard/55020.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 11090-2:2014,https://www.iso.org/standard/55021.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 2,https://www.iso.org/contents/data/committee/04/83/48372/x/catalogue/ -ISO 1174-2:1996,https://www.iso.org/standard/25445.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 1703,https://www.iso.org/standard/69308.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 1703:2005,https://www.iso.org/standard/38458.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 1711-1:2016,https://www.iso.org/standard/68850.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 1711-2:2016,https://www.iso.org/standard/68851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2351-1:2007,https://www.iso.org/standard/41054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2351-2:2002,https://www.iso.org/standard/29900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2351-3:2014,https://www.iso.org/standard/61604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2380-1:2004,https://www.iso.org/standard/35869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2380-2:2004,https://www.iso.org/standard/35870.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2725-2:2017,https://www.iso.org/standard/69306.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2725-3:2017,https://www.iso.org/standard/69307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 4228:1986,https://www.iso.org/standard/10029.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 10914:1996,https://www.iso.org/standard/2669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 11168:1995,https://www.iso.org/standard/19178.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 15744:2002,https://www.iso.org/standard/28848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 17066:2007,https://www.iso.org/standard/38191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/DTR 20571,https://www.iso.org/standard/68432.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 20643:2005,https://www.iso.org/standard/34244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 20643:2005/Amd 1:2012,https://www.iso.org/standard/52920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 1180:1983,https://www.iso.org/standard/5766.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 1180:1983/Add 1:1985,https://www.iso.org/standard/5767.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 2787:1984,https://www.iso.org/standard/7774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 3857-1:1977,https://www.iso.org/standard/9436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 3857-3:1989,https://www.iso.org/standard/9439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 3857-4:2012,https://www.iso.org/standard/55307.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 5391:2003,https://www.iso.org/standard/36692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 5393:2017,https://www.iso.org/standard/63133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 5941:1979,https://www.iso.org/standard/12135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 6,https://www.iso.org/contents/data/committee/33/03/330322/x/catalogue/ -ISO 8662-11:1999,https://www.iso.org/standard/23170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 8662-11:1999/Amd 1:2001,https://www.iso.org/standard/34630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-1:2011,https://www.iso.org/standard/50130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-2:2011,https://www.iso.org/standard/50131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-3:2012,https://www.iso.org/standard/61679.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-4:2012,https://www.iso.org/standard/61680.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-5:2011,https://www.iso.org/standard/50134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-6:2012,https://www.iso.org/standard/61681.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-7:2012,https://www.iso.org/standard/50136.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-8:2011,https://www.iso.org/standard/50137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-9:2011,https://www.iso.org/standard/50138.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-10:2011,https://www.iso.org/standard/50139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-11:2011,https://www.iso.org/standard/50140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-12:2012,https://www.iso.org/standard/50141.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 11148-13:2017,https://www.iso.org/standard/50142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/TS 17104:2006,https://www.iso.org/standard/42119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/TS 21108:2005,https://www.iso.org/standard/35666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/TR 27609:2007,https://www.iso.org/standard/44238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-1:2009,https://www.iso.org/standard/40798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-1:2009/Amd 1:2017,https://www.iso.org/standard/68218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-2:2009,https://www.iso.org/standard/45051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-2:2009/Amd 1:2017,https://www.iso.org/standard/71213.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-3:2009,https://www.iso.org/standard/43230.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-4:2010,https://www.iso.org/standard/45052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-4:2010/Amd 1:2017,https://www.iso.org/standard/71212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-5:2009,https://www.iso.org/standard/50151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-5:2009/Amd 1:2015,https://www.iso.org/standard/59823.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-6:2009,https://www.iso.org/standard/50152.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-7:2009,https://www.iso.org/standard/50153.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-8:2009,https://www.iso.org/standard/50166.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-8:2009/Amd 1:2015,https://www.iso.org/standard/56708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-8:2009/CD Amd 2,https://www.iso.org/standard/73648.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/NP 28927-8,https://www.iso.org/standard/73647.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-9:2009,https://www.iso.org/standard/50167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-10:2011,https://www.iso.org/standard/50610.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-11:2011,https://www.iso.org/standard/50611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 28927-12:2012,https://www.iso.org/standard/55876.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 3,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO/DIS 28927-13,https://www.iso.org/standard/59824.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/18/51870/x/catalogue/ -ISO 691:2005,https://www.iso.org/standard/37555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 1085:2016,https://www.iso.org/standard/67582.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 1173:2001,https://www.iso.org/standard/23588.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 1174-1:2011,https://www.iso.org/standard/53384.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2236:1991,https://www.iso.org/standard/7046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2725-1:2017,https://www.iso.org/standard/69305.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 2936:2014,https://www.iso.org/standard/60231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 3315:2011,https://www.iso.org/standard/53386.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/FDIS 3315,https://www.iso.org/standard/74195.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 3316:2012,https://www.iso.org/standard/53387.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/FDIS 3316,https://www.iso.org/standard/74194.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 3317:2015,https://www.iso.org/standard/64799.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 3318:2016,https://www.iso.org/standard/67581.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 4229:2017,https://www.iso.org/standard/67577.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5742:2004,https://www.iso.org/standard/33638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5743:2004,https://www.iso.org/standard/33639.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5744:2004,https://www.iso.org/standard/33640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5745:2004,https://www.iso.org/standard/33641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5746:2004,https://www.iso.org/standard/33642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5747:1995,https://www.iso.org/standard/22896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5748:2004,https://www.iso.org/standard/33643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 5749:2004,https://www.iso.org/standard/33644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 6787:2001,https://www.iso.org/standard/26668.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/PRF 6787,https://www.iso.org/standard/71911.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 6788:1997,https://www.iso.org/standard/26669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 6789-1:2017,https://www.iso.org/standard/62549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 6789-2:2017,https://www.iso.org/standard/62550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 7738:2015,https://www.iso.org/standard/62551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 8764-1:2004,https://www.iso.org/standard/37562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 8764-2:2004,https://www.iso.org/standard/37556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 8976:2004,https://www.iso.org/standard/33645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 8979:2004,https://www.iso.org/standard/33646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 9242:1988,https://www.iso.org/standard/16892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 9243:1988,https://www.iso.org/standard/16893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 9343:2004,https://www.iso.org/standard/33647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 9654:2004,https://www.iso.org/standard/33648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 9655:2004,https://www.iso.org/standard/33649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 9656:2004,https://www.iso.org/standard/33650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 9657:2004,https://www.iso.org/standard/33651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 10102:2001,https://www.iso.org/standard/26671.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/FDIS 10102,https://www.iso.org/standard/71906.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 10103:2001,https://www.iso.org/standard/26672.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/FDIS 10103,https://www.iso.org/standard/71907.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 10104:2001,https://www.iso.org/standard/26673.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/FDIS 10104,https://www.iso.org/standard/71909.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO 15601:2000,https://www.iso.org/standard/28352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/CD 21982,https://www.iso.org/standard/72230.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 29/SC 10,https://www.iso.org/contents/data/committee/04/75/47562/x/catalogue/ -ISO/TR 581:2005,https://www.iso.org/standard/40507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 3834-1:2005,https://www.iso.org/standard/35144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 3834-2:2005,https://www.iso.org/standard/35145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 3834-3:2005,https://www.iso.org/standard/35146.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 3834-4:2005,https://www.iso.org/standard/35147.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 3834-5:2015,https://www.iso.org/standard/63729.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 3834-6:2007,https://www.iso.org/standard/41073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 4063:2009,https://www.iso.org/standard/38134.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 9606-1:2012,https://www.iso.org/standard/54936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 9606-1:2012/Cor 1:2012,https://www.iso.org/standard/62752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 9606-1:2012/Cor 2:2013,https://www.iso.org/standard/63882.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 9606-2:2004,https://www.iso.org/standard/40769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 9606-3:1999,https://www.iso.org/standard/2378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 9606-4:1999,https://www.iso.org/standard/22481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 9606-5:2000,https://www.iso.org/standard/32249.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 10882-1:2011,https://www.iso.org/standard/43385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 10882-2:2000,https://www.iso.org/standard/26144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 11611:2015,https://www.iso.org/standard/57455.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/CD 11611,https://www.iso.org/standard/74040.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 11745:2010,https://www.iso.org/standard/50725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44,https://www.iso.org/contents/data/committee/04/86/48602/x/catalogue/ -ISO 11745:2010/Amd 1:2015,https://www.iso.org/standard/61127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 14,https://www.iso.org/contents/data/committee/56/95/5695988/x/catalogue/ -ISO/TR 13392:2014,https://www.iso.org/standard/53743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 13585:2012,https://www.iso.org/standard/54051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO/WD 13585,https://www.iso.org/standard/74305.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 14554-1:2013,https://www.iso.org/standard/61409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 14554-2:2013,https://www.iso.org/standard/61410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 14731:2006,https://www.iso.org/standard/35151.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO/DIS 14731,https://www.iso.org/standard/68893.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 14732:2013,https://www.iso.org/standard/54935.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO/TR 14745:2015,https://www.iso.org/standard/54953.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 15608:2017,https://www.iso.org/standard/65667.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15611:2003,https://www.iso.org/standard/28392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15618-1:2016,https://www.iso.org/standard/68892.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 15618-2:2001,https://www.iso.org/standard/28422.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 11,https://www.iso.org/contents/data/committee/04/86/48654/x/catalogue/ -ISO 16338:2017,https://www.iso.org/standard/71704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 14,https://www.iso.org/contents/data/committee/56/95/5695988/x/catalogue/ -ISO/DIS 17279-1,https://www.iso.org/standard/59510.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/DIS 17279-2,https://www.iso.org/standard/65287.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17533:2015,https://www.iso.org/standard/59973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 14,https://www.iso.org/contents/data/committee/56/95/5695988/x/catalogue/ -ISO 17663:2009,https://www.iso.org/standard/43498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17846:2004,https://www.iso.org/standard/33257.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/CD 17927-1,https://www.iso.org/standard/73500.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 44/SC 14,https://www.iso.org/contents/data/committee/56/95/5695988/x/catalogue/ -ISO/TS 18166:2016,https://www.iso.org/standard/61645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44,https://www.iso.org/contents/data/committee/04/86/48602/x/catalogue/ -ISO 18278-1:2015,https://www.iso.org/standard/52315.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/TR 18491:2015,https://www.iso.org/standard/62612.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/DIS 18785-3,https://www.iso.org/standard/63375.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/TR 18786:2014,https://www.iso.org/standard/65946.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 19828:2017,https://www.iso.org/standard/69101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 14,https://www.iso.org/contents/data/committee/56/95/5695988/x/catalogue/ -ISO/WD 21904-1,https://www.iso.org/standard/72132.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/NP 21904-2,https://www.iso.org/standard/72137.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/FDIS 21904-3,https://www.iso.org/standard/73006.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/CD 22688,https://www.iso.org/standard/73689.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 24394:2008,https://www.iso.org/standard/42197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 14,https://www.iso.org/contents/data/committee/56/95/5695988/x/catalogue/ -ISO 24394:2008/Amd 1:2012,https://www.iso.org/standard/60507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 14,https://www.iso.org/contents/data/committee/56/95/5695988/x/catalogue/ -ISO/DIS 24394,https://www.iso.org/standard/70092.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 44/SC 14,https://www.iso.org/contents/data/committee/56/95/5695988/x/catalogue/ -ISO 25239-3:2011,https://www.iso.org/standard/44058.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 25239-3,https://www.iso.org/standard/69622.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 9013:2017,https://www.iso.org/standard/60321.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 9692-2:1998,https://www.iso.org/standard/21036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/DIS 9692-2,https://www.iso.org/standard/69596.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 9692-3:2016,https://www.iso.org/standard/62519.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 11970:2016,https://www.iso.org/standard/59270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 12996:2013,https://www.iso.org/standard/52313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 13469:2014,https://www.iso.org/standard/53808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 13916:2017,https://www.iso.org/standard/68957.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 13918:2017,https://www.iso.org/standard/67251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 13920:1996,https://www.iso.org/standard/23313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14327:2004,https://www.iso.org/standard/30619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 14344:2010,https://www.iso.org/standard/51589.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO/WD 14344,https://www.iso.org/standard/72263.html,20.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 14373:2015,https://www.iso.org/standard/61275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14555:2017,https://www.iso.org/standard/70565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15011-1:2009,https://www.iso.org/standard/42808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/DIS 15011-1,https://www.iso.org/standard/67260.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15011-2:2009,https://www.iso.org/standard/42789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15011-3:2009,https://www.iso.org/standard/42193.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15011-4:2017,https://www.iso.org/standard/69598.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15011-5:2011,https://www.iso.org/standard/51458.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/TS 15011-6:2012,https://www.iso.org/standard/50945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO/TS 15011-6:2012/Cor 1:2012,https://www.iso.org/standard/62751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15607:2003,https://www.iso.org/standard/28388.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15607:2003/Cor 1:2005,https://www.iso.org/standard/42908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/NP 15607,https://www.iso.org/standard/71495.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15609-1:2004,https://www.iso.org/standard/28390.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15609-1:2004/Cor 1:2005,https://www.iso.org/standard/42907.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/CD 15609-1,https://www.iso.org/standard/66055.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15609-2:2001,https://www.iso.org/standard/28404.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15609-3:2004,https://www.iso.org/standard/28405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15609-4:2009,https://www.iso.org/standard/43487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15609-5:2011,https://www.iso.org/standard/53804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 15609-6:2013,https://www.iso.org/standard/52216.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15610:2003,https://www.iso.org/standard/28391.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15612:2004,https://www.iso.org/standard/28393.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/DIS 15612,https://www.iso.org/standard/65971.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15613:2004,https://www.iso.org/standard/28394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-1:2017,https://www.iso.org/standard/51792.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-2:2005,https://www.iso.org/standard/28408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-2:2005/Cor 1:2005,https://www.iso.org/standard/42912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-2:2005/Cor 2:2009,https://www.iso.org/standard/54129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-3:2008,https://www.iso.org/standard/38137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-4:2005,https://www.iso.org/standard/28410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-4:2005/Cor 1:2007,https://www.iso.org/standard/46480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-5:2004,https://www.iso.org/standard/28411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-6:2006,https://www.iso.org/standard/42906.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-7:2016,https://www.iso.org/standard/57926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-8:2016,https://www.iso.org/standard/57927.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-10:2005,https://www.iso.org/standard/28416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-11:2002,https://www.iso.org/standard/28417.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15614-12:2014,https://www.iso.org/standard/64830.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 15614-13:2012,https://www.iso.org/standard/53805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 15614-14:2013,https://www.iso.org/standard/56646.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15620:2000,https://www.iso.org/standard/28403.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/DIS 15620,https://www.iso.org/standard/72734.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 16432:2006,https://www.iso.org/standard/30975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 16433:2006,https://www.iso.org/standard/30976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 17652-1:2003,https://www.iso.org/standard/29983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17652-2:2003,https://www.iso.org/standard/33399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17652-3:2003,https://www.iso.org/standard/33400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17652-4:2003,https://www.iso.org/standard/33401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17657-1:2005,https://www.iso.org/standard/39996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 17657-2:2005,https://www.iso.org/standard/39997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 17657-3:2005,https://www.iso.org/standard/39998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 17657-4:2005,https://www.iso.org/standard/39999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 17657-5:2005,https://www.iso.org/standard/40000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 17658:2002,https://www.iso.org/standard/29996.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 17660-1:2006,https://www.iso.org/standard/41194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/DIS 17660-1,https://www.iso.org/standard/67908.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17660-2:2006,https://www.iso.org/standard/41195.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/DIS 17660-2,https://www.iso.org/standard/67909.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 17671-1:2002,https://www.iso.org/standard/30007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 17671-2:2002,https://www.iso.org/standard/30008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 17671-3:2002,https://www.iso.org/standard/30009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 17671-4:2002,https://www.iso.org/standard/30010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 17671-5:2004,https://www.iso.org/standard/39848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 17671-6:2005,https://www.iso.org/standard/35142.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 17671-7:2004,https://www.iso.org/standard/35143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17677-1:2009,https://www.iso.org/standard/44765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/DIS 17677-1,https://www.iso.org/standard/70524.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/TR 17844:2004,https://www.iso.org/standard/33255.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17916:2016,https://www.iso.org/standard/60991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 18594:2007,https://www.iso.org/standard/38764.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 18595:2007,https://www.iso.org/standard/38765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/NP 18595,https://www.iso.org/standard/72933.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/DIS 18785-4,https://www.iso.org/standard/63376.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/DIS 18785-5,https://www.iso.org/standard/63377.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/TR 22824:2003,https://www.iso.org/standard/35134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 25239-1:2011,https://www.iso.org/standard/44056.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 25239-1,https://www.iso.org/standard/69620.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 25239-2:2011,https://www.iso.org/standard/44057.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 25239-2,https://www.iso.org/standard/69621.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 25239-3:2011,https://www.iso.org/standard/44058.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 25239-3,https://www.iso.org/standard/69622.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 25239-4:2011,https://www.iso.org/standard/44059.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 25239-4,https://www.iso.org/standard/69623.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 25239-5:2011,https://www.iso.org/standard/44060.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 25239-5,https://www.iso.org/standard/69624.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/TR 25901-1:2016,https://www.iso.org/standard/55758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/DTR 25901-2,https://www.iso.org/standard/57899.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/DTR 25901-2,https://www.iso.org/standard/73788.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/TR 25901-3:2016,https://www.iso.org/standard/62522.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/TR 25901-4:2016,https://www.iso.org/standard/62523.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 25980:2014,https://www.iso.org/standard/61903.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 544:2017,https://www.iso.org/standard/72415.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 636:2017,https://www.iso.org/standard/72419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 1071:2015,https://www.iso.org/standard/64568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 2401:1972,https://www.iso.org/standard/7297.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO/DIS 2401,https://www.iso.org/standard/72414.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 2560:2009,https://www.iso.org/standard/45947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 3580:2017,https://www.iso.org/standard/68752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 3581:2016,https://www.iso.org/standard/64569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 5182:2016,https://www.iso.org/standard/67356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5184:1979,https://www.iso.org/standard/11192.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 6847:2013,https://www.iso.org/standard/61769.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 6848:2015,https://www.iso.org/standard/64570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 12153:2011,https://www.iso.org/standard/51250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO/TR 13393:2009,https://www.iso.org/standard/53748.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14171:2016,https://www.iso.org/standard/68753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 14172:2015,https://www.iso.org/standard/64571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 14174:2012,https://www.iso.org/standard/51249.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO/CD 14174,https://www.iso.org/standard/73877.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 14175:2008,https://www.iso.org/standard/39569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 14341:2010,https://www.iso.org/standard/50227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 14343:2017,https://www.iso.org/standard/67727.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 15792-1:2000,https://www.iso.org/standard/29050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 15792-1:2000/Amd 1:2011,https://www.iso.org/standard/57186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 15792-2:2000,https://www.iso.org/standard/29051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 15792-3:2011,https://www.iso.org/standard/57182.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 16834:2012,https://www.iso.org/standard/57189.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 17632:2015,https://www.iso.org/standard/64573.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 17633:2017,https://www.iso.org/standard/68754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 17634:2015,https://www.iso.org/standard/64574.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 17777:2016,https://www.iso.org/standard/60508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 18273:2015,https://www.iso.org/standard/64572.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 18274:2010,https://www.iso.org/standard/50228.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 18275:2011,https://www.iso.org/standard/53801.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO/DIS 18275.2,https://www.iso.org/standard/72416.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 18276:2017,https://www.iso.org/standard/67728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 19288:2016,https://www.iso.org/standard/64270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 20168:2016,https://www.iso.org/standard/67197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/TR 20172:2009,https://www.iso.org/standard/50640.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/DTR 20173,https://www.iso.org/standard/69020.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 20173:2009,https://www.iso.org/standard/51793.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/TR 20174:2005,https://www.iso.org/standard/39263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 20378:2017,https://www.iso.org/standard/67854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 21952:2012,https://www.iso.org/standard/57188.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO/TR 22281:2018,https://www.iso.org/standard/73028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 24034:2010,https://www.iso.org/standard/53802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 24373:2008,https://www.iso.org/standard/42177.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO/DIS 24373.2,https://www.iso.org/standard/72420.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 24598:2012,https://www.iso.org/standard/57187.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO/CD 24598,https://www.iso.org/standard/73878.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 26304:2017,https://www.iso.org/standard/72417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 669:2016,https://www.iso.org/standard/44795.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 693:1982,https://www.iso.org/standard/4891.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 865:1981,https://www.iso.org/standard/5248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 1089:1980,https://www.iso.org/standard/5594.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 2503:2009,https://www.iso.org/standard/40644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 2503:2009/Amd 1:2015,https://www.iso.org/standard/60318.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 3821:2008,https://www.iso.org/standard/40642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO/FDIS 3821,https://www.iso.org/standard/67312.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 5171:2009,https://www.iso.org/standard/44987.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO/DIS 5171,https://www.iso.org/standard/69236.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 5172:2006,https://www.iso.org/standard/36106.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 5172:2006/Amd 1:2012,https://www.iso.org/standard/54385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 5172:2006/Amd 2:2015,https://www.iso.org/standard/60327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 5175-1:2017,https://www.iso.org/standard/68299.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 5175-2:2017,https://www.iso.org/standard/68301.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 5183-1:1998,https://www.iso.org/standard/27202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5183-2:2000,https://www.iso.org/standard/34487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5821:2009,https://www.iso.org/standard/45871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5822:1988,https://www.iso.org/standard/11970.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5826:2014,https://www.iso.org/standard/55983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5827:1983,https://www.iso.org/standard/11975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5828:2001,https://www.iso.org/standard/30112.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5829:1984,https://www.iso.org/standard/11977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 5830:1984,https://www.iso.org/standard/11978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 6210-1:1991,https://www.iso.org/standard/12481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 7285:1995,https://www.iso.org/standard/13944.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 7287:2002,https://www.iso.org/standard/31768.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 7289:2010,https://www.iso.org/standard/44986.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO/DIS 7289,https://www.iso.org/standard/71170.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 7291:2010,https://www.iso.org/standard/44967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 7291:2010/Amd 1:2015,https://www.iso.org/standard/60320.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 7931:1985,https://www.iso.org/standard/14900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 8167:1989,https://www.iso.org/standard/15253.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/WD 8167,https://www.iso.org/standard/72934.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 8205-1:2002,https://www.iso.org/standard/33973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 8205-2:2002,https://www.iso.org/standard/33974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 8205-3:2012,https://www.iso.org/standard/61412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 8206:1991,https://www.iso.org/standard/15298.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 8207:1996,https://www.iso.org/standard/15299.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 8430-1:2016,https://www.iso.org/standard/68224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 8430-2:2016,https://www.iso.org/standard/68225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 8430-3:2016,https://www.iso.org/standard/68226.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 9012:2008,https://www.iso.org/standard/40645.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 9090:1989,https://www.iso.org/standard/16678.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO/CD 9090,https://www.iso.org/standard/72739.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 9312:2013,https://www.iso.org/standard/61411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 9313:1989,https://www.iso.org/standard/16972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 9539:2010,https://www.iso.org/standard/44988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 9539:2010/Amd 1:2013,https://www.iso.org/standard/61436.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 10225:2013,https://www.iso.org/standard/63703.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 10656:2016,https://www.iso.org/standard/61408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 12170:1996,https://www.iso.org/standard/21086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 14112:1996,https://www.iso.org/standard/23608.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 14113:2013,https://www.iso.org/standard/62935.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 14114:2017,https://www.iso.org/standard/69237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 14744-1:2008,https://www.iso.org/standard/43497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14744-2:2000,https://www.iso.org/standard/25466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14744-3:2000,https://www.iso.org/standard/25467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14744-4:2000,https://www.iso.org/standard/25468.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14744-5:2000,https://www.iso.org/standard/25469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14744-6:2000,https://www.iso.org/standard/25470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15012-1:2013,https://www.iso.org/standard/53013.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15012-2:2008,https://www.iso.org/standard/42810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15012-4:2016,https://www.iso.org/standard/57900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 15296:2017,https://www.iso.org/standard/66053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 15615:2013,https://www.iso.org/standard/54384.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 15616-1:2003,https://www.iso.org/standard/28397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15616-2:2003,https://www.iso.org/standard/28420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15616-3:2003,https://www.iso.org/standard/28421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 15616-4:2008,https://www.iso.org/standard/45112.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 17662:2016,https://www.iso.org/standard/66052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/CD 21904-4,https://www.iso.org/standard/72139.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 44/SC 9,https://www.iso.org/contents/data/committee/04/86/48642/x/catalogue/ -ISO 22827-1:2005,https://www.iso.org/standard/35141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 22827-2:2005,https://www.iso.org/standard/38953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 22829:2017,https://www.iso.org/standard/64831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/TR 28821:2012,https://www.iso.org/standard/44968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 2400:2012,https://www.iso.org/standard/57041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 2553:2013,https://www.iso.org/standard/42192.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/DIS 2553,https://www.iso.org/standard/72740.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 3690:2012,https://www.iso.org/standard/44246.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/DIS 3690,https://www.iso.org/standard/72150.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 4136:2012,https://www.iso.org/standard/62317.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 5173:2009,https://www.iso.org/standard/44748.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 5173:2009/Amd 1:2011,https://www.iso.org/standard/59428.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO/DIS 5173,https://www.iso.org/standard/69608.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 5178:2001,https://www.iso.org/standard/32829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 5817:2014,https://www.iso.org/standard/54952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 6520-1:2007,https://www.iso.org/standard/40229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 6520-2:2013,https://www.iso.org/standard/62521.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 6947:2011,https://www.iso.org/standard/38133.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO/CD 6947,https://www.iso.org/standard/72741.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 7963:2006,https://www.iso.org/standard/37185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 3,https://www.iso.org/contents/data/committee/05/24/52410/x/catalogue/ -ISO 8249:2000,https://www.iso.org/standard/26208.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/DIS 8249,https://www.iso.org/standard/73492.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 9015-1:2001,https://www.iso.org/standard/32821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 9015-2:2016,https://www.iso.org/standard/67257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 9016:2012,https://www.iso.org/standard/62318.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 9017:2017,https://www.iso.org/standard/73808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 9018:2015,https://www.iso.org/standard/67258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 9692-1:2013,https://www.iso.org/standard/62520.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 9692-4:2003,https://www.iso.org/standard/30005.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 10042:2005,https://www.iso.org/standard/25464.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 10042:2005/Cor 1:2006,https://www.iso.org/standard/43815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO/FDIS 10042,https://www.iso.org/standard/70566.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 10447:2015,https://www.iso.org/standard/61276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 10675-1:2016,https://www.iso.org/standard/66908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 10675-2:2017,https://www.iso.org/standard/69609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 10863:2011,https://www.iso.org/standard/54053.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 11666,https://www.iso.org/standard/69610.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 11666:2010,https://www.iso.org/standard/50685.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 12932:2013,https://www.iso.org/standard/52215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 12996:2013,https://www.iso.org/standard/52313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/DTR 12998,https://www.iso.org/standard/52314.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 13469:2014,https://www.iso.org/standard/53808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 13588:2012,https://www.iso.org/standard/54054.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO/DIS 13588,https://www.iso.org/standard/72747.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 13919-1:1996,https://www.iso.org/standard/23312.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 13919-2:2001,https://www.iso.org/standard/26891.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 44/SC 10,https://www.iso.org/contents/data/committee/04/86/48650/x/catalogue/ -ISO 14270:2016,https://www.iso.org/standard/61462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14271:2017,https://www.iso.org/standard/72149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14272:2016,https://www.iso.org/standard/61272.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14273:2016,https://www.iso.org/standard/61273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14323:2015,https://www.iso.org/standard/61277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14324:2003,https://www.iso.org/standard/24088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14329:2003,https://www.iso.org/standard/24093.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/TR 14345:2012,https://www.iso.org/standard/24112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14346:2013,https://www.iso.org/standard/53742.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 14347:2008,https://www.iso.org/standard/24114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 15626:2011,https://www.iso.org/standard/55468.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO/DIS 15626,https://www.iso.org/standard/72746.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 15653:2018,https://www.iso.org/standard/70865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO/TR 16060:2003,https://www.iso.org/standard/29975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 16237:2015,https://www.iso.org/standard/55984.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 17635:2016,https://www.iso.org/standard/66754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17636-1:2013,https://www.iso.org/standard/52981.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17636-2:2013,https://www.iso.org/standard/53390.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17637:2016,https://www.iso.org/standard/67259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17638:2016,https://www.iso.org/standard/67261.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17639:2003,https://www.iso.org/standard/29973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17640:2017,https://www.iso.org/standard/69611.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17641-1:2004,https://www.iso.org/standard/39622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17641-2:2015,https://www.iso.org/standard/67262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO/TR 17641-3:2005,https://www.iso.org/standard/39624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17642-1:2004,https://www.iso.org/standard/39625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17642-2:2005,https://www.iso.org/standard/39626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17642-3:2005,https://www.iso.org/standard/39627.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17643:2015,https://www.iso.org/standard/61100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 17653:2012,https://www.iso.org/standard/53806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 17654:2011,https://www.iso.org/standard/53807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 17659:2002,https://www.iso.org/standard/29997.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 18278-2:2016,https://www.iso.org/standard/52317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 18278-3:2017,https://www.iso.org/standard/68456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 18592:2009,https://www.iso.org/standard/38763.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/DIS 18592,https://www.iso.org/standard/72932.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO/DIS 18785-1,https://www.iso.org/standard/63373.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/DIS 18785-2,https://www.iso.org/standard/63374.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 19285:2017,https://www.iso.org/standard/64266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO/TS 20273:2017,https://www.iso.org/standard/67460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/DIS 20601,https://www.iso.org/standard/68499.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 22825:2017,https://www.iso.org/standard/69428.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 22826:2005,https://www.iso.org/standard/35138.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 23277:2015,https://www.iso.org/standard/62315.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 23278:2015,https://www.iso.org/standard/62316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 23279:2017,https://www.iso.org/standard/69612.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 5,https://www.iso.org/contents/data/committee/04/86/48620/x/catalogue/ -ISO 24497-1:2007,https://www.iso.org/standard/42265.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 24497-1,https://www.iso.org/standard/72146.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 24497-2:2007,https://www.iso.org/standard/42264.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 24497-2,https://www.iso.org/standard/72147.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 24497-3:2007,https://www.iso.org/standard/42266.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 24497-3,https://www.iso.org/standard/72148.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 25239-2:2011,https://www.iso.org/standard/44057.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO/CD 25239-2,https://www.iso.org/standard/69621.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IIW,https://www.iso.org/contents/data/committee/05/50/55014/x/catalogue/ -ISO 857-2:2005,https://www.iso.org/standard/29995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 7,https://www.iso.org/contents/data/committee/04/86/48626/x/catalogue/ -ISO 3677:2016,https://www.iso.org/standard/62625.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44,https://www.iso.org/contents/data/committee/04/86/48602/x/catalogue/ -ISO 5179:1983,https://www.iso.org/standard/11185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 13,https://www.iso.org/contents/data/committee/56/95/5695966/x/catalogue/ -ISO 5187:1985,https://www.iso.org/standard/11195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44,https://www.iso.org/contents/data/committee/04/86/48602/x/catalogue/ -ISO 9453:2014,https://www.iso.org/standard/59299.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9454-1:2016,https://www.iso.org/standard/57831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9454-2:1998,https://www.iso.org/standard/2386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-1:1990,https://www.iso.org/standard/17168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-2:1993,https://www.iso.org/standard/17169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-3:1992,https://www.iso.org/standard/17170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO/NP 9455-3,https://www.iso.org/standard/73174.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-5:2014,https://www.iso.org/standard/59300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-6:1995,https://www.iso.org/standard/17173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-8:1991,https://www.iso.org/standard/17175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-9:1993,https://www.iso.org/standard/17176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-10:2012,https://www.iso.org/standard/54322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-11:2017,https://www.iso.org/standard/69290.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-13:2017,https://www.iso.org/standard/69291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-14:2017,https://www.iso.org/standard/69292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-15:2017,https://www.iso.org/standard/69293.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-16:2013,https://www.iso.org/standard/54323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 9455-17:2002,https://www.iso.org/standard/32830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 10564:1993,https://www.iso.org/standard/18649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 13,https://www.iso.org/contents/data/committee/56/95/5695966/x/catalogue/ -ISO 12224-1:1997,https://www.iso.org/standard/21280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 12224-2:1997,https://www.iso.org/standard/21281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 12224-3:2003,https://www.iso.org/standard/32831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 12,https://www.iso.org/contents/data/committee/04/86/48656/x/catalogue/ -ISO 14112:1996,https://www.iso.org/standard/23608.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 17672:2016,https://www.iso.org/standard/63627.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44,https://www.iso.org/contents/data/committee/04/86/48602/x/catalogue/ -ISO 18279:2003,https://www.iso.org/standard/31771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 13,https://www.iso.org/contents/data/committee/56/95/5695966/x/catalogue/ -ISO 13574:2015,https://www.iso.org/standard/54030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13577-1:2016,https://www.iso.org/standard/68019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13577-2:2014,https://www.iso.org/standard/54033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13577-3:2016,https://www.iso.org/standard/57988.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13577-4:2014,https://www.iso.org/standard/57989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13578:2017,https://www.iso.org/standard/57990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13579-1:2013,https://www.iso.org/standard/54958.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13579-2:2013,https://www.iso.org/standard/54959.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13579-3:2013,https://www.iso.org/standard/54960.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13579-4:2013,https://www.iso.org/standard/54961.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 13579-11:2017,https://www.iso.org/standard/65914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 244,https://www.iso.org/contents/data/committee/56/19/561961/x/catalogue/ -ISO 2107:2007,https://www.iso.org/standard/43401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 9,https://www.iso.org/contents/data/committee/05/01/50156/x/catalogue/ -ISO 4885,https://www.iso.org/standard/74642.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 4885:2017,https://www.iso.org/standard/63072.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 15787:2016,https://www.iso.org/standard/56851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 18535:2016,https://www.iso.org/standard/62820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 19207:2016,https://www.iso.org/standard/63998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3861:2005,https://www.iso.org/standard/37224.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8501-1:2007,https://www.iso.org/standard/43426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8501-2:1994,https://www.iso.org/standard/15712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8501-3:2006,https://www.iso.org/standard/41021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8501-4:2006,https://www.iso.org/standard/38146.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/NP 8501-4,https://www.iso.org/standard/73861.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8502-2:2017,https://www.iso.org/standard/58058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8502-3:2017,https://www.iso.org/standard/58060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8502-4:2017,https://www.iso.org/standard/58061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8502-5:1998,https://www.iso.org/standard/21031.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8502-6:2006,https://www.iso.org/standard/42962.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/NP 8502-6,https://www.iso.org/standard/73862.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8502-9:1998,https://www.iso.org/standard/2833.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/NP 8502-9,https://www.iso.org/standard/73863.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8502-11:2006,https://www.iso.org/standard/27606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8503-1:2012,https://www.iso.org/standard/51979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8503-2:2012,https://www.iso.org/standard/51980.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8503-3:2012,https://www.iso.org/standard/51981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8503-4:2012,https://www.iso.org/standard/51982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8503-5:2017,https://www.iso.org/standard/60139.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8504-1:2000,https://www.iso.org/standard/29750.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/NP 8504-1,https://www.iso.org/standard/72938.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8504-2:2000,https://www.iso.org/standard/29751.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/NP 8504-2,https://www.iso.org/standard/72939.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 8504-3:1993,https://www.iso.org/standard/15727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 8504-3,https://www.iso.org/standard/66696.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11124-1:1993,https://www.iso.org/standard/19110.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11124-1,https://www.iso.org/standard/66704.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11124-2:1993,https://www.iso.org/standard/19111.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11124-2,https://www.iso.org/standard/66705.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11124-3:1993,https://www.iso.org/standard/19112.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11124-3,https://www.iso.org/standard/66706.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11124-4:1993,https://www.iso.org/standard/19113.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11124-4,https://www.iso.org/standard/66707.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11125-1:1993,https://www.iso.org/standard/19115.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11125-1,https://www.iso.org/standard/66697.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11125-2:1993,https://www.iso.org/standard/19116.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11125-2,https://www.iso.org/standard/66698.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11125-3:1993,https://www.iso.org/standard/19117.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11125-3,https://www.iso.org/standard/66699.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11125-4:1993,https://www.iso.org/standard/19118.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11125-4,https://www.iso.org/standard/66700.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11125-5:1993,https://www.iso.org/standard/19119.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11125-5,https://www.iso.org/standard/66701.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11125-6:1993,https://www.iso.org/standard/19120.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11125-6,https://www.iso.org/standard/66702.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11125-7:1993,https://www.iso.org/standard/19121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11125-7,https://www.iso.org/standard/66703.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/CD 11125-9,https://www.iso.org/standard/66116.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-1:1993,https://www.iso.org/standard/19125.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-1:1993/Cor 1:1997,https://www.iso.org/standard/28334.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-1:1993/Cor 2:1997,https://www.iso.org/standard/28993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11126-1,https://www.iso.org/standard/66708.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-3:1993,https://www.iso.org/standard/19127.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11126-3,https://www.iso.org/standard/66709.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-4:1993,https://www.iso.org/standard/19128.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11126-4,https://www.iso.org/standard/66710.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-5:1993,https://www.iso.org/standard/19129.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11126-5,https://www.iso.org/standard/66711.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-6:1993,https://www.iso.org/standard/19130.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11126-6,https://www.iso.org/standard/66712.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-7:1995,https://www.iso.org/standard/19131.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-7:1995/Cor 1:1999,https://www.iso.org/standard/31675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11126-7,https://www.iso.org/standard/66713.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-8:1993,https://www.iso.org/standard/19132.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO/DIS 11126-8,https://www.iso.org/standard/66714.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-9:1999,https://www.iso.org/standard/19133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11126-10:2017,https://www.iso.org/standard/65967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11127-1:2011,https://www.iso.org/standard/52003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11127-2:2011,https://www.iso.org/standard/52004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11127-3:2011,https://www.iso.org/standard/52005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11127-4:2011,https://www.iso.org/standard/52006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11127-5:2011,https://www.iso.org/standard/52007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11127-6:2011,https://www.iso.org/standard/52008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 11127-7:2011,https://www.iso.org/standard/52009.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 12944-4:2017,https://www.iso.org/standard/64836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO/TR 15235:2001,https://www.iso.org/standard/26996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 12,https://www.iso.org/contents/data/committee/04/80/48054/x/catalogue/ -ISO 1463:2003,https://www.iso.org/standard/31239.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2063-1:2017,https://www.iso.org/standard/61893.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2063-2:2017,https://www.iso.org/standard/61894.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2064:1996,https://www.iso.org/standard/6845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2085:2010,https://www.iso.org/standard/51481.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 2085,https://www.iso.org/standard/72171.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 2106:2011,https://www.iso.org/standard/51483.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/CD 2106,https://www.iso.org/standard/72811.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 2128:2010,https://www.iso.org/standard/51484.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 2135:2017,https://www.iso.org/standard/70149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 2143:2017,https://www.iso.org/standard/70154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 2360:2017,https://www.iso.org/standard/69943.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2376:2010,https://www.iso.org/standard/51487.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 2376,https://www.iso.org/standard/72172.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 2931:2017,https://www.iso.org/standard/70155.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 3210:2017,https://www.iso.org/standard/67983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 3211:2010,https://www.iso.org/standard/51491.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 3211,https://www.iso.org/standard/72173.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 3543:2000,https://www.iso.org/standard/20313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3543:2000/Cor 1:2003,https://www.iso.org/standard/39715.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3613:2010,https://www.iso.org/standard/53003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3868:1976,https://www.iso.org/standard/9460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3882:2003,https://www.iso.org/standard/32444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3892:2000,https://www.iso.org/standard/32968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4520:1981,https://www.iso.org/standard/10418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 8,https://www.iso.org/contents/data/committee/05/14/51400/x/catalogue/ -ISO 4536:1985,https://www.iso.org/standard/10448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 4541:1978,https://www.iso.org/standard/10452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 4543:1981,https://www.iso.org/standard/10454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 6581:2010,https://www.iso.org/standard/51492.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 6581,https://www.iso.org/standard/72174.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 6719:2010,https://www.iso.org/standard/52773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 6988:1985,https://www.iso.org/standard/13550.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7583:2013,https://www.iso.org/standard/57434.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 7599:2018,https://www.iso.org/standard/70156.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 7668,https://www.iso.org/standard/72810.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 7668:2010,https://www.iso.org/standard/51493.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 7759:2010,https://www.iso.org/standard/51494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 8251:2011,https://www.iso.org/standard/51495.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 8251,https://www.iso.org/standard/72812.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 8993:2010,https://www.iso.org/standard/51498.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 8993,https://www.iso.org/standard/72175.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 8994:2011,https://www.iso.org/standard/51497.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 8994,https://www.iso.org/standard/72813.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 9587:2007,https://www.iso.org/standard/45971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 9588:2007,https://www.iso.org/standard/45972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 9717:2017,https://www.iso.org/standard/68517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 8,https://www.iso.org/contents/data/committee/05/14/51400/x/catalogue/ -ISO 10074:2017,https://www.iso.org/standard/70152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 10111:2000,https://www.iso.org/standard/32969.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/CD 10111,https://www.iso.org/standard/73284.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 10215,https://www.iso.org/standard/72176.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 10215:2010,https://www.iso.org/standard/51500.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 10216:2017,https://www.iso.org/standard/70153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 10289:1999,https://www.iso.org/standard/18331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 11408:1999,https://www.iso.org/standard/19350.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 8,https://www.iso.org/contents/data/committee/05/14/51400/x/catalogue/ -ISO 12670:2011,https://www.iso.org/standard/51647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 12671:2012,https://www.iso.org/standard/51648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 12679:2011,https://www.iso.org/standard/51649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 12690:2010,https://www.iso.org/standard/51650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 12736:2014,https://www.iso.org/standard/51655.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 13123:2011,https://www.iso.org/standard/53006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 13826:2013,https://www.iso.org/standard/54313.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14188:2012,https://www.iso.org/standard/54494.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14231:2000,https://www.iso.org/standard/23093.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14232-1:2017,https://www.iso.org/standard/63667.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/TR 14232-2:2017,https://www.iso.org/standard/63668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14916:2017,https://www.iso.org/standard/60995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14917:2017,https://www.iso.org/standard/60996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14918:1998,https://www.iso.org/standard/23989.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/FDIS 14918,https://www.iso.org/standard/68503.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14919:2015,https://www.iso.org/standard/62084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14920:2015,https://www.iso.org/standard/60997.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14921:2010,https://www.iso.org/standard/45970.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14922-1:1999,https://www.iso.org/standard/27106.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14922-2:1999,https://www.iso.org/standard/27107.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14922-3:1999,https://www.iso.org/standard/27108.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14922-4:1999,https://www.iso.org/standard/27109.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14923:2003,https://www.iso.org/standard/23994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14924:2005,https://www.iso.org/standard/41825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 15730:2000,https://www.iso.org/standard/25694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 8,https://www.iso.org/contents/data/committee/05/14/51400/x/catalogue/ -ISO 16348:2003,https://www.iso.org/standard/30099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/TS 16688:2017,https://www.iso.org/standard/68656.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/TR 16689:2012,https://www.iso.org/standard/57433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 17834:2003,https://www.iso.org/standard/31570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 17836:2017,https://www.iso.org/standard/69754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 18332:2007,https://www.iso.org/standard/38656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 18555:2016,https://www.iso.org/standard/62875.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/CD 18771,https://www.iso.org/standard/72814.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 21164,https://www.iso.org/standard/70010.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/TR 26946:2011,https://www.iso.org/standard/43929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 27307:2015,https://www.iso.org/standard/51692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 27830:2017,https://www.iso.org/standard/66504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 27831-1:2008,https://www.iso.org/standard/44347.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 27831-2:2008,https://www.iso.org/standard/44346.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 28340:2013,https://www.iso.org/standard/44652.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 1456:2009,https://www.iso.org/standard/50237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 1460:1992,https://www.iso.org/standard/6054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 4,https://www.iso.org/contents/data/committee/05/13/51384/x/catalogue/ -ISO 1461:2009,https://www.iso.org/standard/43431.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 4,https://www.iso.org/contents/data/committee/05/13/51384/x/catalogue/ -ISO 1463:2003,https://www.iso.org/standard/31239.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2063-1:2017,https://www.iso.org/standard/61893.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2063-2:2017,https://www.iso.org/standard/61894.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2064:1996,https://www.iso.org/standard/6845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2080:2008,https://www.iso.org/standard/45351.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2081,https://www.iso.org/standard/66374.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 2081:2008,https://www.iso.org/standard/44331.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 2082:2017,https://www.iso.org/standard/66503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 2093:1986,https://www.iso.org/standard/6880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 2177:2003,https://www.iso.org/standard/37084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2178:2016,https://www.iso.org/standard/63004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2179:1986,https://www.iso.org/standard/6981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 2361:1982,https://www.iso.org/standard/7200.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2819:2017,https://www.iso.org/standard/70830.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3497:2000,https://www.iso.org/standard/20319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3543:2000,https://www.iso.org/standard/20313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3543:2000/Cor 1:2003,https://www.iso.org/standard/39715.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3868:1976,https://www.iso.org/standard/9460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 3882:2003,https://www.iso.org/standard/32444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4516:2002,https://www.iso.org/standard/31876.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 4518:1980,https://www.iso.org/standard/10414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4519:1980,https://www.iso.org/standard/10416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4521:2008,https://www.iso.org/standard/44332.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 4524-2:2000,https://www.iso.org/standard/10428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 4524-3:1985,https://www.iso.org/standard/10429.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO/NP 4524-3,https://www.iso.org/standard/75380.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 4524-6:1988,https://www.iso.org/standard/10434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 4525:2003,https://www.iso.org/standard/36754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 4526:2004,https://www.iso.org/standard/37513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 4527:2003,https://www.iso.org/standard/36258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 4536:1985,https://www.iso.org/standard/10448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 4538:1978,https://www.iso.org/standard/10449.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 4539:1980,https://www.iso.org/standard/10450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 4541:1978,https://www.iso.org/standard/10452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 4543:1981,https://www.iso.org/standard/10454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 6158:2011,https://www.iso.org/standard/56850.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO/DIS 6158,https://www.iso.org/standard/72269.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 6988:1985,https://www.iso.org/standard/13550.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7587:1986,https://www.iso.org/standard/14374.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 7989-1:2006,https://www.iso.org/standard/39137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 7989-2:2007,https://www.iso.org/standard/39818.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO/NP 7989-2,https://www.iso.org/standard/74866.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 8401:2017,https://www.iso.org/standard/70829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 9220:1988,https://www.iso.org/standard/16849.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/WD 9220,https://www.iso.org/standard/74308.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 9587:2007,https://www.iso.org/standard/45971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 9588:2007,https://www.iso.org/standard/45972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 10111:2000,https://www.iso.org/standard/32969.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/CD 10111,https://www.iso.org/standard/73284.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 10289:1999,https://www.iso.org/standard/18331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 10308:2006,https://www.iso.org/standard/34929.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 10309:1994,https://www.iso.org/standard/18356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 10587:2000,https://www.iso.org/standard/18671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 10683:2014,https://www.iso.org/standard/55924.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO/FDIS 10683,https://www.iso.org/standard/70609.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 10684:2004,https://www.iso.org/standard/36897.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 10684:2004/Cor 1:2008,https://www.iso.org/standard/51928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 2/SC 14,https://www.iso.org/contents/data/committee/62/65/626544/x/catalogue/ -ISO 12683:2004,https://www.iso.org/standard/32214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 12686:1999,https://www.iso.org/standard/1760.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 12687:1996,https://www.iso.org/standard/1643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 14647:2000,https://www.iso.org/standard/25057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 14713-1:2017,https://www.iso.org/standard/71135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 4,https://www.iso.org/contents/data/committee/05/13/51384/x/catalogue/ -ISO 14713-2:2009,https://www.iso.org/standard/45558.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107/SC 4,https://www.iso.org/contents/data/committee/05/13/51384/x/catalogue/ -ISO/CD 14713-2,https://www.iso.org/standard/71136.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 107/SC 4,https://www.iso.org/contents/data/committee/05/13/51384/x/catalogue/ -ISO 14713-3:2017,https://www.iso.org/standard/71137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 4,https://www.iso.org/contents/data/committee/05/13/51384/x/catalogue/ -ISO 15720:2001,https://www.iso.org/standard/25684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 15721:2001,https://www.iso.org/standard/25685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 15724:2001,https://www.iso.org/standard/25688.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 15726:2009,https://www.iso.org/standard/46364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO/TR 15922:2011,https://www.iso.org/standard/55557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 8,https://www.iso.org/contents/data/committee/05/14/51400/x/catalogue/ -ISO 16348:2003,https://www.iso.org/standard/30099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 17334:2008,https://www.iso.org/standard/46365.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 17668:2016,https://www.iso.org/standard/60217.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 4,https://www.iso.org/contents/data/committee/05/13/51384/x/catalogue/ -ISO 17925:2004,https://www.iso.org/standard/33283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 18332:2007,https://www.iso.org/standard/38656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 7,https://www.iso.org/contents/data/committee/05/13/51394/x/catalogue/ -ISO 19477:2016,https://www.iso.org/standard/65050.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 19487:2016,https://www.iso.org/standard/65134.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 19598:2016,https://www.iso.org/standard/65445.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO/DIS 21164,https://www.iso.org/standard/70010.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/CD 21874,https://www.iso.org/standard/72021.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 21968:2005,https://www.iso.org/standard/34781.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/CD 21968,https://www.iso.org/standard/73285.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 22778:2006,https://www.iso.org/standard/36488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 9,https://www.iso.org/contents/data/committee/66/20/6620163/x/catalogue/ -ISO 22779:2006,https://www.iso.org/standard/36489.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 9,https://www.iso.org/contents/data/committee/66/20/6620163/x/catalogue/ -ISO 26945:2011,https://www.iso.org/standard/56738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 27830:2017,https://www.iso.org/standard/66504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 27831-1:2008,https://www.iso.org/standard/44347.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 27831-2:2008,https://www.iso.org/standard/44346.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 27874:2008,https://www.iso.org/standard/44390.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107/SC 3,https://www.iso.org/contents/data/committee/05/13/51372/x/catalogue/ -ISO 2178:2016,https://www.iso.org/standard/63004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2746:2015,https://www.iso.org/standard/61466.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 2747:1998,https://www.iso.org/standard/1607.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4528:2015,https://www.iso.org/standard/61465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4530:1983,https://www.iso.org/standard/10441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/DIS 4531.2,https://www.iso.org/standard/70990.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4531-1:1998,https://www.iso.org/standard/10442.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4531-2:1998,https://www.iso.org/standard/10443.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4532:1991,https://www.iso.org/standard/10444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4534:2010,https://www.iso.org/standard/46318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 6370-1:1991,https://www.iso.org/standard/12699.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 6370-2:2011,https://www.iso.org/standard/59478.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 8289:2000,https://www.iso.org/standard/27408.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/WD 8289-1,https://www.iso.org/standard/74388.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/DIS 8289-2,https://www.iso.org/standard/73455.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 8291:1986,https://www.iso.org/standard/15411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 11177:2016,https://www.iso.org/standard/62853.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/DIS 11177,https://www.iso.org/standard/74516.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 13805:1999,https://www.iso.org/standard/22970.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 13807:1999,https://www.iso.org/standard/22972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 13807:1999/Cor 1:2000,https://www.iso.org/standard/34670.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 15695:2000,https://www.iso.org/standard/28749.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 15695:2000/Cor 1:2000,https://www.iso.org/standard/34766.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 19496-1:2017,https://www.iso.org/standard/66383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 19496-2:2017,https://www.iso.org/standard/65190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 20274:2017,https://www.iso.org/standard/67461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28706-1:2008,https://www.iso.org/standard/44893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28706-2:2017,https://www.iso.org/standard/63869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28706-3:2017,https://www.iso.org/standard/66647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28706-4:2016,https://www.iso.org/standard/66378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28706-5:2010,https://www.iso.org/standard/56200.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28721-1:2008,https://www.iso.org/standard/45036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28721-2:2015,https://www.iso.org/standard/66379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28721-3:2008,https://www.iso.org/standard/44900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28721-4:2015,https://www.iso.org/standard/66085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28721-5:2016,https://www.iso.org/standard/62852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28722:2008,https://www.iso.org/standard/44901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28723:2008,https://www.iso.org/standard/44902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28762:2010,https://www.iso.org/standard/56201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28763:2008,https://www.iso.org/standard/44933.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28764:2015,https://www.iso.org/standard/66381.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 28765:2016,https://www.iso.org/standard/66382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14656:1999,https://www.iso.org/standard/25116.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 20267:2017,https://www.iso.org/standard/67443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 20523:2017,https://www.iso.org/standard/68243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 14617-11:2002,https://www.iso.org/standard/33390.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 17741:2016,https://www.iso.org/standard/60373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 17742:2015,https://www.iso.org/standard/60374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 17743:2016,https://www.iso.org/standard/60376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50047:2016,https://www.iso.org/standard/51910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/CD 50049,https://www.iso.org/standard/68581.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/IEC 13273-1:2015,https://www.iso.org/standard/62606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/IEC 13273-2:2015,https://www.iso.org/standard/62607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50001:2011,https://www.iso.org/standard/51297.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/DIS 50001,https://www.iso.org/standard/69426.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50002:2014,https://www.iso.org/standard/60088.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50003:2014,https://www.iso.org/standard/60089.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50004:2014,https://www.iso.org/standard/60041.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50006:2014,https://www.iso.org/standard/51869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50007:2017,https://www.iso.org/standard/51870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/DTS 50008,https://www.iso.org/standard/51871.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 50015:2014,https://www.iso.org/standard/60043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/DIS 50021,https://www.iso.org/standard/67850.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/CD 50044,https://www.iso.org/standard/67789.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/DIS 50045,https://www.iso.org/standard/67849.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/DIS 50046,https://www.iso.org/standard/67790.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 683-15:1992,https://www.iso.org/standard/4874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 1204:1990,https://www.iso.org/standard/5797.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 2261:1994,https://www.iso.org/standard/23830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 2710-1:2017,https://www.iso.org/standard/70032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 2710-2:1999,https://www.iso.org/standard/21934.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/CD 2710-2,https://www.iso.org/standard/73999.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 3046-1:2002,https://www.iso.org/standard/28330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 3046-3:2006,https://www.iso.org/standard/37496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 3046-4:2009,https://www.iso.org/standard/44318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 3046-5:2001,https://www.iso.org/standard/24378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 3046-6:1990,https://www.iso.org/standard/8150.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 3046-6,https://www.iso.org/standard/74689.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 4548-1:1997,https://www.iso.org/standard/21711.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-2:1997,https://www.iso.org/standard/21712.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-3:1997,https://www.iso.org/standard/21713.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-4:1997,https://www.iso.org/standard/10464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-5:2013,https://www.iso.org/standard/45759.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO/NP 4548-5,https://www.iso.org/standard/69996.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-6:2012,https://www.iso.org/standard/45761.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-7:2012,https://www.iso.org/standard/45762.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-9:2008,https://www.iso.org/standard/44520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-12:2017,https://www.iso.org/standard/62763.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-13:2013,https://www.iso.org/standard/56302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-14:2016,https://www.iso.org/standard/56304.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 4548-15:2014,https://www.iso.org/standard/56326.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 6622-1:2003,https://www.iso.org/standard/37348.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/NP 6622-1,https://www.iso.org/standard/73248.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6798:1995,https://www.iso.org/standard/20801.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 6798-1,https://www.iso.org/standard/72411.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 6798-2,https://www.iso.org/standard/72412.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 6826:1997,https://www.iso.org/standard/13334.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-1:2005,https://www.iso.org/standard/40072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-2:2010,https://www.iso.org/standard/43490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-3:2010,https://www.iso.org/standard/45616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-4:2005,https://www.iso.org/standard/40073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-5:2010,https://www.iso.org/standard/43491.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-6:2005,https://www.iso.org/standard/40074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-7:2005,https://www.iso.org/standard/40075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-7:2005/Cor 1:2006,https://www.iso.org/standard/43996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-8:2005,https://www.iso.org/standard/40076.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-9:2010,https://www.iso.org/standard/53437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-10:2014,https://www.iso.org/standard/58096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-11:2014,https://www.iso.org/standard/58097.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 7967-12:2014,https://www.iso.org/standard/58098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8178-1:2017,https://www.iso.org/standard/64710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-2:2008,https://www.iso.org/standard/41171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-3:1994,https://www.iso.org/standard/15270.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/CD 8178-3,https://www.iso.org/standard/74451.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-4:2017,https://www.iso.org/standard/65278.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-5:2015,https://www.iso.org/standard/62420.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/NP 8178-5,https://www.iso.org/standard/74082.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-6:2000,https://www.iso.org/standard/22484.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/PRF 8178-6,https://www.iso.org/standard/64711.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-7:2015,https://www.iso.org/standard/62077.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-8:2015,https://www.iso.org/standard/62078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-9:2012,https://www.iso.org/standard/56091.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/NP 8178-9,https://www.iso.org/standard/72721.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8178-10:2002,https://www.iso.org/standard/32824.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO 8528-1,https://www.iso.org/standard/68539.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-1:2005,https://www.iso.org/standard/30567.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-2:2005,https://www.iso.org/standard/39044.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/FDIS 8528-2,https://www.iso.org/standard/72526.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-3:2005,https://www.iso.org/standard/39045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-4:2005,https://www.iso.org/standard/39046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-5:2013,https://www.iso.org/standard/56795.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/DIS 8528-5,https://www.iso.org/standard/71009.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-6:2005,https://www.iso.org/standard/39048.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 8528-6,https://www.iso.org/standard/71010.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-7:2017,https://www.iso.org/standard/63994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-8:2016,https://www.iso.org/standard/63631.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-9:2017,https://www.iso.org/standard/63995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-10:1998,https://www.iso.org/standard/15766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 8528-10,https://www.iso.org/standard/74983.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-12:1997,https://www.iso.org/standard/20681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-13:2016,https://www.iso.org/standard/63595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8999:2001,https://www.iso.org/standard/30758.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 11102-1:1997,https://www.iso.org/standard/19090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 11102-2:1997,https://www.iso.org/standard/19091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 11424:2017,https://www.iso.org/standard/68038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13332:2000,https://www.iso.org/standard/21729.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 13774:1998,https://www.iso.org/standard/22512.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 14314:2004,https://www.iso.org/standard/38570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 14396:2002,https://www.iso.org/standard/32909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 15550:2016,https://www.iso.org/standard/70030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 15619:2013,https://www.iso.org/standard/55443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 19013-1:2005,https://www.iso.org/standard/32054.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 19013-2:2016,https://www.iso.org/standard/65369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/TS 19425:2015,https://www.iso.org/standard/64871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 21006:2006,https://www.iso.org/standard/34365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/TS 23556:2007,https://www.iso.org/standard/45425.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -IEC 88528-11:2004,https://www.iso.org/standard/39805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 2314:2009,https://www.iso.org/standard/42989.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 3977-1:1997,https://www.iso.org/standard/23816.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 3977-2:1997,https://www.iso.org/standard/24755.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 3977-3:2004,https://www.iso.org/standard/40394.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 3977-4:2002,https://www.iso.org/standard/25140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 3977-5:2001,https://www.iso.org/standard/25139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 3977-7:2002,https://www.iso.org/standard/25141.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 3977-8:2002,https://www.iso.org/standard/25142.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 3977-9:1999,https://www.iso.org/standard/25143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 7919-4:2009,https://www.iso.org/standard/38977.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 7919-4:2009/Amd 1:2017,https://www.iso.org/standard/71199.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10437:2003,https://www.iso.org/standard/37864.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/DIS 10437,https://www.iso.org/standard/50383.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10494:1993,https://www.iso.org/standard/18563.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO/PRF 10494,https://www.iso.org/standard/64946.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 10816-4:2009,https://www.iso.org/standard/40458.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10816-4:2009/Amd 1:2017,https://www.iso.org/standard/71201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 11042-1:1996,https://www.iso.org/standard/19022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 11042-2:1996,https://www.iso.org/standard/21427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 11086:1996,https://www.iso.org/standard/19073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 18888:2017,https://www.iso.org/standard/63672.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 19372:2015,https://www.iso.org/standard/61976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 19859:2016,https://www.iso.org/standard/55491.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 19860:2005,https://www.iso.org/standard/33977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 20816-2:2017,https://www.iso.org/standard/70047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/DIS 20816-4,https://www.iso.org/standard/74450.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 21789:2009,https://www.iso.org/standard/35990.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO/AWI 21789,https://www.iso.org/standard/74201.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 26382:2010,https://www.iso.org/standard/43552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 6806:2017,https://www.iso.org/standard/68036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 22968:2010,https://www.iso.org/standard/41264.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 109,https://www.iso.org/contents/data/committee/05/15/51580/x/catalogue/ -ISO 23553-1:2014,https://www.iso.org/standard/57050.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO/NP 23553-1,https://www.iso.org/standard/74771.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 22967:2010,https://www.iso.org/standard/41263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 109,https://www.iso.org/contents/data/committee/05/15/51580/x/catalogue/ -ISO 23550:2011,https://www.iso.org/standard/57045.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23550:2011/Amd 1:2015,https://www.iso.org/standard/61951.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO/FDIS 23550,https://www.iso.org/standard/60451.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-1:2012,https://www.iso.org/standard/54346.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-2:2006,https://www.iso.org/standard/41170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO/DIS 23551-2,https://www.iso.org/standard/66515.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-3:2005,https://www.iso.org/standard/36930.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-4:2005,https://www.iso.org/standard/36931.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-4:2005/Amd 1:2010,https://www.iso.org/standard/51959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO/FDIS 23551-4,https://www.iso.org/standard/68290.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-5:2014,https://www.iso.org/standard/60486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-6:2014,https://www.iso.org/standard/60520.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO/DIS 23551-7,https://www.iso.org/standard/64293.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-8:2016,https://www.iso.org/standard/62335.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-8:2016/DAmd 1,https://www.iso.org/standard/71282.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-8:2016/NP Amd 2,https://www.iso.org/standard/73226.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-9:2015,https://www.iso.org/standard/64957.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23551-10:2016,https://www.iso.org/standard/68556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23552-1:2007,https://www.iso.org/standard/41153.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 23552-1:2007/Amd 1:2010,https://www.iso.org/standard/51633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 161,https://www.iso.org/contents/data/committee/05/34/53436/x/catalogue/ -ISO 1129:1980,https://www.iso.org/standard/5662.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 6758:1980,https://www.iso.org/standard/13252.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 6759:1980,https://www.iso.org/standard/13253.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 12211:2012,https://www.iso.org/standard/51280.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 12212:2012,https://www.iso.org/standard/51281.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 13706:2011,https://www.iso.org/standard/45638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15547-1:2005,https://www.iso.org/standard/37293.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15547-2:2005,https://www.iso.org/standard/37294.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 16528-1:2007,https://www.iso.org/standard/41079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 11,https://www.iso.org/contents/data/committee/04/61/46156/x/catalogue/ -ISO 16528-2:2007,https://www.iso.org/standard/41080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 11,https://www.iso.org/contents/data/committee/04/61/46156/x/catalogue/ -ISO 16812:2007,https://www.iso.org/standard/38661.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/CD 16812,https://www.iso.org/standard/56042.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/DIS 16812,https://www.iso.org/standard/74317.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 18665:2015,https://www.iso.org/standard/63152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 18762:2016,https://www.iso.org/standard/63310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO/DIS 19882,https://www.iso.org/standard/64655.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 5149-1:2014,https://www.iso.org/standard/54979.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5149-1:2014/Amd 1:2015,https://www.iso.org/standard/68362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5149-2:2014,https://www.iso.org/standard/54980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5149-3:2014,https://www.iso.org/standard/54981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5149-4:2014,https://www.iso.org/standard/55023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5151:2017,https://www.iso.org/standard/63409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13253:2017,https://www.iso.org/standard/63407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13256-1:1998,https://www.iso.org/standard/3330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13256-2:1998,https://www.iso.org/standard/26945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13261-1:1998,https://www.iso.org/standard/3502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13261-2:1998,https://www.iso.org/standard/27294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 13612-1:2014,https://www.iso.org/standard/54085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 13612-2:2014,https://www.iso.org/standard/57943.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 13971:2012,https://www.iso.org/standard/54362.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 14903:2017,https://www.iso.org/standard/67553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 15042:2017,https://www.iso.org/standard/63408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16345:2014,https://www.iso.org/standard/50172.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-1:2013,https://www.iso.org/standard/56467.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-1:2013/Cor 1:2013,https://www.iso.org/standard/65095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-1:2013/DAmd 1,https://www.iso.org/standard/72399.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-2:2013,https://www.iso.org/standard/56468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-2:2013/Cor 1:2013,https://www.iso.org/standard/65096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16358-3:2013,https://www.iso.org/standard/56469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO/TS 16491:2012,https://www.iso.org/standard/56862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO 16494:2014,https://www.iso.org/standard/56867.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO/FDIS 18326,https://www.iso.org/standard/62182.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 86/SC 6,https://www.iso.org/contents/data/committee/05/03/50376/x/catalogue/ -ISO/CD 21922,https://www.iso.org/standard/72198.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 14084-1:2015,https://www.iso.org/standard/54427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 14084-2:2015,https://www.iso.org/standard/54428.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 18888:2017,https://www.iso.org/standard/63672.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO/DIS 50045,https://www.iso.org/standard/67849.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO/FDIS 19443,https://www.iso.org/standard/64908.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 7753:1987,https://www.iso.org/standard/14606.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 10270:1995,https://www.iso.org/standard/18310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 10270:1995/Cor 1:1997,https://www.iso.org/standard/29083.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 10645:1992,https://www.iso.org/standard/18740.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 10979:1994,https://www.iso.org/standard/18949.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO/DIS 10979,https://www.iso.org/standard/75124.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 18075,https://www.iso.org/standard/61293.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO/FDIS 18077,https://www.iso.org/standard/61295.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 18229,https://www.iso.org/standard/61829.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 19226:2017,https://www.iso.org/standard/64051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO/DIS 20890-1,https://www.iso.org/standard/69374.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO/DIS 20890-2,https://www.iso.org/standard/70710.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO/DIS 20890-3,https://www.iso.org/standard/70711.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO/DIS 20890-4,https://www.iso.org/standard/70712.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO/DIS 20890-5,https://www.iso.org/standard/70713.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO/DIS 20890-6,https://www.iso.org/standard/70714.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 26802:2010,https://www.iso.org/standard/43773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 6527:1982,https://www.iso.org/standard/12913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 7385:1983,https://www.iso.org/standard/14086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 8107:1993,https://www.iso.org/standard/15154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 11599:1997,https://www.iso.org/standard/19534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 14943:2004,https://www.iso.org/standard/38057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 15080:2001,https://www.iso.org/standard/26396.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/NP 15080,https://www.iso.org/standard/74179.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 16117:2013,https://www.iso.org/standard/55700.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/FDIS 16647,https://www.iso.org/standard/67491.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 17873:2004,https://www.iso.org/standard/37257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 18195,https://www.iso.org/standard/61733.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 85/SC 6,https://www.iso.org/contents/data/committee/05/03/50354/x/catalogue/ -ISO 21243:2008,https://www.iso.org/standard/40088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 21613:2015,https://www.iso.org/standard/59551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 21614:2008,https://www.iso.org/standard/40349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 1709,https://www.iso.org/standard/68617.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 1709:1995,https://www.iso.org/standard/2514.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 7097-1:2004,https://www.iso.org/standard/34540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 7097-2:2004,https://www.iso.org/standard/34541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 7195:2005,https://www.iso.org/standard/31251.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/DIS 7195,https://www.iso.org/standard/62049.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 7476:2003,https://www.iso.org/standard/34544.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 8298:2000,https://www.iso.org/standard/28703.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 8299:2005,https://www.iso.org/standard/34543.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/DIS 8299,https://www.iso.org/standard/66668.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 8300:2013,https://www.iso.org/standard/51659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 8425:2013,https://www.iso.org/standard/51660.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9005:2007,https://www.iso.org/standard/37593.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9006:1994,https://www.iso.org/standard/16548.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9161:2004,https://www.iso.org/standard/31742.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/DIS 9161,https://www.iso.org/standard/68616.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9278:2008,https://www.iso.org/standard/41199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9279:1992,https://www.iso.org/standard/16930.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9463:2009,https://www.iso.org/standard/44276.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/CD 9463,https://www.iso.org/standard/69143.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9889:1994,https://www.iso.org/standard/17770.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9891:1994,https://www.iso.org/standard/17772.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9892:1992,https://www.iso.org/standard/17773.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 9894:1996,https://www.iso.org/standard/17775.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 10276:2010,https://www.iso.org/standard/55937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/NP 10276,https://www.iso.org/standard/70592.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 10980:1995,https://www.iso.org/standard/2586.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 10981:2004,https://www.iso.org/standard/34542.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 11311:2011,https://www.iso.org/standard/50381.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 11320:2011,https://www.iso.org/standard/50382.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 11482:1993,https://www.iso.org/standard/19434.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/CD 11482,https://www.iso.org/standard/69384.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 11483:2005,https://www.iso.org/standard/37591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 12183:2016,https://www.iso.org/standard/66168.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 12795:2004,https://www.iso.org/standard/39990.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 12799:2015,https://www.iso.org/standard/56073.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 12800:2017,https://www.iso.org/standard/66464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 12803:1997,https://www.iso.org/standard/2590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 12807:1996,https://www.iso.org/standard/2496.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/FDIS 12807,https://www.iso.org/standard/50162.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 13463:1999,https://www.iso.org/standard/22034.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 13464:1998,https://www.iso.org/standard/22035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/DIS 13464,https://www.iso.org/standard/66663.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 13465:2009,https://www.iso.org/standard/44275.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 15366-1:2014,https://www.iso.org/standard/56505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 15366-2:2014,https://www.iso.org/standard/56506.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 15646:2014,https://www.iso.org/standard/59613.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 15647:2004,https://www.iso.org/standard/28537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 15651:2015,https://www.iso.org/standard/56071.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 16424:2012,https://www.iso.org/standard/56725.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 16793:2005,https://www.iso.org/standard/39217.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/DIS 16793,https://www.iso.org/standard/73165.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 16794:2003,https://www.iso.org/standard/31067.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 16795:2004,https://www.iso.org/standard/31068.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/AWI 16795,https://www.iso.org/standard/71472.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 16796:2004,https://www.iso.org/standard/40243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 16966:2013,https://www.iso.org/standard/58063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 18213-1:2007,https://www.iso.org/standard/42878.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 18213-2:2007,https://www.iso.org/standard/42879.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 18213-3:2009,https://www.iso.org/standard/42931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 18213-4:2008,https://www.iso.org/standard/42880.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 18213-5:2008,https://www.iso.org/standard/42881.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 18213-6:2008,https://www.iso.org/standard/42882.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/DIS 18256-1,https://www.iso.org/standard/71901.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/DIS 18256-2,https://www.iso.org/standard/71902.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/DIS 18315,https://www.iso.org/standard/66134.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 18557:2017,https://www.iso.org/standard/62879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 19017:2015,https://www.iso.org/standard/63746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 21238:2007,https://www.iso.org/standard/40081.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/CD 21391,https://www.iso.org/standard/70851.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 21483:2013,https://www.iso.org/standard/59614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 21484:2017,https://www.iso.org/standard/63950.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 21847-1:2007,https://www.iso.org/standard/40474.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 21847-2:2007,https://www.iso.org/standard/40475.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 21847-3:2007,https://www.iso.org/standard/40476.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 22765:2016,https://www.iso.org/standard/63947.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 22875:2017,https://www.iso.org/standard/69085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO/CD 22946,https://www.iso.org/standard/74226.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 26062:2010,https://www.iso.org/standard/43376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 27467:2009,https://www.iso.org/standard/44172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 27468:2011,https://www.iso.org/standard/44173.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 16797:2004,https://www.iso.org/standard/31073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 5,https://www.iso.org/contents/data/committee/05/03/50328/x/catalogue/ -ISO 10816-5:2000,https://www.iso.org/standard/1589.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 9059:1990,https://www.iso.org/standard/16628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180/SC 1,https://www.iso.org/contents/data/committee/05/40/54024/x/catalogue/ -ISO 9060:1990,https://www.iso.org/standard/16629.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 180/SC 1,https://www.iso.org/contents/data/committee/05/40/54024/x/catalogue/ -ISO/DIS 9060,https://www.iso.org/standard/67464.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 180/SC 1,https://www.iso.org/contents/data/committee/05/40/54024/x/catalogue/ -ISO 9459-1:1993,https://www.iso.org/standard/17186.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 180/SC 4,https://www.iso.org/contents/data/committee/05/40/54032/x/catalogue/ -ISO 9459-2:1995,https://www.iso.org/standard/17187.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 180/SC 4,https://www.iso.org/contents/data/committee/05/40/54032/x/catalogue/ -ISO 9459-4:2013,https://www.iso.org/standard/41695.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 180/SC 4,https://www.iso.org/contents/data/committee/05/40/54032/x/catalogue/ -ISO 9459-5:2007,https://www.iso.org/standard/39820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180/SC 4,https://www.iso.org/contents/data/committee/05/40/54032/x/catalogue/ -ISO 9488:1999,https://www.iso.org/standard/17217.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO/NP 9488,https://www.iso.org/standard/74269.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 9553:1997,https://www.iso.org/standard/17299.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 9806:2017,https://www.iso.org/standard/67978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 9808:1990,https://www.iso.org/standard/17682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 9845-1:1992,https://www.iso.org/standard/17723.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180/SC 1,https://www.iso.org/contents/data/committee/05/40/54024/x/catalogue/ -ISO 9846:1993,https://www.iso.org/standard/17724.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180/SC 1,https://www.iso.org/contents/data/committee/05/40/54024/x/catalogue/ -ISO 9847:1992,https://www.iso.org/standard/17725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180/SC 1,https://www.iso.org/contents/data/committee/05/40/54024/x/catalogue/ -ISO/TR 9901:1990,https://www.iso.org/standard/17784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180/SC 1,https://www.iso.org/contents/data/committee/05/40/54024/x/catalogue/ -ISO/TR 10217:1989,https://www.iso.org/standard/18251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 15387:2005,https://www.iso.org/standard/36464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22975-1:2016,https://www.iso.org/standard/61993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 22975-2:2016,https://www.iso.org/standard/61994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 22975-3:2014,https://www.iso.org/standard/61758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO/CD 22975-5,https://www.iso.org/standard/69393.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 16079-1:2017,https://www.iso.org/standard/55634.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -IEC 61400-4:2012,https://www.iso.org/standard/44298.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60,https://www.iso.org/contents/data/committee/04/92/49212/x/catalogue/ -ISO 14780:2017,https://www.iso.org/standard/66480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16559:2014,https://www.iso.org/standard/57111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16993:2016,https://www.iso.org/standard/70098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16994:2016,https://www.iso.org/standard/70097.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16995:2015,https://www.iso.org/standard/58083.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/TS 16996:2015,https://www.iso.org/standard/58084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-1:2014,https://www.iso.org/standard/59456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-2:2014,https://www.iso.org/standard/59457.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-3:2014,https://www.iso.org/standard/59458.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-4:2014,https://www.iso.org/standard/59459.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-5:2014,https://www.iso.org/standard/59460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-6:2014,https://www.iso.org/standard/59461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-7:2014,https://www.iso.org/standard/59462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/TS 17225-8:2016,https://www.iso.org/standard/71915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17827-1:2016,https://www.iso.org/standard/60685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17827-2:2016,https://www.iso.org/standard/60688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17828:2015,https://www.iso.org/standard/60687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17829:2015,https://www.iso.org/standard/60693.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17830:2016,https://www.iso.org/standard/60694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17831-1:2015,https://www.iso.org/standard/60695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17831-2:2015,https://www.iso.org/standard/60696.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18122:2015,https://www.iso.org/standard/61515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18123:2015,https://www.iso.org/standard/61516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18125:2017,https://www.iso.org/standard/61517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18134-1:2015,https://www.iso.org/standard/61538.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18134-2:2017,https://www.iso.org/standard/71536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18134-3:2015,https://www.iso.org/standard/61637.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18135:2017,https://www.iso.org/standard/66481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18846:2016,https://www.iso.org/standard/63559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18847:2016,https://www.iso.org/standard/63560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 19743:2017,https://www.iso.org/standard/66203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/DIS 20023,https://www.iso.org/standard/66852.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/CD 20024,https://www.iso.org/standard/71284.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/CD 20049,https://www.iso.org/standard/66904.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 20675,https://www.iso.org/standard/68794.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 255,https://www.iso.org/contents/data/committee/61/70/617083/x/catalogue/ -ISO/CD 21404,https://www.iso.org/standard/70868.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/CD 21945,https://www.iso.org/standard/72270.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/NP 916,https://www.iso.org/standard/72208.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 86/SC 4,https://www.iso.org/contents/data/committee/05/03/50368/x/catalogue/ -ISO/R 916:1968,https://www.iso.org/standard/5322.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 86,https://www.iso.org/contents/data/committee/05/03/50356/x/catalogue/ -ISO 5149-1:2014,https://www.iso.org/standard/54979.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5149-1:2014/Amd 1:2015,https://www.iso.org/standard/68362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5149-2:2014,https://www.iso.org/standard/54980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5149-3:2014,https://www.iso.org/standard/54981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 5149-4:2014,https://www.iso.org/standard/55023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 11650:1999,https://www.iso.org/standard/19579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 86/SC 8,https://www.iso.org/contents/data/committee/05/03/50388/x/catalogue/ -ISO 13971:2012,https://www.iso.org/standard/54362.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 14903:2017,https://www.iso.org/standard/67553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO/CD 21922,https://www.iso.org/standard/72198.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 86/SC 1,https://www.iso.org/contents/data/committee/05/03/50362/x/catalogue/ -ISO 7345:1987,https://www.iso.org/standard/14024.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO/PRF 7345,https://www.iso.org/standard/65000.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 8143:2010,https://www.iso.org/standard/44974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 8301:1991,https://www.iso.org/standard/15421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 8301:1991/Amd 1:2010,https://www.iso.org/standard/52266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 8302:1991,https://www.iso.org/standard/15422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 8497:1994,https://www.iso.org/standard/15707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 8990:1994,https://www.iso.org/standard/16519.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 9229:2007,https://www.iso.org/standard/41496.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO/NP 9229,https://www.iso.org/standard/73303.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 9251:1987,https://www.iso.org/standard/16901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 9288:1989,https://www.iso.org/standard/16943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 9346:2007,https://www.iso.org/standard/40550.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 10051:1996,https://www.iso.org/standard/18016.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 16957:2016,https://www.iso.org/standard/63332.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 23993:2008,https://www.iso.org/standard/37042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 1680:2013,https://www.iso.org/standard/63318.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 8528-3:2005,https://www.iso.org/standard/39045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 20958:2013,https://www.iso.org/standard/39839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 7919-5:2005,https://www.iso.org/standard/38390.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 8528-1,https://www.iso.org/standard/68539.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-1:2005,https://www.iso.org/standard/30567.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-2:2005,https://www.iso.org/standard/39044.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/FDIS 8528-2,https://www.iso.org/standard/72526.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-3:2005,https://www.iso.org/standard/39045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-4:2005,https://www.iso.org/standard/39046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-5:2013,https://www.iso.org/standard/56795.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/DIS 8528-5,https://www.iso.org/standard/71009.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-6:2005,https://www.iso.org/standard/39048.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 8528-6,https://www.iso.org/standard/71010.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-7:2017,https://www.iso.org/standard/63994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-8:2016,https://www.iso.org/standard/63631.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-9:2017,https://www.iso.org/standard/63995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-10:1998,https://www.iso.org/standard/15766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO/NP 8528-10,https://www.iso.org/standard/74983.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-12:1997,https://www.iso.org/standard/20681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 8528-13:2016,https://www.iso.org/standard/63595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 70,https://www.iso.org/contents/data/committee/04/98/49826/x/catalogue/ -ISO 20816-2:2017,https://www.iso.org/standard/70047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/FDIS 20816-5,https://www.iso.org/standard/67919.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 22266-1:2009,https://www.iso.org/standard/40841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/FDIS 22266-1,https://www.iso.org/standard/68124.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 19859:2016,https://www.iso.org/standard/55491.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 29461-1:2013,https://www.iso.org/standard/51291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 5826:2014,https://www.iso.org/standard/55983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 10656:2016,https://www.iso.org/standard/61408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -ISO 18095,https://www.iso.org/standard/61423.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 22829:2017,https://www.iso.org/standard/64831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 44/SC 6,https://www.iso.org/contents/data/committee/04/86/48622/x/catalogue/ -IEC 60086-3:2016,https://www.iso.org/standard/71856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO 10807:1994,https://www.iso.org/standard/1385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 11,https://www.iso.org/contents/data/committee/04/56/45660/x/catalogue/ -ISO/IEC 80079-34:2011,https://www.iso.org/standard/51367.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC DIS 80079-34,https://www.iso.org/standard/70293.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 80079-36:2016,https://www.iso.org/standard/56550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 80079-37:2016,https://www.iso.org/standard/56553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC 80079-38:2016,https://www.iso.org/standard/57471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC 80079-20-1:2017,https://www.iso.org/standard/69556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC 80079-20-2:2016,https://www.iso.org/standard/66564.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC 80079-20-2:2016/Cor 1:2017,https://www.iso.org/standard/73486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 17901-1:2015,https://www.iso.org/standard/60946.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 17901-2:2015,https://www.iso.org/standard/60947.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/TS 21144:2016,https://www.iso.org/standard/69978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 10110-17:2004,https://www.iso.org/standard/30924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 11145:2016,https://www.iso.org/standard/65247.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 11145,https://www.iso.org/standard/72944.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11146-1:2005,https://www.iso.org/standard/33625.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11146-2:2005,https://www.iso.org/standard/33626.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/TR 11146-3:2004,https://www.iso.org/standard/33627.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/TR 11146-3:2004/Cor 1:2005,https://www.iso.org/standard/41919.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11151-1:2015,https://www.iso.org/standard/61833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11151-2:2015,https://www.iso.org/standard/61834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11252:2013,https://www.iso.org/standard/52078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11551:2003,https://www.iso.org/standard/32097.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/WD 11551,https://www.iso.org/standard/69228.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11553-1:2005,https://www.iso.org/standard/30654.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 11553-1,https://www.iso.org/standard/67658.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11553-2:2007,https://www.iso.org/standard/37590.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 11553-2,https://www.iso.org/standard/67409.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11553-3:2013,https://www.iso.org/standard/45011.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11554:2017,https://www.iso.org/standard/69232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11670:2003,https://www.iso.org/standard/31690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11670:2003/Cor 1:2004,https://www.iso.org/standard/40510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11807-1:2001,https://www.iso.org/standard/20617.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 11807-1,https://www.iso.org/standard/72948.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11807-2:2001,https://www.iso.org/standard/27398.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 11807-2,https://www.iso.org/standard/72949.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11810:2015,https://www.iso.org/standard/65248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 11990,https://www.iso.org/standard/69226.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11990-1:2011,https://www.iso.org/standard/45685.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 11990-2:2010,https://www.iso.org/standard/45686.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 12005:2003,https://www.iso.org/standard/31277.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 13142:2015,https://www.iso.org/standard/53362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 13694:2015,https://www.iso.org/standard/61832.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 13694,https://www.iso.org/standard/72945.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 13695:2004,https://www.iso.org/standard/35640.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 13696:2002,https://www.iso.org/standard/22670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 13697:2006,https://www.iso.org/standard/38483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 14880-1:2016,https://www.iso.org/standard/64144.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/DIS 14880-1,https://www.iso.org/standard/72947.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 14880-2:2006,https://www.iso.org/standard/34200.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 14880-3:2006,https://www.iso.org/standard/36641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 14880-4:2006,https://www.iso.org/standard/36642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/TR 14880-5:2010,https://www.iso.org/standard/45523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 14881:2001,https://www.iso.org/standard/25825.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 14881,https://www.iso.org/standard/72974.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 15367-1:2003,https://www.iso.org/standard/27396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 15367-2:2005,https://www.iso.org/standard/33629.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 15902:2004,https://www.iso.org/standard/28652.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 15902:2004/Cor 1:2005,https://www.iso.org/standard/43183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 17526:2003,https://www.iso.org/standard/35649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/FDIS 17915,https://www.iso.org/standard/72946.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/TS 17915:2013,https://www.iso.org/standard/60988.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 19986,https://www.iso.org/standard/66792.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/TR 20811:2017,https://www.iso.org/standard/69227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 21254-1:2011,https://www.iso.org/standard/43001.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 21254-1,https://www.iso.org/standard/70725.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 21254-2:2011,https://www.iso.org/standard/43002.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 21254-2,https://www.iso.org/standard/70724.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 21254-3:2011,https://www.iso.org/standard/43003.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/AWI 21254-3,https://www.iso.org/standard/70723.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/TR 21254-4:2011,https://www.iso.org/standard/43004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/TR 22588:2005,https://www.iso.org/standard/35053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 24013:2006,https://www.iso.org/standard/37045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO/IEC 11571:1998,https://www.iso.org/standard/29520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11572:2000,https://www.iso.org/standard/31613.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11573:1994,https://www.iso.org/standard/20891.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11574:2000,https://www.iso.org/standard/31612.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11579-1:1994,https://www.iso.org/standard/20893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11579-2:1999,https://www.iso.org/standard/29670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11579-3:1999,https://www.iso.org/standard/31128.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11582:2002,https://www.iso.org/standard/36049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11584:1996,https://www.iso.org/standard/23329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13241:1997,https://www.iso.org/standard/21476.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13242:1997,https://www.iso.org/standard/21477.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13246:1997,https://www.iso.org/standard/21481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13247:1997,https://www.iso.org/standard/21482.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13863:1998,https://www.iso.org/standard/29666.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13864:1995,https://www.iso.org/standard/23103.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13865:2003,https://www.iso.org/standard/36843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13866:1995,https://www.iso.org/standard/23105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13868:2003,https://www.iso.org/standard/36839.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13869:2003,https://www.iso.org/standard/36844.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13870:2003,https://www.iso.org/standard/36845.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13871:1995,https://www.iso.org/standard/23110.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13872:2003,https://www.iso.org/standard/36840.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13873:2003,https://www.iso.org/standard/36841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13874:2003,https://www.iso.org/standard/36842.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14136:1995,https://www.iso.org/standard/23656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14474:1998,https://www.iso.org/standard/23547.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 14475:2001,https://www.iso.org/standard/34118.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14841:1996,https://www.iso.org/standard/25738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14842:1996,https://www.iso.org/standard/25739.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14843:2003,https://www.iso.org/standard/36846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14844:2003,https://www.iso.org/standard/36847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14845:1996,https://www.iso.org/standard/25743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14846:2003,https://www.iso.org/standard/36848.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15049:1997,https://www.iso.org/standard/26329.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15050:2003,https://www.iso.org/standard/36849.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15051:2003,https://www.iso.org/standard/36850.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15052:2003,https://www.iso.org/standard/36851.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15053:2003,https://www.iso.org/standard/36852.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15054:2003,https://www.iso.org/standard/36853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15055:1997,https://www.iso.org/standard/26335.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15056:1997,https://www.iso.org/standard/26336.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 15410:1998,https://www.iso.org/standard/27653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15428:1999,https://www.iso.org/standard/27671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15429:2003,https://www.iso.org/standard/36861.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15430:1999,https://www.iso.org/standard/27673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15431:2003,https://www.iso.org/standard/36862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15432:1999,https://www.iso.org/standard/27675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15433:2003,https://www.iso.org/standard/36863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15505:2003,https://www.iso.org/standard/36960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15506:2003,https://www.iso.org/standard/36854.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15507:1997,https://www.iso.org/standard/27976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15771:1998,https://www.iso.org/standard/28930.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15772:2003,https://www.iso.org/standard/36855.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15773:1998,https://www.iso.org/standard/28932.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15899:1998,https://www.iso.org/standard/29454.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15991:2003,https://www.iso.org/standard/36856.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15992:2003,https://www.iso.org/standard/36857.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17309:2000,https://www.iso.org/standard/32966.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17310:2000,https://www.iso.org/standard/32970.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17311:2000,https://www.iso.org/standard/32971.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17343:2007,https://www.iso.org/standard/45586.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17875:2000,https://www.iso.org/standard/31600.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17876:2003,https://www.iso.org/standard/36858.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17877:2000,https://www.iso.org/standard/31602.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17878:2003,https://www.iso.org/standard/36859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 18017:2001,https://www.iso.org/standard/30802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 19058:2001,https://www.iso.org/standard/33736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 19459:2001,https://www.iso.org/standard/33847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 19460:2003,https://www.iso.org/standard/36860.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 20113:2004,https://www.iso.org/standard/39223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 20114:2004,https://www.iso.org/standard/39224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 20115:2004,https://www.iso.org/standard/39225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 20116:2004,https://www.iso.org/standard/39226.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 20117:2004,https://www.iso.org/standard/39227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 20161:2001,https://www.iso.org/standard/35305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21407:2001,https://www.iso.org/standard/34499.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21408:2003,https://www.iso.org/standard/36864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21409:2001,https://www.iso.org/standard/34502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21410:2001,https://www.iso.org/standard/34503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21411:2001,https://www.iso.org/standard/34504.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21888:2001,https://www.iso.org/standard/34764.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21889:2001,https://www.iso.org/standard/34765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 21890:2001,https://www.iso.org/standard/34767.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21989:2002,https://www.iso.org/standard/36050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21990:2002,https://www.iso.org/standard/36051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21991:2002,https://www.iso.org/standard/36052.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21992:2003,https://www.iso.org/standard/37519.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 22535:2009,https://www.iso.org/standard/52060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 23290:2004,https://www.iso.org/standard/40165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 23915:2005,https://www.iso.org/standard/41926.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 23916:2005,https://www.iso.org/standard/41927.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17568:2013,https://www.iso.org/standard/60037.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15404:2000,https://www.iso.org/standard/33237.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 7176-21:2009,https://www.iso.org/standard/51048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 13766:2006,https://www.iso.org/standard/38480.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 13766-1,https://www.iso.org/standard/67347.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 13766-2,https://www.iso.org/standard/67403.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 14117:2012,https://www.iso.org/standard/54472.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/CD 14117,https://www.iso.org/standard/67698.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO/CD 14117,https://www.iso.org/standard/73915.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 150/SC 6,https://www.iso.org/contents/data/committee/05/31/53122/x/catalogue/ -ISO 14302:2002,https://www.iso.org/standard/24176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14982:1998,https://www.iso.org/standard/26161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO/TR 16764:2003,https://www.iso.org/standard/30441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TS 21609:2014,https://www.iso.org/standard/62793.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11451-1:2015,https://www.iso.org/standard/62477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11451-2:2015,https://www.iso.org/standard/59608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11451-3:2015,https://www.iso.org/standard/59604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11451-4:2013,https://www.iso.org/standard/60609.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-1:2015,https://www.iso.org/standard/59609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-2:2004,https://www.iso.org/standard/36570.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 11452-2,https://www.iso.org/standard/68557.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-3:2016,https://www.iso.org/standard/66829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-4:2011,https://www.iso.org/standard/54500.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/AWI 11452-4,https://www.iso.org/standard/74108.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-5:2002,https://www.iso.org/standard/24571.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-7:2003,https://www.iso.org/standard/38302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-7:2003/Amd 1:2013,https://www.iso.org/standard/60825.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-8:2015,https://www.iso.org/standard/59605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-9:2012,https://www.iso.org/standard/51670.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-10:2009,https://www.iso.org/standard/42944.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-11:2010,https://www.iso.org/standard/42945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -IWA 27:2017,https://www.iso.org/standard/72643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC 2382:2015,https://www.iso.org/standard/63598.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 2382-36:2013,https://www.iso.org/standard/63996.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC DIS 2382-36,https://www.iso.org/standard/66692.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 2382-37:2017,https://www.iso.org/standard/66693.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC NP 2382-37,https://www.iso.org/standard/73514.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO 2784:1974,https://www.iso.org/standard/7769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 7779:2010,https://www.iso.org/standard/54363.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 7779,https://www.iso.org/standard/69857.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9295:2015,https://www.iso.org/standard/32302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9296:2017,https://www.iso.org/standard/32303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/IEC TR 12382:1992,https://www.iso.org/standard/21071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 13233:1995,https://www.iso.org/standard/21468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13236:1998,https://www.iso.org/standard/27993.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13251:2004,https://www.iso.org/standard/21486.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC DIS 13251,https://www.iso.org/standard/74344.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC DIS 13251,https://www.iso.org/standard/66802.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 17788:2014,https://www.iso.org/standard/60544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 17963:2013,https://www.iso.org/standard/61138.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 19099:2014,https://www.iso.org/standard/63962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 19395:2015,https://www.iso.org/standard/64801.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 19510:2013,https://www.iso.org/standard/62652.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 19941:2017,https://www.iso.org/standard/66639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 19988:2017,https://www.iso.org/standard/72927.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20000-1:2011,https://www.iso.org/standard/51986.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC DIS 20000-1,https://www.iso.org/standard/70636.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 20000-2:2012,https://www.iso.org/standard/51987.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC NP 20000-2,https://www.iso.org/standard/72120.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 20000-3:2012,https://www.iso.org/standard/60031.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC NP 20000-3,https://www.iso.org/standard/72121.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-4:2010,https://www.iso.org/standard/50624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-5:2013,https://www.iso.org/standard/60329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 20000-6:2017,https://www.iso.org/standard/64681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-9:2015,https://www.iso.org/standard/65671.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC DIS 20000-10,https://www.iso.org/standard/74316.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-10:2015,https://www.iso.org/standard/68673.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-11:2015,https://www.iso.org/standard/62151.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 20000-12:2016,https://www.iso.org/standard/69203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 20005:2013,https://www.iso.org/standard/50952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC DIS 20546,https://www.iso.org/standard/68305.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 20547-2:2018,https://www.iso.org/standard/71276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC CD 20547-3,https://www.iso.org/standard/71277.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 20547-5,https://www.iso.org/standard/72826.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 20913:2016,https://www.iso.org/standard/69444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC CD 20924,https://www.iso.org/standard/69470.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC TR 21565,https://www.iso.org/standard/71101.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/CD 21836,https://www.iso.org/standard/71926.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/PDTR 21897,https://www.iso.org/standard/72110.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PRF TS 22237-1,https://www.iso.org/standard/72925.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PRF TS 22237-2,https://www.iso.org/standard/73009.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PRF TS 22237-3,https://www.iso.org/standard/73010.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PRF TS 22237-4,https://www.iso.org/standard/73011.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PRF TS 22237-5,https://www.iso.org/standard/73012.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PRF TS 22237-6,https://www.iso.org/standard/73013.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PRF TS 22237-7,https://www.iso.org/standard/73014.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC TR 22417:2017,https://www.iso.org/standard/73148.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC TR 22446:2017,https://www.iso.org/standard/73232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC PDTR 22564,https://www.iso.org/standard/73450.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC PDTR 23050,https://www.iso.org/standard/74405.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PDTR 23111,https://www.iso.org/standard/74587.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC PDTR 23112,https://www.iso.org/standard/74588.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 24714-1:2008,https://www.iso.org/standard/38824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 27013:2015,https://www.iso.org/standard/64138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29197:2015,https://www.iso.org/standard/45276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC CD 30071-1,https://www.iso.org/standard/70913.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 30105-1:2016,https://www.iso.org/standard/62705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 30105-2:2016,https://www.iso.org/standard/62706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 30105-3:2016,https://www.iso.org/standard/62707.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 30105-4:2016,https://www.iso.org/standard/62708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 30105-5:2016,https://www.iso.org/standard/62709.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC PRF 30115,https://www.iso.org/standard/53235.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 30132-1:2016,https://www.iso.org/standard/71027.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC PDTR 30133,https://www.iso.org/standard/53253.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 30134-1:2016,https://www.iso.org/standard/63450.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 30134-1:2016/PRF Amd 1,https://www.iso.org/standard/72277.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 30134-2:2016,https://www.iso.org/standard/63451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 30134-2:2016/PRF Amd 1,https://www.iso.org/standard/72702.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 30134-3:2016,https://www.iso.org/standard/66127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 30134-3:2016/PRF Amd 1,https://www.iso.org/standard/72703.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 30134-4:2017,https://www.iso.org/standard/66191.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC 30134-5:2017,https://www.iso.org/standard/66934.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC CD 30134-6,https://www.iso.org/standard/71717.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC CD 30141,https://www.iso.org/standard/65695.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 33071:2016,https://www.iso.org/standard/55162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 38500:2015,https://www.iso.org/standard/62816.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TS 38501:2015,https://www.iso.org/standard/45263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 38502:2017,https://www.iso.org/standard/74358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 38504:2016,https://www.iso.org/standard/56638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 38505-1:2017,https://www.iso.org/standard/56639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC PRF TR 38505-2,https://www.iso.org/standard/70911.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC TR 90006:2013,https://www.iso.org/standard/52377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -IWA 17:2014,https://www.iso.org/standard/67508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC 7064:2003,https://www.iso.org/standard/31531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9796-2:2010,https://www.iso.org/standard/54788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9796-3:2006,https://www.iso.org/standard/42228.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9797-1:2011,https://www.iso.org/standard/50375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9797-2:2011,https://www.iso.org/standard/51618.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 9797-2,https://www.iso.org/standard/75296.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9797-3:2011,https://www.iso.org/standard/51619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-1:2010,https://www.iso.org/standard/53634.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-2:2008,https://www.iso.org/standard/50522.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-2:2008/Cor 3:2013,https://www.iso.org/standard/62399.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 9798-2,https://www.iso.org/standard/67114.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-3:1998,https://www.iso.org/standard/29062.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-3:1998/Amd 1:2010,https://www.iso.org/standard/51579.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-3:1998/Cor 1:2009,https://www.iso.org/standard/53470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-3:1998/Cor 2:2012,https://www.iso.org/standard/60366.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 9798-3,https://www.iso.org/standard/67115.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-4:1999,https://www.iso.org/standard/31488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-4:1999/Cor 1:2009,https://www.iso.org/standard/53471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-4:1999/Cor 2:2012,https://www.iso.org/standard/61191.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-5:2009,https://www.iso.org/standard/50456.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 9798-5,https://www.iso.org/standard/71291.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 9798-6:2010,https://www.iso.org/standard/54529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10116:2017,https://www.iso.org/standard/64575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-1:2016,https://www.iso.org/standard/64213.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-2:2010,https://www.iso.org/standard/44737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-2:2010/Cor 1:2011,https://www.iso.org/standard/59994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-3:2004,https://www.iso.org/standard/39876.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-3:2004/Amd 1:2006,https://www.iso.org/standard/43181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-3:2004/Cor 1:2011,https://www.iso.org/standard/60475.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC FDIS 10118-3,https://www.iso.org/standard/67116.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-4:1998,https://www.iso.org/standard/25429.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-4:1998/Amd 1:2014,https://www.iso.org/standard/62543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 10118-4:1998/Cor 1:2014,https://www.iso.org/standard/65665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-1:2010,https://www.iso.org/standard/53456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-2:2008,https://www.iso.org/standard/46370.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-2:2008/Cor 1:2009,https://www.iso.org/standard/53473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 11770-2,https://www.iso.org/standard/73207.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-3:2015,https://www.iso.org/standard/60237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-3:2015/Amd 1:2017,https://www.iso.org/standard/71113.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-3:2015/Cor 1:2016,https://www.iso.org/standard/71165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-3:2015/NP Amd 2,https://www.iso.org/standard/71517.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-4:2017,https://www.iso.org/standard/67933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-4:2017/NP Amd 1,https://www.iso.org/standard/73902.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-5:2011,https://www.iso.org/standard/54527.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 11770-5,https://www.iso.org/standard/75295.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11770-6:2016,https://www.iso.org/standard/65275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 11889-1:2009,https://www.iso.org/standard/50970.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11889-1:2015,https://www.iso.org/standard/66510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11889-2:2009,https://www.iso.org/standard/50971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11889-2:2015,https://www.iso.org/standard/66511.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11889-3:2009,https://www.iso.org/standard/50972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11889-3:2015,https://www.iso.org/standard/66512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11889-4:2009,https://www.iso.org/standard/50973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11889-4:2015,https://www.iso.org/standard/66513.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13888-1:2009,https://www.iso.org/standard/50432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 13888-2:2010,https://www.iso.org/standard/44736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 13888-2:2010/Cor 1:2012,https://www.iso.org/standard/61263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 13888-3:2009,https://www.iso.org/standard/44735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 14516:2002,https://www.iso.org/standard/31482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 14888-1:2008,https://www.iso.org/standard/44226.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 14888-2:2008,https://www.iso.org/standard/44227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 14888-2:2008/Cor 1:2015,https://www.iso.org/standard/68231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 14888-3:2016,https://www.iso.org/standard/64267.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 14888-3:2016/DAmd 1,https://www.iso.org/standard/70631.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 15408-1:2009,https://www.iso.org/standard/50341.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC AWI 15408-1,https://www.iso.org/standard/72891.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 15408-2:2008,https://www.iso.org/standard/46414.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC AWI 15408-2,https://www.iso.org/standard/72892.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 15408-3:2008,https://www.iso.org/standard/46413.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC AWI 15408-3,https://www.iso.org/standard/72906.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 15443-1:2012,https://www.iso.org/standard/59138.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 15443-2:2012,https://www.iso.org/standard/59140.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 15446:2017,https://www.iso.org/standard/68904.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 15816:2002,https://www.iso.org/standard/29139.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 15945:2002,https://www.iso.org/standard/29578.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 15946-1:2016,https://www.iso.org/standard/65480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 15946-5:2017,https://www.iso.org/standard/69726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 17825:2016,https://www.iso.org/standard/60612.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 17922:2017,https://www.iso.org/standard/61023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18014-1:2008,https://www.iso.org/standard/50678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18014-2:2009,https://www.iso.org/standard/50482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18014-3:2009,https://www.iso.org/standard/50457.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18014-4:2015,https://www.iso.org/standard/59934.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18031:2011,https://www.iso.org/standard/54945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18031:2011/Amd 1:2017,https://www.iso.org/standard/63755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18031:2011/Cor 1:2014,https://www.iso.org/standard/66558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18032:2005,https://www.iso.org/standard/30817.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 18032,https://www.iso.org/standard/72009.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18033-1:2015,https://www.iso.org/standard/54530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18033-2:2006,https://www.iso.org/standard/37971.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18033-2:2006/Amd 1:2017,https://www.iso.org/standard/71114.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18033-3:2010,https://www.iso.org/standard/54531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18033-3:2010/DAmd 1,https://www.iso.org/standard/73205.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18033-3:2010/PDAM 2,https://www.iso.org/standard/73903.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18033-4:2011,https://www.iso.org/standard/54532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18033-5:2015,https://www.iso.org/standard/59948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 18033-6,https://www.iso.org/standard/67740.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18045:2008,https://www.iso.org/standard/46412.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC AWI 18045,https://www.iso.org/standard/72889.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18180:2013,https://www.iso.org/standard/61713.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 18367:2016,https://www.iso.org/standard/62286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18370-1:2016,https://www.iso.org/standard/62288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 18370-2:2016,https://www.iso.org/standard/62544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TS 19249:2017,https://www.iso.org/standard/64140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 19592-1:2016,https://www.iso.org/standard/65422.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 19592-2:2017,https://www.iso.org/standard/65425.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC PDTS 19608,https://www.iso.org/standard/65459.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 19772:2009,https://www.iso.org/standard/46345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 19772:2009/Cor 1:2014,https://www.iso.org/standard/65421.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 19790:2012,https://www.iso.org/standard/52906.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 19791:2010,https://www.iso.org/standard/52905.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 19792:2009,https://www.iso.org/standard/51521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 19823-1,https://www.iso.org/standard/66272.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 19823-10:2017,https://www.iso.org/standard/68120.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC AWI 19823-10,https://www.iso.org/standard/74364.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC PRF 19823-13,https://www.iso.org/standard/68123.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 19823-19,https://www.iso.org/standard/72665.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC FDIS 19896-1,https://www.iso.org/standard/71120.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 19896-2,https://www.iso.org/standard/71121.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 19896-3,https://www.iso.org/standard/71122.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 20004:2015,https://www.iso.org/standard/68837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 20008-1:2013,https://www.iso.org/standard/57018.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 20008-2:2013,https://www.iso.org/standard/56916.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 20008-2,https://www.iso.org/standard/75304.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 20009-1:2013,https://www.iso.org/standard/57079.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 20009-2:2013,https://www.iso.org/standard/56913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 20009-3,https://www.iso.org/standard/72401.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 20009-4:2017,https://www.iso.org/standard/64288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 20085-1,https://www.iso.org/standard/70081.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 20085-2,https://www.iso.org/standard/70082.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 20243:2015,https://www.iso.org/standard/67394.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20243-1,https://www.iso.org/standard/74399.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20243-2:2018,https://www.iso.org/standard/74400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC PDTS 20540,https://www.iso.org/standard/68294.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 20543,https://www.iso.org/standard/68296.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 20648:2016,https://www.iso.org/standard/68622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 20889,https://www.iso.org/standard/69373.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 21827:2008,https://www.iso.org/standard/44716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 21878,https://www.iso.org/standard/72029.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 21964-1,https://www.iso.org/standard/72204.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 21964-2,https://www.iso.org/standard/72200.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 21964-3,https://www.iso.org/standard/72201.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 22076,https://www.iso.org/standard/72506.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 24745:2011,https://www.iso.org/standard/52946.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 24745,https://www.iso.org/standard/75302.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 24759:2017,https://www.iso.org/standard/72515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 24760-1:2011,https://www.iso.org/standard/57914.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 24760-1:2011/DAmd 1.2,https://www.iso.org/standard/71518.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 24760-2:2015,https://www.iso.org/standard/57915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 24760-3:2016,https://www.iso.org/standard/57916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 24761:2009,https://www.iso.org/standard/41531.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 24761:2009/Cor 1:2013,https://www.iso.org/standard/62404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 24761,https://www.iso.org/standard/71163.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27000,https://www.iso.org/standard/73906.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27000:2016,https://www.iso.org/standard/66435.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27001:2013,https://www.iso.org/standard/54534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27001:2013/Cor 1:2014,https://www.iso.org/standard/66805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27001:2013/Cor 2:2015,https://www.iso.org/standard/69378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27002:2013,https://www.iso.org/standard/54533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27002:2013/Cor 1:2014,https://www.iso.org/standard/66806.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27002:2013/Cor 2:2015,https://www.iso.org/standard/69379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27003:2017,https://www.iso.org/standard/63417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27004:2016,https://www.iso.org/standard/64120.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27005:2011,https://www.iso.org/standard/56742.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC FDIS 27005,https://www.iso.org/standard/75281.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27006:2015,https://www.iso.org/standard/62313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27007:2017,https://www.iso.org/standard/67398.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC PDTS 27008,https://www.iso.org/standard/67397.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 27008:2011,https://www.iso.org/standard/45244.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27009:2016,https://www.iso.org/standard/42508.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 27009,https://www.iso.org/standard/73907.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27010:2015,https://www.iso.org/standard/68427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27011:2016,https://www.iso.org/standard/64143.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27013:2015,https://www.iso.org/standard/64138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27014:2013,https://www.iso.org/standard/43754.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 27016:2014,https://www.iso.org/standard/43756.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27017:2015,https://www.iso.org/standard/43757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27018:2014,https://www.iso.org/standard/61498.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27021:2017,https://www.iso.org/standard/61003.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 27023:2015,https://www.iso.org/standard/61005.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27031:2011,https://www.iso.org/standard/44374.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27032:2012,https://www.iso.org/standard/44375.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27033-1:2015,https://www.iso.org/standard/63461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27033-2:2012,https://www.iso.org/standard/51581.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27033-3:2010,https://www.iso.org/standard/51582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27033-4:2014,https://www.iso.org/standard/51583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27033-5:2013,https://www.iso.org/standard/51584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27033-6:2016,https://www.iso.org/standard/51585.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27034-1:2011,https://www.iso.org/standard/44378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27034-1:2011/Cor 1:2014,https://www.iso.org/standard/64014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27034-2:2015,https://www.iso.org/standard/55582.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC FDIS 27034-3,https://www.iso.org/standard/55583.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27034-5:2017,https://www.iso.org/standard/55585.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27034-6:2016,https://www.iso.org/standard/60804.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC FDIS 27034-7,https://www.iso.org/standard/66229.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC PRF TS 27034-5-1,https://www.iso.org/standard/67741.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27035-1:2016,https://www.iso.org/standard/60803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27035-2:2016,https://www.iso.org/standard/62071.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27036-1:2014,https://www.iso.org/standard/59648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27036-2:2014,https://www.iso.org/standard/59680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27036-3:2013,https://www.iso.org/standard/59688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27036-4:2016,https://www.iso.org/standard/59689.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27037:2012,https://www.iso.org/standard/44381.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27038:2014,https://www.iso.org/standard/44382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27039:2015,https://www.iso.org/standard/56889.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27040:2015,https://www.iso.org/standard/44404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27041:2015,https://www.iso.org/standard/44405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27042:2015,https://www.iso.org/standard/44406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27043:2015,https://www.iso.org/standard/44407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27050-1:2016,https://www.iso.org/standard/63081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 27050-2,https://www.iso.org/standard/66230.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 27050-3:2017,https://www.iso.org/standard/66231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 27103,https://www.iso.org/standard/72437.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 27550,https://www.iso.org/standard/72024.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 27552,https://www.iso.org/standard/71670.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC PDTS 29003,https://www.iso.org/standard/62290.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29100:2011,https://www.iso.org/standard/45123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29100:2011/PRF Amd 1,https://www.iso.org/standard/73722.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29101:2013,https://www.iso.org/standard/45124.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 29101,https://www.iso.org/standard/75293.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29115:2013,https://www.iso.org/standard/45138.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29115:2013/DAmd 1,https://www.iso.org/standard/71903.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC NP 29115,https://www.iso.org/standard/73909.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29128:2011,https://www.iso.org/standard/45151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29134:2017,https://www.iso.org/standard/62289.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29146:2016,https://www.iso.org/standard/45169.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29147:2014,https://www.iso.org/standard/45170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC DIS 29147,https://www.iso.org/standard/72311.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TR 29149:2012,https://www.iso.org/standard/45172.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29150:2011,https://www.iso.org/standard/45173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29150:2011/Cor 1:2014,https://www.iso.org/standard/64004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29151:2017,https://www.iso.org/standard/62726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 29184,https://www.iso.org/standard/70331.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29190:2015,https://www.iso.org/standard/45269.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29191:2012,https://www.iso.org/standard/45270.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29192-1:2012,https://www.iso.org/standard/56425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29192-2:2012,https://www.iso.org/standard/56552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29192-2:2012/PDAM 1,https://www.iso.org/standard/71115.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29192-2:2012/PDAM 2,https://www.iso.org/standard/73904.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29192-3:2012,https://www.iso.org/standard/56426.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29192-4:2013,https://www.iso.org/standard/56427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29192-4:2013/Amd 1:2016,https://www.iso.org/standard/64591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 29192-5:2016,https://www.iso.org/standard/67173.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 29192-6,https://www.iso.org/standard/71116.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 29192-7,https://www.iso.org/standard/73905.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC TS 30104:2015,https://www.iso.org/standard/56890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 30111:2013,https://www.iso.org/standard/53231.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC CD 30111,https://www.iso.org/standard/69725.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO 9160:1988,https://www.iso.org/standard/16757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 646:1991,https://www.iso.org/standard/4777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 962:1974,https://www.iso.org/standard/5389.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 1113:1979,https://www.iso.org/standard/5636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 2022:1994,https://www.iso.org/standard/22747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 2022:1994/Cor 1:1999,https://www.iso.org/standard/31104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 2033:1983,https://www.iso.org/standard/6806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 2047:1975,https://www.iso.org/standard/6825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 2375:2003,https://www.iso.org/standard/32184.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 3275:1974,https://www.iso.org/standard/8511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 4873:1991,https://www.iso.org/standard/10859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 5426:1983,https://www.iso.org/standard/11467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 5426-2:1996,https://www.iso.org/standard/11468.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 5427:1984,https://www.iso.org/standard/11469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 5428:1984,https://www.iso.org/standard/11471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 6093:1985,https://www.iso.org/standard/12285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 6429:1992,https://www.iso.org/standard/12782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 6438:1983,https://www.iso.org/standard/12793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 6586:1980,https://www.iso.org/standard/12991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 6630:1986,https://www.iso.org/standard/13047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 6861:1996,https://www.iso.org/standard/13374.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 6862:1996,https://www.iso.org/standard/13375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 6936:1988,https://www.iso.org/standard/13463.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 6937:2001,https://www.iso.org/standard/31393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 7350:1991,https://www.iso.org/standard/14035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-1:1998,https://www.iso.org/standard/28245.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-2:1999,https://www.iso.org/standard/28246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-3:1999,https://www.iso.org/standard/28247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-4:1998,https://www.iso.org/standard/28248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-5:1999,https://www.iso.org/standard/28249.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-6:1999,https://www.iso.org/standard/28250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-7:2003,https://www.iso.org/standard/38580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-8:1999,https://www.iso.org/standard/28252.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-9:1999,https://www.iso.org/standard/28253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-10:1998,https://www.iso.org/standard/28254.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-11:2001,https://www.iso.org/standard/28263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-13:1998,https://www.iso.org/standard/28265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-14:1998,https://www.iso.org/standard/29630.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-15:1999,https://www.iso.org/standard/29505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 8859-16:2001,https://www.iso.org/standard/33428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 8957:1996,https://www.iso.org/standard/16482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 9036:1987,https://www.iso.org/standard/16597.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 10367:1991,https://www.iso.org/standard/18428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 10367:1991/Cor 1:2001,https://www.iso.org/standard/31394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 10538:1991,https://www.iso.org/standard/18608.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 10585:1996,https://www.iso.org/standard/18669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 10586:1996,https://www.iso.org/standard/18670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 10646:2017,https://www.iso.org/standard/69119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 10646:2017/DAmd 1,https://www.iso.org/standard/70766.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 10646:2017/PDAM 2,https://www.iso.org/standard/73773.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 10754:1996,https://www.iso.org/standard/18843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 11822:1996,https://www.iso.org/standard/2302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 14651:2011/Amd 1:2012,https://www.iso.org/standard/60449.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 14651:2011/Amd 2:2015,https://www.iso.org/standard/63431.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 14651:2016,https://www.iso.org/standard/68309.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 14651:2016/Amd 1:2017,https://www.iso.org/standard/70338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC DIS 14651,https://www.iso.org/standard/73772.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 9281-1:1990,https://www.iso.org/standard/16933.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 9281-2:1990,https://www.iso.org/standard/16934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 9282-1:1988,https://www.iso.org/standard/16935.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-1:1994,https://www.iso.org/standard/18902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-1:1994/Cor 1:2005,https://www.iso.org/standard/41504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-2:1995,https://www.iso.org/standard/20689.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-3:1997,https://www.iso.org/standard/25037.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-3:1997/Amd 1:1999,https://www.iso.org/standard/30961.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-4:1999,https://www.iso.org/standard/25431.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-4:1999/Amd 1:2013,https://www.iso.org/standard/59454.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-5:2013,https://www.iso.org/standard/54989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 10918-6:2013,https://www.iso.org/standard/59634.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11544:1993,https://www.iso.org/standard/19498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11544:1993/Cor 1:1995,https://www.iso.org/standard/26051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11544:1993/Cor 2:2001,https://www.iso.org/standard/35326.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14492:2001,https://www.iso.org/standard/22394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14492:2001/Amd 1:2004,https://www.iso.org/standard/36070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14492:2001/Amd 2:2003,https://www.iso.org/standard/36071.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14492:2001/Amd 3:2012,https://www.iso.org/standard/37383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14492:2001/DAmd 4,https://www.iso.org/standard/69662.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14495-1:1999,https://www.iso.org/standard/22397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14495-2:2003,https://www.iso.org/standard/37700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-1:2016,https://www.iso.org/standard/70018.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-2:2004,https://www.iso.org/standard/33160.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-2:2004/Amd 2:2006,https://www.iso.org/standard/39476.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-2:2004/Amd 3:2015,https://www.iso.org/standard/55504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-2:2004/Amd 4:2015,https://www.iso.org/standard/59455.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-2:2004/Cor 3:2005,https://www.iso.org/standard/40827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-2:2004/Cor 4:2007,https://www.iso.org/standard/43745.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 15444-2,https://www.iso.org/standard/66810.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-3:2007,https://www.iso.org/standard/41570.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-3:2007/Amd 1:2010,https://www.iso.org/standard/52879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-4:2004,https://www.iso.org/standard/39079.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-4:2004/Cor 1:2009,https://www.iso.org/standard/52175.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-5:2015,https://www.iso.org/standard/69462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-6:2013,https://www.iso.org/standard/61124.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-8:2007,https://www.iso.org/standard/37382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-8:2007/Amd 1:2008,https://www.iso.org/standard/46592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005,https://www.iso.org/standard/39413.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005/Amd 1:2006,https://www.iso.org/standard/41720.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005/Amd 2:2008,https://www.iso.org/standard/45532.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005/Amd 3:2008,https://www.iso.org/standard/50407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005/Amd 4:2010,https://www.iso.org/standard/50948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005/Amd 5:2014,https://www.iso.org/standard/55505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005/Cor 1:2007,https://www.iso.org/standard/43688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005/Cor 2:2008,https://www.iso.org/standard/51549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-9:2005/Cor 3:2011,https://www.iso.org/standard/57130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-10:2011,https://www.iso.org/standard/61534.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-11:2007,https://www.iso.org/standard/40025.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-11:2007/Amd 1:2013,https://www.iso.org/standard/53334.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-12:2015/CD Cor 1,https://www.iso.org/standard/70447.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-12:2015/PDAM 1,https://www.iso.org/standard/70719.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-13:2008,https://www.iso.org/standard/42271.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15444-14:2013,https://www.iso.org/standard/50410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16485:2000,https://www.iso.org/standard/32228.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-1:2015,https://www.iso.org/standard/62552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-2:2016,https://www.iso.org/standard/66070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-3:2015,https://www.iso.org/standard/66071.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-4:2017,https://www.iso.org/standard/66072.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-5,https://www.iso.org/standard/66073.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-6:2016,https://www.iso.org/standard/67168.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-7:2017,https://www.iso.org/standard/72478.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-8:2016,https://www.iso.org/standard/68663.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 18477-9:2016,https://www.iso.org/standard/68664.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 19566-1:2016,https://www.iso.org/standard/65348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 19566-2:2016,https://www.iso.org/standard/67704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-2:2011,https://www.iso.org/standard/50411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-2:2011/Amd 1:2015,https://www.iso.org/standard/67041.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-2:2011/PDAM 2,https://www.iso.org/standard/71976.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-3:2010,https://www.iso.org/standard/50412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-3:2010/Amd 1:2015,https://www.iso.org/standard/65354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-3:2010/Cor 1:2012,https://www.iso.org/standard/61593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-4:2010,https://www.iso.org/standard/50413.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-5:2011,https://www.iso.org/standard/50414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-6:2012,https://www.iso.org/standard/55074.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 24800-6:2012/PDAM 1,https://www.iso.org/standard/74435.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 29170-1:2017,https://www.iso.org/standard/63637.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29170-2:2015,https://www.iso.org/standard/66094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29170-2:2015/DAmd 1,https://www.iso.org/standard/72037.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29170-2:2015/DAmd 2,https://www.iso.org/standard/72038.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 29199-1:2011,https://www.iso.org/standard/45278.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29199-2:2012,https://www.iso.org/standard/61125.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29199-2:2012/Amd 1:2017,https://www.iso.org/standard/68964.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29199-2:2012/PDAM 2,https://www.iso.org/standard/74436.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29199-3:2010,https://www.iso.org/standard/51610.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29199-4:2010,https://www.iso.org/standard/51611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29199-4:2010/Amd 1:2014,https://www.iso.org/standard/62155.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29199-5:2012,https://www.iso.org/standard/61126.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 29199-5:2012/Amd 1:2015,https://www.iso.org/standard/67167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-1:1993,https://www.iso.org/standard/19180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-1:1993/Cor 1:1996,https://www.iso.org/standard/25369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-1:1993/Cor 2:1999,https://www.iso.org/standard/32094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-2:1993,https://www.iso.org/standard/22411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-2:1993/Cor 1:1996,https://www.iso.org/standard/25370.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-2:1993/Cor 2:1999,https://www.iso.org/standard/32095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-2:1993/Cor 3:2003,https://www.iso.org/standard/38879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-2:1993/Cor 4:2006,https://www.iso.org/standard/43534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-3:1993,https://www.iso.org/standard/22412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-3:1993/Cor 1:1996,https://www.iso.org/standard/25371.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-4:1995,https://www.iso.org/standard/22691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 11172-4:1995/Cor 1:2007,https://www.iso.org/standard/43979.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 11172-5:1998,https://www.iso.org/standard/25029.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 11172-5:1998/Cor 1:2007,https://www.iso.org/standard/46569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13522-1:1997,https://www.iso.org/standard/22153.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13522-3:1997,https://www.iso.org/standard/25030.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13522-4:1996,https://www.iso.org/standard/25411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13522-5:1997,https://www.iso.org/standard/26876.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13522-5:1997/Cor 1:1999,https://www.iso.org/standard/31582.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13522-6:1998,https://www.iso.org/standard/27045.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13522-7:2001,https://www.iso.org/standard/29236.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13522-8:2001,https://www.iso.org/standard/33158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1,https://www.iso.org/standard/74427.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015,https://www.iso.org/standard/67331.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 1:2015,https://www.iso.org/standard/67734.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 1:2015/Cor 1:2016,https://www.iso.org/standard/68646.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 1:2015/Cor 2:2016,https://www.iso.org/standard/70193.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 2:2016,https://www.iso.org/standard/69386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 3:2016,https://www.iso.org/standard/69388.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 3:2016/Cor 1:2017,https://www.iso.org/standard/73583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 4:2016,https://www.iso.org/standard/69387.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 5:2016,https://www.iso.org/standard/69389.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Amd 6:2016,https://www.iso.org/standard/67338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Cor 1:2016,https://www.iso.org/standard/69558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/Cor 2:2017,https://www.iso.org/standard/69663.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/DAmd 10,https://www.iso.org/standard/74419.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/DAmd 11,https://www.iso.org/standard/74420.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/FDAmd 7,https://www.iso.org/standard/70427.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/FDAmd 8,https://www.iso.org/standard/70993.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-1:2015/FDAmd 9,https://www.iso.org/standard/72657.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-2:2013,https://www.iso.org/standard/61152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-3:1998,https://www.iso.org/standard/26797.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004,https://www.iso.org/standard/40092.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004/Amd 1:2005,https://www.iso.org/standard/40093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004/Amd 2:2005,https://www.iso.org/standard/40094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004/Amd 2:2005/Cor 1:2007,https://www.iso.org/standard/45441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004/Amd 2:2005/Cor 2:2009,https://www.iso.org/standard/52337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004/Amd 3:2009,https://www.iso.org/standard/51747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004/Cor 1:2007,https://www.iso.org/standard/43980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004/Cor 2:2011,https://www.iso.org/standard/57540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-4:2004/Cor 3:2012,https://www.iso.org/standard/60387.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 13818-5:2005,https://www.iso.org/standard/39486.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-6:1998,https://www.iso.org/standard/25039.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-6:1998/Amd 1:2000,https://www.iso.org/standard/30959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-6:1998/Amd 1:2000/Cor 1:2002,https://www.iso.org/standard/37390.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-6:1998/Amd 2:2000,https://www.iso.org/standard/33123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-6:1998/Amd 3:2001,https://www.iso.org/standard/34609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-6:1998/Cor 1:1999,https://www.iso.org/standard/33039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-6:1998/Cor 2:2002,https://www.iso.org/standard/37393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-7:2006,https://www.iso.org/standard/43345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-7:2006/Amd 1:2007,https://www.iso.org/standard/45507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-7:2006/Cor 1:2009,https://www.iso.org/standard/52338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-7:2006/Cor 2:2010,https://www.iso.org/standard/56567.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-9:1996,https://www.iso.org/standard/25434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-10:1999,https://www.iso.org/standard/27044.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 13818-11:2004,https://www.iso.org/standard/37680.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-1:2010,https://www.iso.org/standard/55688.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14496-1:2010/Amd 1:2010,https://www.iso.org/standard/55689.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-1:2010/Amd 2:2014,https://www.iso.org/standard/62114.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004,https://www.iso.org/standard/39259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Amd 1:2004,https://www.iso.org/standard/39365.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Amd 2:2005,https://www.iso.org/standard/41483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Amd 3:2007,https://www.iso.org/standard/43658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Amd 3:2007/Cor 1:2008,https://www.iso.org/standard/51918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Amd 4:2008,https://www.iso.org/standard/46285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Amd 5:2009,https://www.iso.org/standard/51748.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Cor 1:2004,https://www.iso.org/standard/40742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Cor 2:2007,https://www.iso.org/standard/43970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Cor 3:2008,https://www.iso.org/standard/50995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Cor 4:2010,https://www.iso.org/standard/55899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-2:2004/Cor 5:2013,https://www.iso.org/standard/63524.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009,https://www.iso.org/standard/53943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Amd 1:2009,https://www.iso.org/standard/53944.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Amd 2:2010,https://www.iso.org/standard/54838.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Amd 3:2012,https://www.iso.org/standard/59635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Amd 3:2012/CD Cor 1,https://www.iso.org/standard/70195.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Amd 4:2013,https://www.iso.org/standard/63022.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Amd 4:2013/Cor 1:2015,https://www.iso.org/standard/67079.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Amd 5:2015,https://www.iso.org/standard/66392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Amd 6:2017,https://www.iso.org/standard/70436.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Cor 1:2009,https://www.iso.org/standard/54996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Cor 2:2011,https://www.iso.org/standard/59237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Cor 3:2012,https://www.iso.org/standard/61574.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Cor 4:2012,https://www.iso.org/standard/62130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Cor 5:2015,https://www.iso.org/standard/67078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Cor 6:2015,https://www.iso.org/standard/68647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/Cor 7:2015,https://www.iso.org/standard/69653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-3:2009/DAmd 7,https://www.iso.org/standard/74421.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004,https://www.iso.org/standard/36084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 10:2005,https://www.iso.org/standard/41491.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 17:2007,https://www.iso.org/standard/44864.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 1:2005,https://www.iso.org/standard/36085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 1:2005/Cor 1:2005,https://www.iso.org/standard/41935.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 1:2005/Cor 2:2008,https://www.iso.org/standard/51232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 23:2008,https://www.iso.org/standard/46293.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 24:2008,https://www.iso.org/standard/46294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 25:2008,https://www.iso.org/standard/46295.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 26:2008,https://www.iso.org/standard/46296.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 27:2008,https://www.iso.org/standard/46297.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 28:2008,https://www.iso.org/standard/46298.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 29:2008,https://www.iso.org/standard/46593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 2:2005,https://www.iso.org/standard/37378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 30:2009,https://www.iso.org/standard/50451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 31:2009,https://www.iso.org/standard/50455.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 35:2009,https://www.iso.org/standard/52043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 37:2009,https://www.iso.org/standard/52882.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 38:2010,https://www.iso.org/standard/52939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 38:2010/Cor 1:2012,https://www.iso.org/standard/61197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 3:2005,https://www.iso.org/standard/38547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 40:2011,https://www.iso.org/standard/59145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 41:2014,https://www.iso.org/standard/63529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 42:2014,https://www.iso.org/standard/65298.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 43:2015,https://www.iso.org/standard/65372.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 45:2016,https://www.iso.org/standard/68840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 4:2005,https://www.iso.org/standard/39864.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 5:2005,https://www.iso.org/standard/39391.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 6:2005,https://www.iso.org/standard/39592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 6:2005/Cor 1:2007,https://www.iso.org/standard/46411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 7:2005,https://www.iso.org/standard/39850.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 9:2006,https://www.iso.org/standard/41489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 9:2006/Cor 1:2007,https://www.iso.org/standard/46410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Amd 9:2006/Cor 2:2012,https://www.iso.org/standard/61313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Cor 1:2005,https://www.iso.org/standard/41934.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Cor 2:2007,https://www.iso.org/standard/43981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Cor 4:2008,https://www.iso.org/standard/51095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/Cor 7:2010,https://www.iso.org/standard/53744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/DAmd 44,https://www.iso.org/standard/67315.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-4:2004/FDAmd 46,https://www.iso.org/standard/70431.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001,https://www.iso.org/standard/36086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 10:2007,https://www.iso.org/standard/43465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 10:2007/Cor 1:2008,https://www.iso.org/standard/50830.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 10:2007/Cor 2:2008,https://www.iso.org/standard/51769.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 10:2007/Cor 3:2009,https://www.iso.org/standard/52968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 10:2007/Cor 4:2010,https://www.iso.org/standard/55587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 10:2007/Cor 5:2011,https://www.iso.org/standard/59406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 10:2007/Cor 6:2012,https://www.iso.org/standard/61155.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 11:2007,https://www.iso.org/standard/44960.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 12:2007,https://www.iso.org/standard/45527.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 13:2008,https://www.iso.org/standard/46446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 14:2009,https://www.iso.org/standard/46594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 14:2009/Cor 1:2010,https://www.iso.org/standard/54375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 15:2010,https://www.iso.org/standard/46595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 16:2008,https://www.iso.org/standard/46596.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 17:2008,https://www.iso.org/standard/46597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 18:2008,https://www.iso.org/standard/50468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 19:2009,https://www.iso.org/standard/50469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 1:2002,https://www.iso.org/standard/36089.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 1:2002/Cor 1:2008,https://www.iso.org/standard/51343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 20:2009,https://www.iso.org/standard/50470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 21:2009,https://www.iso.org/standard/51750.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 22:2009,https://www.iso.org/standard/52328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 23:2010,https://www.iso.org/standard/52355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 24:2009,https://www.iso.org/standard/52122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 24:2009/Cor 1:2012,https://www.iso.org/standard/62321.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 24:2009/Cor 2:2013,https://www.iso.org/standard/63952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 24:2009/Cor 3:2017,https://www.iso.org/standard/70607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 25:2009,https://www.iso.org/standard/52884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 26:2011,https://www.iso.org/standard/55695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 27:2011,https://www.iso.org/standard/53745.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 27:2011/Cor 1:2015,https://www.iso.org/standard/66135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 28:2011,https://www.iso.org/standard/55968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 29:2011,https://www.iso.org/standard/57264.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 2:2003,https://www.iso.org/standard/36355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 30:2011,https://www.iso.org/standard/59146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 31:2012,https://www.iso.org/standard/59239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 32:2015,https://www.iso.org/standard/63563.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 33:2015,https://www.iso.org/standard/65400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 34:2014,https://www.iso.org/standard/65401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 35:2015,https://www.iso.org/standard/65388.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 36:2015,https://www.iso.org/standard/65389.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 37:2015,https://www.iso.org/standard/66573.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 39:2016,https://www.iso.org/standard/68821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 3:2003,https://www.iso.org/standard/38058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 42:2017,https://www.iso.org/standard/70369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 4:2004,https://www.iso.org/standard/39417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 5:2004,https://www.iso.org/standard/39392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 5:2004/Cor 1:2011,https://www.iso.org/standard/57541.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 6:2005,https://www.iso.org/standard/39593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 6:2005/Cor 1:2006,https://www.iso.org/standard/44371.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 7:2005,https://www.iso.org/standard/40361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 8:2006,https://www.iso.org/standard/41955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/Amd 9:2007,https://www.iso.org/standard/43931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/DAmd 38,https://www.iso.org/standard/67314.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/DAmd 40,https://www.iso.org/standard/69449.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/DAmd 43,https://www.iso.org/standard/74422.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-5:2001/FDAmd 41,https://www.iso.org/standard/70380.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-6:2000,https://www.iso.org/standard/34418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 14496-7:2004,https://www.iso.org/standard/40728.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-8:2004,https://www.iso.org/standard/36066.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 14496-9:2009,https://www.iso.org/standard/52073.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-10:2014,https://www.iso.org/standard/66069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-10:2014/Amd 1:2015,https://www.iso.org/standard/67318.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-10:2014/Amd 3:2016,https://www.iso.org/standard/69728.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-10:2014/CD Cor 1,https://www.iso.org/standard/68968.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-10:2014/DAmd 4,https://www.iso.org/standard/71073.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-10:2014/FDAmd 2,https://www.iso.org/standard/69018.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-11:2005/Amd 5:2007,https://www.iso.org/standard/43587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-11:2005/Amd 6:2009,https://www.iso.org/standard/51751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-11:2005/Amd 7:2010,https://www.iso.org/standard/54839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-11:2005/Cor 5:2008,https://www.iso.org/standard/44364.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-11:2005/Cor 6:2007,https://www.iso.org/standard/46299.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-11:2015,https://www.iso.org/standard/63548.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-12:2015,https://www.iso.org/standard/68960.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-12:2015/Amd 1:2017,https://www.iso.org/standard/70430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-12:2015/Amd 2,https://www.iso.org/standard/71851.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-12:2015/CD Cor 1,https://www.iso.org/standard/70446.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC FDIS 14496-12,https://www.iso.org/standard/74428.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-13:2004,https://www.iso.org/standard/39110.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-14:2003,https://www.iso.org/standard/38538.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-14:2003/Amd 1:2010,https://www.iso.org/standard/53749.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-14:2003/Cor 1:2006,https://www.iso.org/standard/43588.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-15:2017,https://www.iso.org/standard/69660.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-15:2017/Amd 1,https://www.iso.org/standard/72682.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 14496-15,https://www.iso.org/standard/74429.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-16:2011,https://www.iso.org/standard/57367.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-16:2011/Amd 1:2011,https://www.iso.org/standard/57368.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-16:2011/Amd 2:2014,https://www.iso.org/standard/60385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-16:2011/Amd 3:2016,https://www.iso.org/standard/63521.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-16:2011/Amd 4:2017,https://www.iso.org/standard/68197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-16:2011/Cor 1:2015,https://www.iso.org/standard/68580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-17:2006,https://www.iso.org/standard/39478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-18:2004,https://www.iso.org/standard/40151.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-18:2004/Amd 1:2014,https://www.iso.org/standard/63951.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-18:2004/Cor 1:2007,https://www.iso.org/standard/45443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-19:2004,https://www.iso.org/standard/40152.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-20:2008,https://www.iso.org/standard/52454.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-20:2008/Amd 1:2009,https://www.iso.org/standard/52461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-20:2008/Amd 2:2010,https://www.iso.org/standard/52462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-20:2008/Amd 3:2010,https://www.iso.org/standard/52969.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-20:2008/Cor 1:2010,https://www.iso.org/standard/56568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-21:2006,https://www.iso.org/standard/41733.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-21:2006/Cor 1:2007,https://www.iso.org/standard/46302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-22:2015,https://www.iso.org/standard/66391.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-22:2015/Amd 1:2017,https://www.iso.org/standard/69450.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-22:2015/Amd 2:2017,https://www.iso.org/standard/70994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 14496-22,https://www.iso.org/standard/74461.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-23:2008,https://www.iso.org/standard/45531.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 14496-24:2008,https://www.iso.org/standard/46461.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-25:2011,https://www.iso.org/standard/57755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010,https://www.iso.org/standard/53750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Amd 2:2010,https://www.iso.org/standard/54409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Amd 3:2014,https://www.iso.org/standard/62645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Amd 4:2016,https://www.iso.org/standard/68645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Cor 2:2011,https://www.iso.org/standard/56690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Cor 3:2011,https://www.iso.org/standard/57542.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Cor 4:2011,https://www.iso.org/standard/59407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Cor 5:2012,https://www.iso.org/standard/61157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Cor 6:2013,https://www.iso.org/standard/62617.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Cor 7:2013,https://www.iso.org/standard/63953.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/Cor 8:2015,https://www.iso.org/standard/67083.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-26:2010/DAmd 5,https://www.iso.org/standard/74423.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-27:2009,https://www.iso.org/standard/53751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-27:2009/Amd 2:2011,https://www.iso.org/standard/53752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-27:2009/Amd 2:2011/Cor 1:2015,https://www.iso.org/standard/66136.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-27:2009/Amd 3:2011,https://www.iso.org/standard/55972.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-27:2009/Amd 4:2012,https://www.iso.org/standard/59238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-27:2009/Amd 5:2015,https://www.iso.org/standard/61158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-27:2009/Amd 6:2015,https://www.iso.org/standard/65392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-27:2009/DAmd 7,https://www.iso.org/standard/69559.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-28:2012,https://www.iso.org/standard/59240.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-28:2012/Cor 1:2013,https://www.iso.org/standard/63526.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-28:2012/Cor 2:2014,https://www.iso.org/standard/65391.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-29:2015,https://www.iso.org/standard/61159.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-30:2014,https://www.iso.org/standard/63107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-30:2014/CD Cor 2,https://www.iso.org/standard/70194.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-30:2014/Cor 1:2015,https://www.iso.org/standard/67948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-30:2014/DAmd 1,https://www.iso.org/standard/71977.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 14496-31,https://www.iso.org/standard/66062.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 14496-33.2,https://www.iso.org/standard/69714.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-1:2002,https://www.iso.org/standard/34228.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-1:2002/Amd 1:2005,https://www.iso.org/standard/39396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-1:2002/Amd 1:2005/Cor 1:2005,https://www.iso.org/standard/43460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-1:2002/Amd 2:2006,https://www.iso.org/standard/42027.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-1:2002/Cor 1:2004,https://www.iso.org/standard/39477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-1:2002/Cor 2:2005,https://www.iso.org/standard/42492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-2:2002,https://www.iso.org/standard/34229.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002,https://www.iso.org/standard/34230.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002/Amd 1:2004,https://www.iso.org/standard/37568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002/Amd 1:2004/Cor 1:2005,https://www.iso.org/standard/42048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002/Amd 1:2004/Cor 2:2007,https://www.iso.org/standard/45444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002/Amd 2:2006,https://www.iso.org/standard/42029.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002/Amd 2:2006/Cor 1:2007,https://www.iso.org/standard/46303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002/Amd 3:2009,https://www.iso.org/standard/50550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002/Amd 4:2010,https://www.iso.org/standard/54890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-3:2002/Cor 1:2004,https://www.iso.org/standard/40311.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-4:2002,https://www.iso.org/standard/34231.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-4:2002/Amd 1:2004,https://www.iso.org/standard/37569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-4:2002/Amd 2:2006,https://www.iso.org/standard/42169.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-5:2003,https://www.iso.org/standard/34232.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-5:2003/Amd 1:2004,https://www.iso.org/standard/37570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-5:2003/Amd 2:2005,https://www.iso.org/standard/40393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-5:2003/Amd 3:2008,https://www.iso.org/standard/46385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-5:2003/Amd 4:2012,https://www.iso.org/standard/62193.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-5:2003/Amd 5:2015,https://www.iso.org/standard/66831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-5:2003/Cor 1:2004,https://www.iso.org/standard/41343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-6:2003,https://www.iso.org/standard/35364.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-6:2003/Amd 1:2006,https://www.iso.org/standard/40493.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-6:2003/Amd 1:2006/Cor 1:2007,https://www.iso.org/standard/46304.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-6:2003/Amd 2:2007,https://www.iso.org/standard/45528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-6:2003/Amd 3:2010,https://www.iso.org/standard/53592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-6:2003/Amd 4:2011,https://www.iso.org/standard/56735.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 15938-6,https://www.iso.org/standard/68939.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-7:2003,https://www.iso.org/standard/35365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-7:2003/Amd 1:2005,https://www.iso.org/standard/39469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-7:2003/Amd 2:2007,https://www.iso.org/standard/43589.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-7:2003/Amd 3:2007,https://www.iso.org/standard/45529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-7:2003/Amd 4:2008,https://www.iso.org/standard/46386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-7:2003/Amd 5:2010,https://www.iso.org/standard/53593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-7:2003/Amd 5:2010/CD Cor 1,https://www.iso.org/standard/70563.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-7:2003/Amd 6:2011,https://www.iso.org/standard/57047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 15938-8:2002,https://www.iso.org/standard/37778.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 15938-8:2002/Amd 1:2004,https://www.iso.org/standard/41102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 15938-8:2002/Amd 2:2006,https://www.iso.org/standard/42460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 15938-8:2002/Amd 3:2007,https://www.iso.org/standard/45421.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 15938-8:2002/Amd 4:2009,https://www.iso.org/standard/52360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 15938-8:2002/Amd 5:2010,https://www.iso.org/standard/53594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 15938-8:2002/Amd 6:2011,https://www.iso.org/standard/57356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 15938-8:2002/Cor 1:2005,https://www.iso.org/standard/42493.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-9:2005,https://www.iso.org/standard/40392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-9:2005/Amd 1:2012,https://www.iso.org/standard/57538.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-10:2005,https://www.iso.org/standard/40527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-10:2005/Cor 1:2007,https://www.iso.org/standard/45445.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 15938-11:2005,https://www.iso.org/standard/42114.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 15938-11:2005/Amd 1:2012,https://www.iso.org/standard/60233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-12:2012,https://www.iso.org/standard/61195.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-13:2015,https://www.iso.org/standard/65393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 15938-14,https://www.iso.org/standard/69664.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-1:1999,https://www.iso.org/standard/31009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-2:1999,https://www.iso.org/standard/31010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-3:1999,https://www.iso.org/standard/31011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-4:1999,https://www.iso.org/standard/31012.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-5:1999,https://www.iso.org/standard/31013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-6:1999,https://www.iso.org/standard/31014.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-7:1999,https://www.iso.org/standard/31015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-8:1999,https://www.iso.org/standard/31016.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 16500-9:1999,https://www.iso.org/standard/31017.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 16501:1999,https://www.iso.org/standard/30373.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 21000-1:2004,https://www.iso.org/standard/40611.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-2:2005,https://www.iso.org/standard/41112.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-2:2005/Amd 1:2012,https://www.iso.org/standard/54410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-3:2003,https://www.iso.org/standard/35367.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-3:2003/Amd 1:2007,https://www.iso.org/standard/42028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-3:2003/Amd 2:2013,https://www.iso.org/standard/61160.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-4:2006,https://www.iso.org/standard/41836.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-4:2006/Amd 1:2007,https://www.iso.org/standard/45533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-4:2006/Amd 2:2012,https://www.iso.org/standard/54411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-4:2006/Cor 1:2012,https://www.iso.org/standard/60234.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-5:2004,https://www.iso.org/standard/36095.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-5:2004/Amd 1:2007,https://www.iso.org/standard/43300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-5:2004/Amd 2:2007,https://www.iso.org/standard/44341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-5:2004/Amd 3:2008,https://www.iso.org/standard/46388.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-6:2004,https://www.iso.org/standard/36096.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-6:2004/Amd 1:2006,https://www.iso.org/standard/43205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-6:2004/Cor 1:2005,https://www.iso.org/standard/42058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-6:2004/Cor 2:2007,https://www.iso.org/standard/44011.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-7:2007,https://www.iso.org/standard/46501.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-7:2007/Amd 1:2008,https://www.iso.org/standard/52153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-7:2007/Cor 1:2008,https://www.iso.org/standard/52361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-8:2008,https://www.iso.org/standard/46286.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-8:2008/Amd 1:2009,https://www.iso.org/standard/51754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-8:2008/Amd 2:2011,https://www.iso.org/standard/57394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-8:2008/Amd 3:2015,https://www.iso.org/standard/63549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-8:2008/DAmd 4,https://www.iso.org/standard/74432.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-9:2005,https://www.iso.org/standard/40639.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-9:2005/Amd 1:2008,https://www.iso.org/standard/50551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-10:2006,https://www.iso.org/standard/40486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-10:2006/Amd 1:2006,https://www.iso.org/standard/43359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 21000-11:2004,https://www.iso.org/standard/40487.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 21000-12:2005,https://www.iso.org/standard/41915.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-14:2007,https://www.iso.org/standard/45617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-15:2006,https://www.iso.org/standard/41837.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-15:2006/Amd 1:2008,https://www.iso.org/standard/50343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-15:2006/Cor 1:2008,https://www.iso.org/standard/50852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-16:2005,https://www.iso.org/standard/41692.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-17:2006,https://www.iso.org/standard/42075.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-18:2007,https://www.iso.org/standard/43743.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-18:2007/Amd 1:2008,https://www.iso.org/standard/46468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-19:2010,https://www.iso.org/standard/52887.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-19:2010/FDAmd 1,https://www.iso.org/standard/71978.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-20:2016,https://www.iso.org/standard/68926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-21:2017,https://www.iso.org/standard/69299.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-22:2016,https://www.iso.org/standard/68927.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 21000-22:2016/FDAmd 1,https://www.iso.org/standard/71289.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC CD 21122-1,https://www.iso.org/standard/74535.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 23000-1:2007,https://www.iso.org/standard/42010.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-2:2008,https://www.iso.org/standard/45566.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-3:2007,https://www.iso.org/standard/43606.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-3:2007/Amd 1:2009,https://www.iso.org/standard/50553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-3:2007/Amd 2:2010,https://www.iso.org/standard/53753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-4:2009,https://www.iso.org/standard/50745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-4:2009/Amd 1:2009,https://www.iso.org/standard/51815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-4:2009/Amd 2:2009,https://www.iso.org/standard/52362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-5:2011,https://www.iso.org/standard/54565.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-6:2012,https://www.iso.org/standard/61312.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-7:2008,https://www.iso.org/standard/46306.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-7:2008/Amd 1:2009,https://www.iso.org/standard/51924.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-8:2008,https://www.iso.org/standard/46307.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-9:2008,https://www.iso.org/standard/46308.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-9:2008/Amd 1:2010,https://www.iso.org/standard/52345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-9:2008/Amd 1:2010/Cor 1:2011,https://www.iso.org/standard/59359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-9:2008/Amd 1:2010/Cor 2:2012,https://www.iso.org/standard/60235.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-9:2008/Amd 2:2010,https://www.iso.org/standard/53754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-9:2008/Cor 1:2008,https://www.iso.org/standard/52051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-10:2012,https://www.iso.org/standard/60330.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-10:2012/Amd 1:2014,https://www.iso.org/standard/63967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-10:2012/Cor 2:2014,https://www.iso.org/standard/66001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-11:2009,https://www.iso.org/standard/52059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-11:2009/Amd 1:2011,https://www.iso.org/standard/54377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-11:2009/Amd 2:2011,https://www.iso.org/standard/57266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-11:2009/Amd 3:2014,https://www.iso.org/standard/63439.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-12:2010,https://www.iso.org/standard/53644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-12:2010/Amd 1:2011,https://www.iso.org/standard/55973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-12:2010/Amd 2:2012,https://www.iso.org/standard/59636.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-12:2010/Amd 3:2013,https://www.iso.org/standard/62087.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-13:2017,https://www.iso.org/standard/69465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-13:2017/DAmd 1,https://www.iso.org/standard/69665.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-15:2016,https://www.iso.org/standard/66430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-15:2016/Amd 1:2017,https://www.iso.org/standard/69560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-16:2018,https://www.iso.org/standard/68914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23000-17,https://www.iso.org/standard/70439.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-18,https://www.iso.org/standard/70442.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-19:2018,https://www.iso.org/standard/71975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-19:2018/DAmd 1,https://www.iso.org/standard/73307.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23000-19:2018/PDAM 2,https://www.iso.org/standard/74442.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23000-20,https://www.iso.org/standard/73310.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC CD 23000-21,https://www.iso.org/standard/74416.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC CD 23000-22,https://www.iso.org/standard/74417.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-1:2006,https://www.iso.org/standard/35417.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-1:2006/Amd 1:2007,https://www.iso.org/standard/44012.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-1:2006/Amd 2:2008,https://www.iso.org/standard/46338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-1:2006/Cor 1:2007,https://www.iso.org/standard/45446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-1:2006/Cor 2:2007,https://www.iso.org/standard/46309.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-2:2008,https://www.iso.org/standard/44363.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-3:2008,https://www.iso.org/standard/46387.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-4:2017,https://www.iso.org/standard/70608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-5:2008,https://www.iso.org/standard/50094.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-7:2016,https://www.iso.org/standard/68042.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-8:2016,https://www.iso.org/standard/69661.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-8:2016/DAmd 1,https://www.iso.org/standard/71075.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-9:2016,https://www.iso.org/standard/70175.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-10:2015,https://www.iso.org/standard/66064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-10:2015/FDAmd 1,https://www.iso.org/standard/70499.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-11:2015,https://www.iso.org/standard/66065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-11:2015/Amd 1:2016,https://www.iso.org/standard/68657.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-11:2015/Amd 2,https://www.iso.org/standard/70995.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-11:2015/DAmd 3,https://www.iso.org/standard/73308.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23001-12:2015,https://www.iso.org/standard/67077.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23001-12,https://www.iso.org/standard/74431.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23001-13,https://www.iso.org/standard/73311.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23001-14,https://www.iso.org/standard/74415.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-1:2006,https://www.iso.org/standard/42030.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-1:2006/Amd 1:2008,https://www.iso.org/standard/46492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-1:2006/Amd 1:2008/Cor 1:2013,https://www.iso.org/standard/62131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-2:2008,https://www.iso.org/standard/45433.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-3:2007,https://www.iso.org/standard/44354.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-4,https://www.iso.org/standard/73398.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-4:2014,https://www.iso.org/standard/65214.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-4:2014/Amd 1:2014,https://www.iso.org/standard/65282.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-4:2014/Amd 2:2015,https://www.iso.org/standard/65303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-4:2014/DAmd 3,https://www.iso.org/standard/70433.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-5:2013/DAmd 3,https://www.iso.org/standard/70434.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23002-5:2017,https://www.iso.org/standard/73399.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 23002-6:2017,https://www.iso.org/standard/71972.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007,https://www.iso.org/standard/44159.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 1:2008,https://www.iso.org/standard/46458.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 1:2008/Cor 1:2011,https://www.iso.org/standard/56233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 1:2008/Cor 2:2012,https://www.iso.org/standard/60515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 1:2008/Cor 3:2015,https://www.iso.org/standard/68534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 2:2008,https://www.iso.org/standard/46469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 2:2008/Cor 1:2009,https://www.iso.org/standard/53758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 2:2008/Cor 2:2011,https://www.iso.org/standard/56234.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 2:2008/Cor 3:2012,https://www.iso.org/standard/61658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 2:2008/Cor 4:2013,https://www.iso.org/standard/63527.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 3:2016,https://www.iso.org/standard/70089.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Amd 4:2017,https://www.iso.org/standard/72659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Cor 1:2008,https://www.iso.org/standard/50944.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Cor 2:2009,https://www.iso.org/standard/53757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Cor 3:2010,https://www.iso.org/standard/56569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-1:2007/Cor 4:2012,https://www.iso.org/standard/61575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2,https://www.iso.org/standard/73122.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2:2010,https://www.iso.org/standard/51827.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2:2010/Amd 1:2015,https://www.iso.org/standard/57357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2:2010/Amd 2:2015,https://www.iso.org/standard/57358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2:2010/Amd 3:2015,https://www.iso.org/standard/65252.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2:2010/Amd 4:2016,https://www.iso.org/standard/69451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2:2010/Amd 5:2016,https://www.iso.org/standard/69452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2:2010/Cor 1:2012,https://www.iso.org/standard/61659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-2:2010/Cor 2:2014,https://www.iso.org/standard/66000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012,https://www.iso.org/standard/57464.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Amd 1:2014,https://www.iso.org/standard/62117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Amd 1:2014/Cor 1:2015,https://www.iso.org/standard/66478.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Amd 2:2015,https://www.iso.org/standard/62118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Amd 2:2015/Cor 1:2015,https://www.iso.org/standard/66572.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Amd 3:2016,https://www.iso.org/standard/68643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Cor 1:2012,https://www.iso.org/standard/61751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Cor 2:2013,https://www.iso.org/standard/63965.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Cor 3:2015,https://www.iso.org/standard/66571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/Cor 4:2015,https://www.iso.org/standard/68644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-3:2012/PDAM 4,https://www.iso.org/standard/74424.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-4:2015,https://www.iso.org/standard/66482.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-4:2015/Amd 1:2017,https://www.iso.org/standard/70437.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-4:2015/Amd 2:2017,https://www.iso.org/standard/71074.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-4:2015/DAmd 3,https://www.iso.org/standard/71979.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23003-4:2015/DAmd 4,https://www.iso.org/standard/74425.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23004-1:2007,https://www.iso.org/standard/44350.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23004-2:2007,https://www.iso.org/standard/44351.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23004-3:2007,https://www.iso.org/standard/44352.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23004-4:2007,https://www.iso.org/standard/44353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23004-5:2008,https://www.iso.org/standard/45436.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23004-6:2008,https://www.iso.org/standard/45437.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23004-7:2008,https://www.iso.org/standard/45438.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23004-8:2009,https://www.iso.org/standard/50557.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23005-1:2016,https://www.iso.org/standard/65394.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23005-1,https://www.iso.org/standard/73581.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23005-2:2016,https://www.iso.org/standard/65395.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23005-2,https://www.iso.org/standard/73580.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23005-3:2016,https://www.iso.org/standard/65396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23005-3,https://www.iso.org/standard/71076.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23005-4:2016,https://www.iso.org/standard/65397.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23005-4,https://www.iso.org/standard/73579.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23005-5:2016,https://www.iso.org/standard/65398.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23005-5,https://www.iso.org/standard/73438.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23005-6:2016,https://www.iso.org/standard/65399.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23005-6,https://www.iso.org/standard/73439.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23005-7:2017,https://www.iso.org/standard/67764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23006-1:2013,https://www.iso.org/standard/57609.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC FDIS 23006-1,https://www.iso.org/standard/70585.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23006-2:2016,https://www.iso.org/standard/68660.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23006-3:2016,https://www.iso.org/standard/68661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23006-4:2013,https://www.iso.org/standard/57611.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23006-5:2013,https://www.iso.org/standard/57622.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23007-1:2010,https://www.iso.org/standard/55497.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23007-1:2010/Amd 1:2012,https://www.iso.org/standard/57539.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23007-1:2010/Amd 1:2012/Cor 1:2012,https://www.iso.org/standard/61576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23007-1:2010/Amd 1:2012/Cor 2:2014,https://www.iso.org/standard/63954.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23007-2:2012,https://www.iso.org/standard/59241.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23007-3:2011,https://www.iso.org/standard/56570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23007-3:2011/Amd 1:2015,https://www.iso.org/standard/62119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-1:2017,https://www.iso.org/standard/70201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-1:2017/Amd 1:2017,https://www.iso.org/standard/70426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-1:2017/DAmd 2,https://www.iso.org/standard/71981.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-1:2017/PDAM 3,https://www.iso.org/standard/74426.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-2:2017,https://www.iso.org/standard/69668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-2:2017/Amd 2,https://www.iso.org/standard/72660.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-2:2017/FDAmd 1,https://www.iso.org/standard/71980.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-2:2017/FDAmd 3,https://www.iso.org/standard/73309.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-3:2015,https://www.iso.org/standard/63878.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-3:2015/Amd 1:2016,https://www.iso.org/standard/67953.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-3:2015/Amd 2:2016,https://www.iso.org/standard/68592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-3:2015/Amd 3:2017,https://www.iso.org/standard/69561.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-3:2015/Amd 4:2016,https://www.iso.org/standard/69453.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-3:2015/PDAM 5,https://www.iso.org/standard/74433.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23008-3,https://www.iso.org/standard/74430.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-4/PDAM 1,https://www.iso.org/standard/73306.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23008-4,https://www.iso.org/standard/68662.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-5:2017,https://www.iso.org/standard/72216.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-5:2017/Amd 1:2017,https://www.iso.org/standard/72289.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC FDIS 23008-6,https://www.iso.org/standard/71973.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-8:2015,https://www.iso.org/standard/63981.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC FDIS 23008-8,https://www.iso.org/standard/71546.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23008-9,https://www.iso.org/standard/71974.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-10:2015,https://www.iso.org/standard/63980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-10:2015/PDAM 1,https://www.iso.org/standard/74434.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-11:2015,https://www.iso.org/standard/65302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-11:2015/Cor 1:2017,https://www.iso.org/standard/71700.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-11:2015/DAmd 1,https://www.iso.org/standard/73873.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-12:2017,https://www.iso.org/standard/66067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23008-12:2017/DAmd 1,https://www.iso.org/standard/70996.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 23008-13:2017,https://www.iso.org/standard/70438.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 23008-14,https://www.iso.org/standard/72655.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC PDTR 23008-15,https://www.iso.org/standard/72656.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-1:2014,https://www.iso.org/standard/65274.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-1:2014/Amd 1:2015,https://www.iso.org/standard/66068.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-1:2014/Amd 2:2015,https://www.iso.org/standard/66486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-1:2014/Amd 3:2016,https://www.iso.org/standard/68921.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-1:2014/Cor 1:2015,https://www.iso.org/standard/66098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-1:2014/Cor 2:2015,https://www.iso.org/standard/69417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-1:2014/DAmd 4,https://www.iso.org/standard/70435.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-2:2017,https://www.iso.org/standard/69562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 23009-3:2015,https://www.iso.org/standard/63562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-4:2013,https://www.iso.org/standard/62122.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23009-4,https://www.iso.org/standard/73603.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-5:2017,https://www.iso.org/standard/69079.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC 23009-6:2017,https://www.iso.org/standard/71072.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC FDIS 23091-1,https://www.iso.org/standard/57794.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC DIS 23091-2,https://www.iso.org/standard/73412.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC FDIS 23091-3,https://www.iso.org/standard/73413.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC CD 23091-4,https://www.iso.org/standard/74418.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO/IEC TR 24800-1:2012,https://www.iso.org/standard/60232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 29,https://www.iso.org/contents/data/committee/04/53/45316/x/catalogue/ -ISO 26428-1:2008,https://www.iso.org/standard/50204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-2:2008,https://www.iso.org/standard/50218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-3:2008,https://www.iso.org/standard/50219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-9:2009,https://www.iso.org/standard/52784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-11:2011,https://www.iso.org/standard/57749.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-19:2011,https://www.iso.org/standard/57750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-3:2008,https://www.iso.org/standard/50205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-4:2008,https://www.iso.org/standard/50221.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-6:2008,https://www.iso.org/standard/50222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-7:2008,https://www.iso.org/standard/50223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-8:2009,https://www.iso.org/standard/52785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-9:2009,https://www.iso.org/standard/52786.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-10:2009,https://www.iso.org/standard/52787.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-1:2008,https://www.iso.org/standard/50206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-2:2008,https://www.iso.org/standard/50224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-3:2008,https://www.iso.org/standard/50225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-4:2009,https://www.iso.org/standard/52788.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-5:2009,https://www.iso.org/standard/52789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-6:2009,https://www.iso.org/standard/52790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-9:2009,https://www.iso.org/standard/52791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26433:2009,https://www.iso.org/standard/52793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1073-1:1976,https://www.iso.org/standard/5567.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO 1073-2:1976,https://www.iso.org/standard/5568.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO 1831:1980,https://www.iso.org/standard/6480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 5218:2004,https://www.iso.org/standard/36266.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 6523-1:1998,https://www.iso.org/standard/25773.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 6523-2:1998,https://www.iso.org/standard/25774.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 9789:1994,https://www.iso.org/standard/17651.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 11179-1:2015,https://www.iso.org/standard/61932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 11179-2:2005,https://www.iso.org/standard/35345.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC PDTR 11179-2,https://www.iso.org/standard/74570.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 11179-3:2013,https://www.iso.org/standard/50340.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 11179-4:2004,https://www.iso.org/standard/35346.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 11179-5:2015,https://www.iso.org/standard/60341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 11179-6:2015,https://www.iso.org/standard/60342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC CD 11179-7,https://www.iso.org/standard/68766.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 14957:2010,https://www.iso.org/standard/55652.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO 15000-5:2014,https://www.iso.org/standard/61433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/IEC 15200:1996,https://www.iso.org/standard/26715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 15394:2017,https://www.iso.org/standard/65013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/IEC 15415:2011,https://www.iso.org/standard/54716.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15416:2016,https://www.iso.org/standard/65577.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15417:2007,https://www.iso.org/standard/43896.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15418:2016,https://www.iso.org/standard/67405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15419:2009,https://www.iso.org/standard/51423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15420:2009,https://www.iso.org/standard/46143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15421:2010,https://www.iso.org/standard/51290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15423:2009,https://www.iso.org/standard/51646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15424:2008,https://www.iso.org/standard/46144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15426-1:2006,https://www.iso.org/standard/43643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15426-2:2015,https://www.iso.org/standard/57022.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15434:2006,https://www.iso.org/standard/43692.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC CD 15434,https://www.iso.org/standard/72372.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15438:2015,https://www.iso.org/standard/65502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15459-1:2014,https://www.iso.org/standard/54779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15459-2:2015,https://www.iso.org/standard/54780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15459-3:2014,https://www.iso.org/standard/54781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15459-4:2014,https://www.iso.org/standard/54782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15459-5:2014,https://www.iso.org/standard/54785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15459-6:2014,https://www.iso.org/standard/54786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15961:2004,https://www.iso.org/standard/30528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15961-1:2013,https://www.iso.org/standard/43458.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC FDIS 15961-2,https://www.iso.org/standard/43631.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC FDIS 15961-3,https://www.iso.org/standard/43632.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15961-4:2016,https://www.iso.org/standard/51145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15962:2013,https://www.iso.org/standard/43459.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 15963:2009,https://www.iso.org/standard/52124.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 15963-1,https://www.iso.org/standard/73195.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 15963-2,https://www.iso.org/standard/73196.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16022:2006,https://www.iso.org/standard/44230.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16022:2006/Cor 1:2008,https://www.iso.org/standard/52201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16022:2006/Cor 2:2011,https://www.iso.org/standard/57333.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16023:2000,https://www.iso.org/standard/29835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16388:2007,https://www.iso.org/standard/43897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16390:2007,https://www.iso.org/standard/43898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 16480:2015,https://www.iso.org/standard/56829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-2:2009,https://www.iso.org/standard/46146.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-3:2010,https://www.iso.org/standard/53424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-4:2015,https://www.iso.org/standard/62539.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-4:2015/PDAM 1,https://www.iso.org/standard/66431.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC FDIS 18000-4,https://www.iso.org/standard/68145.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-6:2013,https://www.iso.org/standard/59644.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-7:2014,https://www.iso.org/standard/57336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-61:2012,https://www.iso.org/standard/59645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-62:2012,https://www.iso.org/standard/59646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-63:2015,https://www.iso.org/standard/63675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18000-64:2012,https://www.iso.org/standard/59647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 18001:2004,https://www.iso.org/standard/40733.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18004:2006/Cor 1:2009,https://www.iso.org/standard/52815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18004:2015,https://www.iso.org/standard/62021.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18046-1:2011,https://www.iso.org/standard/46150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18046-2:2011,https://www.iso.org/standard/46151.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC NP 18046-2,https://www.iso.org/standard/74387.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18046-3:2012,https://www.iso.org/standard/59496.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18046-4:2015,https://www.iso.org/standard/63927.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18047-2:2012,https://www.iso.org/standard/56040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 18047-3:2011,https://www.iso.org/standard/51677.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 18047-4:2004,https://www.iso.org/standard/39493.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18047-6:2017,https://www.iso.org/standard/66251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 18047-7:2010,https://www.iso.org/standard/44993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC WD 18047-7,https://www.iso.org/standard/69408.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 18050:2006,https://www.iso.org/standard/30835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 18180:2013,https://www.iso.org/standard/61713.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 18305:2016,https://www.iso.org/standard/62090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 19502:2005,https://www.iso.org/standard/32621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19503:2005,https://www.iso.org/standard/32622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19508:2014,https://www.iso.org/standard/61844.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 19509:2014,https://www.iso.org/standard/61845.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC PDTR 19583-1,https://www.iso.org/standard/67365.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC PDTR 19583-21,https://www.iso.org/standard/73178.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC PDTR 19583-22,https://www.iso.org/standard/73179.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19762:2016,https://www.iso.org/standard/61301.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 19763-1:2015,https://www.iso.org/standard/64637.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19763-3:2010,https://www.iso.org/standard/52069.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19763-5:2015,https://www.iso.org/standard/53761.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19763-6:2015,https://www.iso.org/standard/55028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19763-7:2015,https://www.iso.org/standard/55025.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19763-8:2015,https://www.iso.org/standard/56079.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 19763-9:2015,https://www.iso.org/standard/56080.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19763-10:2014,https://www.iso.org/standard/60344.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19763-12:2015,https://www.iso.org/standard/61559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TS 19763-13:2016,https://www.iso.org/standard/63474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 19773:2011,https://www.iso.org/standard/41769.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC NP 19773,https://www.iso.org/standard/73683.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 19782:2006,https://www.iso.org/standard/33920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 20017:2011,https://www.iso.org/standard/50964.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC PRF 20248,https://www.iso.org/standard/67412.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/DIS 20909,https://www.iso.org/standard/69435.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/DIS 20910,https://www.iso.org/standard/69436.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/IEC TR 20943-1:2003,https://www.iso.org/standard/34343.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 20943-3:2004,https://www.iso.org/standard/35339.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 20943-5:2013,https://www.iso.org/standard/55026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 20943-6:2013,https://www.iso.org/standard/56030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 20944-1:2013,https://www.iso.org/standard/51914.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC NP 20944-1,https://www.iso.org/standard/73684.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 20944-2:2013,https://www.iso.org/standard/51915.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC NP 20944-2,https://www.iso.org/standard/73685.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 20944-3:2013,https://www.iso.org/standard/51916.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC NP 20944-3,https://www.iso.org/standard/73686.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 20944-4:2013,https://www.iso.org/standard/41765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC NP 20944-4,https://www.iso.org/standard/73687.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 20944-5:2013,https://www.iso.org/standard/41766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC NP 20944-5,https://www.iso.org/standard/73688.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC PRF 21277,https://www.iso.org/standard/70393.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC/IEEE 21450:2010,https://www.iso.org/standard/54356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC/IEEE 21451-1:2010,https://www.iso.org/standard/54357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC/IEEE 21451-2:2010,https://www.iso.org/standard/54367.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC/IEEE 21451-4:2010,https://www.iso.org/standard/54368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC/IEEE 21451-7:2011,https://www.iso.org/standard/55511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC CD 22243,https://www.iso.org/standard/72940.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/DTR 22251,https://www.iso.org/standard/72978.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/IEC TR 24720:2008,https://www.iso.org/standard/38830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24723:2010,https://www.iso.org/standard/51425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24724:2011,https://www.iso.org/standard/51426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24728:2006,https://www.iso.org/standard/38838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 24729-1:2008,https://www.iso.org/standard/41881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 24729-2:2008,https://www.iso.org/standard/41882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 24729-3:2009,https://www.iso.org/standard/41883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 24729-4:2009,https://www.iso.org/standard/51193.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24730-1:2014,https://www.iso.org/standard/59801.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24730-2:2012,https://www.iso.org/standard/53423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24730-5:2010,https://www.iso.org/standard/46534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24730-21:2012,https://www.iso.org/standard/56530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24730-22:2012,https://www.iso.org/standard/56531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24730-61:2013,https://www.iso.org/standard/60378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24730-62:2013,https://www.iso.org/standard/60379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24753:2011,https://www.iso.org/standard/51144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24769-2:2013,https://www.iso.org/standard/55894.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24769-5:2012,https://www.iso.org/standard/55895.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24769-61:2015,https://www.iso.org/standard/63177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24769-62:2015,https://www.iso.org/standard/63006.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24770:2012,https://www.iso.org/standard/60364.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 24770-5,https://www.iso.org/standard/68934.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24770-61:2015,https://www.iso.org/standard/63178.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24770-62:2015,https://www.iso.org/standard/63028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24778:2008,https://www.iso.org/standard/41548.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24778:2008/CD Cor 1,https://www.iso.org/standard/65578.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24791-1:2010,https://www.iso.org/standard/46137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24791-2:2011,https://www.iso.org/standard/46138.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24791-3:2014,https://www.iso.org/standard/46139.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 24791-5:2012,https://www.iso.org/standard/60833.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO 28219:2017,https://www.iso.org/standard/65014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 28560-1:2014,https://www.iso.org/standard/65203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 28560-2:2014,https://www.iso.org/standard/65204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 28560-3:2014,https://www.iso.org/standard/65205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/TS 28560-4:2014,https://www.iso.org/standard/62311.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/IEC 29133:2010,https://www.iso.org/standard/45156.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29143:2011,https://www.iso.org/standard/45166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC CD 29158,https://www.iso.org/standard/69411.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 29158:2011,https://www.iso.org/standard/45237.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29160:2012,https://www.iso.org/standard/45239.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC AWI 29160,https://www.iso.org/standard/75130.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29161:2016,https://www.iso.org/standard/45240.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TR 29162:2012,https://www.iso.org/standard/45241.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-1:2014,https://www.iso.org/standard/61128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-10:2017,https://www.iso.org/standard/69410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-11:2014,https://www.iso.org/standard/60441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-12:2015,https://www.iso.org/standard/60442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-13:2015,https://www.iso.org/standard/60682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-14:2015,https://www.iso.org/standard/61130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC TS 29167-15:2017,https://www.iso.org/standard/70971.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-16:2015,https://www.iso.org/standard/61321.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-17:2015,https://www.iso.org/standard/61942.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29167-19:2016,https://www.iso.org/standard/63176.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 29167-19,https://www.iso.org/standard/73247.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 29167-21,https://www.iso.org/standard/70388.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 29167-22,https://www.iso.org/standard/70389.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29173-1:2012,https://www.iso.org/standard/55017.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 29174-1,https://www.iso.org/standard/72285.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC DIS 29174-2,https://www.iso.org/standard/72286.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29175:2012,https://www.iso.org/standard/45254.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29176:2011,https://www.iso.org/standard/45255.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29177:2016,https://www.iso.org/standard/45256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29178:2012,https://www.iso.org/standard/45257.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 29179:2012,https://www.iso.org/standard/45258.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO/IEC 30116:2016,https://www.iso.org/standard/53236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 31,https://www.iso.org/contents/data/committee/04/53/45332/x/catalogue/ -ISO 1538:1984,https://www.iso.org/standard/6126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 1539-1:2010,https://www.iso.org/standard/50459.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 1539-1:2010/Cor 1:2012,https://www.iso.org/standard/61544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 1539-1:2010/Cor 2:2013,https://www.iso.org/standard/63511.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 1539-1:2010/Cor 3:2014,https://www.iso.org/standard/65983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 1539-1:2010/Cor 4:2016,https://www.iso.org/standard/71524.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC DIS 1539-1,https://www.iso.org/standard/72320.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 1539-2:2000,https://www.iso.org/standard/26934.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 1989:2014,https://www.iso.org/standard/51416.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP 1989,https://www.iso.org/standard/74527.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO 6160:1979,https://www.iso.org/standard/12406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 6522:1992,https://www.iso.org/standard/12907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO 7185:1990,https://www.iso.org/standard/13802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO 8485:1989,https://www.iso.org/standard/15692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO 8651-1:1988,https://www.iso.org/standard/16024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO 8651-2:1988,https://www.iso.org/standard/16025.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO 8651-3:1988,https://www.iso.org/standard/16026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8651-4:1995,https://www.iso.org/standard/23070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8652:2012,https://www.iso.org/standard/61507.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 8652:2012/Cor 1:2016,https://www.iso.org/standard/69798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 8806-4:1991,https://www.iso.org/standard/16257.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO 8807:1989,https://www.iso.org/standard/16258.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 9075-1:2011/Cor 1:2013,https://www.iso.org/standard/60351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-1:2016,https://www.iso.org/standard/63555.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-2:2016,https://www.iso.org/standard/63556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-3:2016,https://www.iso.org/standard/63475.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-4:2016,https://www.iso.org/standard/63557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-9:2016,https://www.iso.org/standard/63476.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-10:2016,https://www.iso.org/standard/63477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-11:2016,https://www.iso.org/standard/63565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-13:2016,https://www.iso.org/standard/63478.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9075-14:2016,https://www.iso.org/standard/63566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC DIS 9075-15,https://www.iso.org/standard/67382.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9496:2003,https://www.iso.org/standard/34084.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/TR 9547:1988,https://www.iso.org/standard/17292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 9593-1:1990,https://www.iso.org/standard/17366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-1:1990/Amd 1:1995,https://www.iso.org/standard/1911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-1:1990/Cor 1:1993,https://www.iso.org/standard/22441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-1:1990/Cor 2:1994,https://www.iso.org/standard/22878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-3:1990,https://www.iso.org/standard/17368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-3:1990/Amd 1:1994,https://www.iso.org/standard/21312.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-3:1990/Cor 1:1993,https://www.iso.org/standard/22442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-3:1990/Cor 2:1994,https://www.iso.org/standard/22879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-4:1991,https://www.iso.org/standard/17369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-4:1991/Amd 1:1994,https://www.iso.org/standard/21152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-4:1991/Amd 2:1998,https://www.iso.org/standard/27266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-4:1991/Cor 1:1994,https://www.iso.org/standard/22880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9638-3:1994,https://www.iso.org/standard/17461.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9899:2011,https://www.iso.org/standard/57853.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 9899:2011/Cor 1:2012,https://www.iso.org/standard/61717.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC FDIS 9899,https://www.iso.org/standard/74528.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC/IEEE 9945:2009,https://www.iso.org/standard/50516.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC/IEEE 9945:2009/Cor 1:2013,https://www.iso.org/standard/62005.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC/IEEE 9945:2009/Cor 2:2017,https://www.iso.org/standard/73314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 10034:1990,https://www.iso.org/standard/17996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 10176:2003,https://www.iso.org/standard/37765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 10182:2016,https://www.iso.org/standard/67465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10206:1991,https://www.iso.org/standard/18237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10279:1991,https://www.iso.org/standard/18321.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10279:1991/Amd 1:1994,https://www.iso.org/standard/20742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10514-1:1996,https://www.iso.org/standard/18583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10514-2:1998,https://www.iso.org/standard/20792.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10514-3:1998,https://www.iso.org/standard/20793.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10967-1:2012,https://www.iso.org/standard/51317.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10967-2:2001,https://www.iso.org/standard/24427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 10967-3:2006,https://www.iso.org/standard/37994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 11017:1998,https://www.iso.org/standard/19001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 11404:2007,https://www.iso.org/standard/39479.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC NP 11404,https://www.iso.org/standard/73682.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 11756:1999,https://www.iso.org/standard/29268.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 12088-4:1995,https://www.iso.org/standard/23287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 13210:1999,https://www.iso.org/standard/29144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13211-1:1995,https://www.iso.org/standard/21413.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13211-1:1995/Cor 1:2007,https://www.iso.org/standard/50405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13211-1:1995/Cor 2:2012,https://www.iso.org/standard/58033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13211-1:1995/Cor 3:2017,https://www.iso.org/standard/73194.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13211-2:2000,https://www.iso.org/standard/20775.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13249-1:2016,https://www.iso.org/standard/65144.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 13249-2:2003,https://www.iso.org/standard/31368.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 13249-3:2016,https://www.iso.org/standard/60343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 13249-5:2003,https://www.iso.org/standard/35044.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 13249-6:2006,https://www.iso.org/standard/38648.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TS 13249-7:2013,https://www.iso.org/standard/44493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 13568:2002,https://www.iso.org/standard/21573.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13568:2002/Cor 1:2007,https://www.iso.org/standard/46112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13719-1:1998,https://www.iso.org/standard/30520.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13719-2:1998,https://www.iso.org/standard/30521.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13719-3:1998,https://www.iso.org/standard/30522.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13719-4:1998,https://www.iso.org/standard/28940.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13751:2001,https://www.iso.org/standard/22817.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13816:2007,https://www.iso.org/standard/44338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13817-1:1996,https://www.iso.org/standard/22988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 13886:1996,https://www.iso.org/standard/23183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 14369:2018,https://www.iso.org/standard/71928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 14515-1:2000,https://www.iso.org/standard/24575.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 14515-1:2000/Amd 1:2003,https://www.iso.org/standard/33274.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 14519:2001,https://www.iso.org/standard/34354.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 14568:1997,https://www.iso.org/standard/24813.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14772-1:1997,https://www.iso.org/standard/25508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14772-1:1997/Amd 1:2003,https://www.iso.org/standard/30998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14772-2:2004,https://www.iso.org/standard/30893.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14882:2017,https://www.iso.org/standard/68564.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 14977:1996,https://www.iso.org/standard/26153.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 15145:1997,https://www.iso.org/standard/26479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 15291:1999,https://www.iso.org/standard/27169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 15437:2001,https://www.iso.org/standard/27680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15851:1999,https://www.iso.org/standard/29269.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 15852:1999,https://www.iso.org/standard/29270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 15897:2011,https://www.iso.org/standard/50707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 15897:2011/Cor 1:2013,https://www.iso.org/standard/62695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 15942:2000,https://www.iso.org/standard/29575.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 16262:2011,https://www.iso.org/standard/55755.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 16509:1999,https://www.iso.org/standard/31005.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 17960:2015,https://www.iso.org/standard/61133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 17961:2013,https://www.iso.org/standard/61134.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 17961:2013/Cor 1:2016,https://www.iso.org/standard/72086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 18009:1999,https://www.iso.org/standard/31051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 18015:2006,https://www.iso.org/standard/43351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 18037:2008,https://www.iso.org/standard/51126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 18450:2013,https://www.iso.org/standard/62473.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TS 18508:2015,https://www.iso.org/standard/62702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 18661-1:2014,https://www.iso.org/standard/63146.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 18661-2:2015,https://www.iso.org/standard/68882.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 18661-3:2015,https://www.iso.org/standard/65615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 18661-4:2015,https://www.iso.org/standard/65616.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 18661-5:2016,https://www.iso.org/standard/65617.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 18822:2015,https://www.iso.org/standard/63483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 19075-1:2011,https://www.iso.org/standard/41528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 19075-2:2015,https://www.iso.org/standard/60394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 19075-3:2015,https://www.iso.org/standard/65141.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 19075-4:2015,https://www.iso.org/standard/65142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 19075-5:2016,https://www.iso.org/standard/65143.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 19075-6:2017,https://www.iso.org/standard/67367.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 19075-7:2017,https://www.iso.org/standard/69776.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC PDTR 19075-8,https://www.iso.org/standard/69777.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC PRF TS 19216,https://www.iso.org/standard/64030.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 19217:2015,https://www.iso.org/standard/64031.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 19505-1:2012,https://www.iso.org/standard/32624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19505-2:2012,https://www.iso.org/standard/52854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19507:2012,https://www.iso.org/standard/57306.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 19514:2017,https://www.iso.org/standard/65231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TS 19568:2017,https://www.iso.org/standard/70587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TS 19570,https://www.iso.org/standard/70588.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 19570:2015,https://www.iso.org/standard/65241.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 19571:2016,https://www.iso.org/standard/65242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 19755:2003,https://www.iso.org/standard/35354.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 19756:2011,https://www.iso.org/standard/39987.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 19758:2003,https://www.iso.org/standard/33896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 19758:2003/Amd 1:2005,https://www.iso.org/standard/40325.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 19758:2003/Amd 2:2005,https://www.iso.org/standard/40326.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 19758:2003/Amd 3:2005,https://www.iso.org/standard/40666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 19768:2007,https://www.iso.org/standard/43289.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 19841:2015,https://www.iso.org/standard/66343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 20970:2002,https://www.iso.org/standard/35604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 21425:2017,https://www.iso.org/standard/70910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC PDTS 21544,https://www.iso.org/standard/71051.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 21778:2017,https://www.iso.org/standard/71616.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC CD 21838-1,https://www.iso.org/standard/71954.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC CD 21838-2,https://www.iso.org/standard/74572.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC FDIS 22275,https://www.iso.org/standard/73002.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TS 22277:2017,https://www.iso.org/standard/73008.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 22537:2006,https://www.iso.org/standard/41002.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 23270:2006,https://www.iso.org/standard/42926.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC DIS 23270,https://www.iso.org/standard/75178.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 23271:2012,https://www.iso.org/standard/58046.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 23272:2011,https://www.iso.org/standard/57955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 24707:2007,https://www.iso.org/standard/39175.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC PRF 24707,https://www.iso.org/standard/66249.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 24715:2006,https://www.iso.org/standard/38825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 24716:2007,https://www.iso.org/standard/38826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 24717:2009,https://www.iso.org/standard/38827.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC PDTR 24718,https://www.iso.org/standard/74526.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 24718:2005,https://www.iso.org/standard/38828.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 24731-1:2007,https://www.iso.org/standard/38841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 24731-2:2010,https://www.iso.org/standard/51678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 24732:2009,https://www.iso.org/standard/38842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 24733:2011,https://www.iso.org/standard/38843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 24747:2009,https://www.iso.org/standard/38857.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 24772:2013,https://www.iso.org/standard/61457.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-1,https://www.iso.org/standard/71091.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-2,https://www.iso.org/standard/71092.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-3,https://www.iso.org/standard/71093.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-4,https://www.iso.org/standard/71094.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-5,https://www.iso.org/standard/71095.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-6,https://www.iso.org/standard/71096.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-7,https://www.iso.org/standard/71097.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-8,https://www.iso.org/standard/71098.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC NP TR 24772-9,https://www.iso.org/standard/71099.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 25436:2006,https://www.iso.org/standard/42924.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TR 25438:2006,https://www.iso.org/standard/42925.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC TS 29113:2012,https://www.iso.org/standard/45136.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 29124:2010,https://www.iso.org/standard/50511.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29166:2011,https://www.iso.org/standard/45245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-1:2016,https://www.iso.org/standard/71691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-2:2012,https://www.iso.org/standard/61796.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC CD 29500-2,https://www.iso.org/standard/70079.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-3:2015,https://www.iso.org/standard/65533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-4:2008/Cor 1:2010,https://www.iso.org/standard/55002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-4:2016,https://www.iso.org/standard/71692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 30114-1:2016,https://www.iso.org/standard/62481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PRF 30114-2,https://www.iso.org/standard/62482.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 30170:2012,https://www.iso.org/standard/59579.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO 3535:1977,https://www.iso.org/standard/8922.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO 5806:1984,https://www.iso.org/standard/11954.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO 5807:1985,https://www.iso.org/standard/11955.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 8211:1994,https://www.iso.org/standard/20305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8631:1989,https://www.iso.org/standard/15968.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO 8790:1987,https://www.iso.org/standard/16214.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 10746-1:1998,https://www.iso.org/standard/20696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 10746-2:2009,https://www.iso.org/standard/55723.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 10746-3:2009,https://www.iso.org/standard/55724.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 10746-4:1998,https://www.iso.org/standard/20698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 10746-4:1998/Amd 1:2001,https://www.iso.org/standard/32328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 11411:1995,https://www.iso.org/standard/19352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 12182:2015,https://www.iso.org/standard/63611.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 12207:2017,https://www.iso.org/standard/63712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 13235-1:1998,https://www.iso.org/standard/21470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 13235-3:1998,https://www.iso.org/standard/27708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 13235-3:1998/Cor 1:2006,https://www.iso.org/standard/43522.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 13244:1998,https://www.iso.org/standard/21479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13244:1998/Amd 1:1999,https://www.iso.org/standard/29614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13800:1996,https://www.iso.org/standard/22608.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14102:2008,https://www.iso.org/standard/43189.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14143-1:2007,https://www.iso.org/standard/38931.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14143-1:2007/Cor 1:2011,https://www.iso.org/standard/59977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14143-2:2011,https://www.iso.org/standard/52325.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 14143-3:2003,https://www.iso.org/standard/31918.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 14143-4:2002,https://www.iso.org/standard/31919.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 14143-5:2004,https://www.iso.org/standard/39986.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14143-6:2012,https://www.iso.org/standard/60176.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 14471:2007,https://www.iso.org/standard/43184.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14598-5:1998,https://www.iso.org/standard/24906.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14598-6:2001,https://www.iso.org/standard/24907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14750:1999,https://www.iso.org/standard/25486.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14752:2000,https://www.iso.org/standard/25488.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14753:1999,https://www.iso.org/standard/25489.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14756:1999,https://www.iso.org/standard/25492.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14764:2006,https://www.iso.org/standard/39064.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14769:2001,https://www.iso.org/standard/31375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14771:1999,https://www.iso.org/standard/25507.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 14834:1996,https://www.iso.org/standard/25721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14863:1996,https://www.iso.org/standard/25784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 15026-1:2013,https://www.iso.org/standard/62526.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC DIS 15026-1,https://www.iso.org/standard/73567.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 15026-1:2010/Cor 1:2012,https://www.iso.org/standard/61941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15026-2:2011,https://www.iso.org/standard/52926.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15026-3:2015,https://www.iso.org/standard/64842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15026-4:2012,https://www.iso.org/standard/59927.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 15026-4,https://www.iso.org/standard/74396.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 15288:2015,https://www.iso.org/standard/63711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 15289:2017,https://www.iso.org/standard/71950.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15414:2015,https://www.iso.org/standard/68642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15437:2001,https://www.iso.org/standard/27680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15474-1:2002,https://www.iso.org/standard/27825.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15474-2:2002,https://www.iso.org/standard/29029.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15475-1:2002,https://www.iso.org/standard/27826.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15475-2:2002,https://www.iso.org/standard/29030.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15475-3:2002,https://www.iso.org/standard/29031.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15476-1:2002,https://www.iso.org/standard/27827.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15476-2:2002,https://www.iso.org/standard/29032.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15476-3:2006,https://www.iso.org/standard/39296.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15476-4:2005,https://www.iso.org/standard/39131.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15476-6:2006,https://www.iso.org/standard/39132.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15504-4:2004,https://www.iso.org/standard/37462.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15504-5:2012,https://www.iso.org/standard/60555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15504-6:2013,https://www.iso.org/standard/61492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 15504-8:2012,https://www.iso.org/standard/50625.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 15504-9:2011,https://www.iso.org/standard/51684.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 15504-10:2011,https://www.iso.org/standard/54537.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15909-1:2004,https://www.iso.org/standard/38225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15909-1:2004/Amd 1:2010,https://www.iso.org/standard/52070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 15909-1,https://www.iso.org/standard/67235.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15909-2:2011,https://www.iso.org/standard/43538.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15909-2:2011/Cor 1:2013,https://www.iso.org/standard/62800.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 15939:2017,https://www.iso.org/standard/71197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 15940:2013,https://www.iso.org/standard/60100.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 16085:2006,https://www.iso.org/standard/40723.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 16326:2009,https://www.iso.org/standard/41977.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 16350:2015,https://www.iso.org/standard/57922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 17998:2012,https://www.iso.org/standard/61240.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 18018:2010,https://www.iso.org/standard/51042.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19500-1:2012,https://www.iso.org/standard/53349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19500-2:2012,https://www.iso.org/standard/53348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19500-3:2012,https://www.iso.org/standard/53351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19501:2005,https://www.iso.org/standard/32620.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19506:2012,https://www.iso.org/standard/32625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19513:2017,https://www.iso.org/standard/65355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 19678:2015,https://www.iso.org/standard/65998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 19759:2015,https://www.iso.org/standard/67604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19761:2011,https://www.iso.org/standard/54849.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19770-1:2017,https://www.iso.org/standard/68531.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19770-2:2015,https://www.iso.org/standard/65666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19770-3:2016,https://www.iso.org/standard/52293.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19770-4:2017,https://www.iso.org/standard/68431.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19770-5:2015,https://www.iso.org/standard/68291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 19770-8,https://www.iso.org/standard/72588.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 19793:2015,https://www.iso.org/standard/68641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 20246:2017,https://www.iso.org/standard/67407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 20741:2017,https://www.iso.org/standard/68955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 20926:2009,https://www.iso.org/standard/51717.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 20968:2002,https://www.iso.org/standard/35603.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 21839,https://www.iso.org/standard/71955.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 21841,https://www.iso.org/standard/71957.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 23026:2015,https://www.iso.org/standard/62440.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 23360-1:2006,https://www.iso.org/standard/43781.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 23360-2:2006,https://www.iso.org/standard/43782.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 23360-3:2006,https://www.iso.org/standard/43783.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 23360-4:2006,https://www.iso.org/standard/43784.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 23360-5:2006,https://www.iso.org/standard/43785.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 23360-6:2006,https://www.iso.org/standard/43786.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 23360-7:2006,https://www.iso.org/standard/43787.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 23360-8:2006,https://www.iso.org/standard/43788.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 22,https://www.iso.org/contents/data/committee/04/52/45202/x/catalogue/ -ISO/IEC 24570:2018,https://www.iso.org/standard/72505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 24744:2014,https://www.iso.org/standard/62644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 24748-1:2016,https://www.iso.org/standard/69655.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE FDIS 24748-1,https://www.iso.org/standard/72896.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 24748-2:2011,https://www.iso.org/standard/54994.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE FDIS 24748-2,https://www.iso.org/standard/70816.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 24748-3:2011,https://www.iso.org/standard/54995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 24748-4:2016,https://www.iso.org/standard/56887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 24748-5:2017,https://www.iso.org/standard/60062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 24748-6:2016,https://www.iso.org/standard/66433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 24765:2017,https://www.iso.org/standard/71952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 24766:2009,https://www.iso.org/standard/51041.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 24773:2008,https://www.iso.org/standard/41543.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC DIS 24773-1,https://www.iso.org/standard/69724.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 24774:2010,https://www.iso.org/standard/53815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 25000:2014,https://www.iso.org/standard/64764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25001:2014,https://www.iso.org/standard/64787.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25010:2011,https://www.iso.org/standard/35733.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 25011:2017,https://www.iso.org/standard/35735.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25012:2008,https://www.iso.org/standard/35736.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25020:2007,https://www.iso.org/standard/35744.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 25020,https://www.iso.org/standard/72117.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25021:2012,https://www.iso.org/standard/55477.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25022:2016,https://www.iso.org/standard/35746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25023:2016,https://www.iso.org/standard/35747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25024:2015,https://www.iso.org/standard/35749.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25030:2007,https://www.iso.org/standard/35755.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 25030,https://www.iso.org/standard/72116.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25040:2011,https://www.iso.org/standard/35765.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25041:2012,https://www.iso.org/standard/35766.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25045:2010,https://www.iso.org/standard/35770.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25051:2014,https://www.iso.org/standard/61579.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 25060:2010,https://www.iso.org/standard/35786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25062:2006,https://www.iso.org/standard/43046.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25063:2014,https://www.iso.org/standard/35789.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 25064:2013,https://www.iso.org/standard/35790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/CD 25065,https://www.iso.org/standard/72189.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/IEC 25066:2016,https://www.iso.org/standard/63831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 26511:2011,https://www.iso.org/standard/43070.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE FDIS 26511,https://www.iso.org/standard/70879.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 26512:2011,https://www.iso.org/standard/43071.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 26513:2017,https://www.iso.org/standard/67417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 26514:2008,https://www.iso.org/standard/43073.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 26515:2011,https://www.iso.org/standard/43074.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE DIS 26515,https://www.iso.org/standard/70880.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 26531:2015,https://www.iso.org/standard/43090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 26550:2015,https://www.iso.org/standard/69529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 26551:2016,https://www.iso.org/standard/69530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 26552,https://www.iso.org/standard/43111.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC DIS 26553,https://www.iso.org/standard/43112.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC DIS 26554,https://www.iso.org/standard/43113.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 26555:2015,https://www.iso.org/standard/69531.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC DIS 26556,https://www.iso.org/standard/43115.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 26557:2016,https://www.iso.org/standard/43116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 26558:2017,https://www.iso.org/standard/43117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 26559:2017,https://www.iso.org/standard/43118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC CD 26560,https://www.iso.org/standard/43119.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-1:2016,https://www.iso.org/standard/62711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29110-2-1:2015,https://www.iso.org/standard/62712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-2-2:2016,https://www.iso.org/standard/64779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC PDTR 29110-3-1,https://www.iso.org/standard/71951.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-3-1:2015,https://www.iso.org/standard/62713.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC PRF 29110-3-2,https://www.iso.org/standard/62732.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29110-3-3:2016,https://www.iso.org/standard/64781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-3-4:2015,https://www.iso.org/standard/64782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29110-4-1:2011,https://www.iso.org/standard/51154.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC FDIS 29110-4-1,https://www.iso.org/standard/67223.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC DIS 29110-4-3,https://www.iso.org/standard/69048.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-5-3:2018,https://www.iso.org/standard/69049.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-5-1-1:2012,https://www.iso.org/standard/60389.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-5-1-2:2011,https://www.iso.org/standard/51153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29110-5-1-3:2017,https://www.iso.org/standard/69603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC PRF TR 29110-5-1-4,https://www.iso.org/standard/72898.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-5-2-1:2016,https://www.iso.org/standard/62741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-5-6-1:2015,https://www.iso.org/standard/66342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29110-5-6-2:2014,https://www.iso.org/standard/63371.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 29119-1:2013,https://www.iso.org/standard/45142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 29119-2:2013,https://www.iso.org/standard/56736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 29119-3:2013,https://www.iso.org/standard/56737.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 29119-4:2015,https://www.iso.org/standard/60245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 29119-5:2016,https://www.iso.org/standard/62821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 29148:2011,https://www.iso.org/standard/45171.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE DIS 29148,https://www.iso.org/standard/72089.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 29154:2013,https://www.iso.org/standard/45177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29155-1:2017,https://www.iso.org/standard/74062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29155-2:2013,https://www.iso.org/standard/60190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29155-3:2015,https://www.iso.org/standard/63699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29155-4:2016,https://www.iso.org/standard/63700.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29168-1:2011,https://www.iso.org/standard/45247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 29168-2:2011,https://www.iso.org/standard/56543.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 29169:2016,https://www.iso.org/standard/45248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 29881:2010,https://www.iso.org/standard/56418.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TS 30103:2015,https://www.iso.org/standard/53223.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 30121:2015,https://www.iso.org/standard/53241.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 40,https://www.iso.org/contents/data/committee/50/13/5013818/x/catalogue/ -ISO/IEC 30130:2016,https://www.iso.org/standard/64901.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 31320-1:2012,https://www.iso.org/standard/60615.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 31320-2:2012,https://www.iso.org/standard/60614.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 33001:2015,https://www.iso.org/standard/54175.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 33002:2015,https://www.iso.org/standard/54176.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 33003:2015,https://www.iso.org/standard/54177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 33004:2015,https://www.iso.org/standard/54178.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 33014:2013,https://www.iso.org/standard/54186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 33020:2015,https://www.iso.org/standard/54195.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 33030:2017,https://www.iso.org/standard/55121.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 33052:2016,https://www.iso.org/standard/55142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 33063:2015,https://www.iso.org/standard/55154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 33072:2016,https://www.iso.org/standard/70803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TS 33073:2017,https://www.iso.org/standard/55164.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 40210:2011,https://www.iso.org/standard/58335.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 40220:2011,https://www.iso.org/standard/58345.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 40230:2011,https://www.iso.org/standard/58355.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 40240:2011,https://www.iso.org/standard/58365.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 40250:2011,https://www.iso.org/standard/58375.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 40260:2011,https://www.iso.org/standard/58385.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 40270:2011,https://www.iso.org/standard/58395.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 40280:2011,https://www.iso.org/standard/58405.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 40500:2012,https://www.iso.org/standard/58625.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC/IEEE DIS 41062,https://www.iso.org/standard/75341.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE 42010:2011,https://www.iso.org/standard/50508.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE DIS 42020,https://www.iso.org/standard/68982.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC/IEEE DIS 42030,https://www.iso.org/standard/73436.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 90003:2014,https://www.iso.org/standard/66240.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC DIS 90003,https://www.iso.org/standard/74348.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 90005:2008,https://www.iso.org/standard/41553.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC 7498-1:1994,https://www.iso.org/standard/20269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 7498-2:1989,https://www.iso.org/standard/14256.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 7498-3:1997,https://www.iso.org/standard/25022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8807:1989,https://www.iso.org/standard/16258.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/TR 9007:1987,https://www.iso.org/standard/16549.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9646-1:1994,https://www.iso.org/standard/17473.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9646-2:1994,https://www.iso.org/standard/17476.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9646-3:1998,https://www.iso.org/standard/30621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9646-4:1994,https://www.iso.org/standard/17480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9646-5:1994,https://www.iso.org/standard/17483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9646-6:1994,https://www.iso.org/standard/17485.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9646-7:1995,https://www.iso.org/standard/3084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9646-7:1995/Cor 1:1997,https://www.iso.org/standard/28623.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9834-1:2012,https://www.iso.org/standard/58055.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9834-3:2008,https://www.iso.org/standard/53414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9834-6:2005,https://www.iso.org/standard/40287.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9834-7:2008,https://www.iso.org/standard/53415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9834-8:2014,https://www.iso.org/standard/62795.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9834-9:2008,https://www.iso.org/standard/51606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10181-1:1996,https://www.iso.org/standard/24404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10181-2:1996,https://www.iso.org/standard/18198.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10181-3:1996,https://www.iso.org/standard/18199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10181-4:1997,https://www.iso.org/standard/23615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10181-5:1996,https://www.iso.org/standard/24329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10181-6:1996,https://www.iso.org/standard/24330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10181-7:1996,https://www.iso.org/standard/18200.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10731:1994,https://www.iso.org/standard/18824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10745:1995,https://www.iso.org/standard/18835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11586-1:1996,https://www.iso.org/standard/22794.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11586-2:1996,https://www.iso.org/standard/22795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11586-3:1996,https://www.iso.org/standard/22796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11586-4:1996,https://www.iso.org/standard/22797.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11586-5:1997,https://www.iso.org/standard/24385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11586-6:1997,https://www.iso.org/standard/24386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13236:1998,https://www.iso.org/standard/27993.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14765:1997,https://www.iso.org/standard/25501.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14766:1997,https://www.iso.org/standard/25502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 22536:2013,https://www.iso.org/standard/60221.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 10000-1:1998,https://www.iso.org/standard/30726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 7,https://www.iso.org/contents/data/committee/04/50/45086/x/catalogue/ -ISO/IEC TR 10000-2:1998,https://www.iso.org/standard/30728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 10000-3:1998,https://www.iso.org/standard/30727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 17203:2017,https://www.iso.org/standard/72081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 17998:2012,https://www.iso.org/standard/61240.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 19831:2015,https://www.iso.org/standard/66296.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29361:2008,https://www.iso.org/standard/45422.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29362:2008,https://www.iso.org/standard/45423.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29363:2008,https://www.iso.org/standard/45424.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 2110:1989,https://www.iso.org/standard/6901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 2110:1989/Amd 1:1991,https://www.iso.org/standard/6902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 2593:2000,https://www.iso.org/standard/34734.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 4902:1989,https://www.iso.org/standard/10921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 4903:1989,https://www.iso.org/standard/10923.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 7480:1991,https://www.iso.org/standard/14221.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8480:1995,https://www.iso.org/standard/24074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8481:1996,https://www.iso.org/standard/26137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8482:1993,https://www.iso.org/standard/20954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8877:1992,https://www.iso.org/standard/21311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 9160:1988,https://www.iso.org/standard/16757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 9543:1989,https://www.iso.org/standard/17288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9549:1990,https://www.iso.org/standard/17295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 9578:1990,https://www.iso.org/standard/17343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10022:1996,https://www.iso.org/standard/24898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10173:1998,https://www.iso.org/standard/29512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11569:1993,https://www.iso.org/standard/20895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13575:1995,https://www.iso.org/standard/22290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13642:1999,https://www.iso.org/standard/33022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 15294:2000,https://www.iso.org/standard/27172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 16353:2011,https://www.iso.org/standard/56428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17982:2012,https://www.iso.org/standard/61206.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 18057:2004,https://www.iso.org/standard/38452.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 18092:2013,https://www.iso.org/standard/56692.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 18092:2013/Cor 1:2015,https://www.iso.org/standard/67864.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 19369:2014,https://www.iso.org/standard/64721.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 20002:2012,https://www.iso.org/standard/50950.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 22512:2017,https://www.iso.org/standard/73366.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 23917:2005,https://www.iso.org/standard/41928.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 28361:2007,https://www.iso.org/standard/44659.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 1155:1978,https://www.iso.org/standard/5723.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 1177:1985,https://www.iso.org/standard/5762.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 1745:1975,https://www.iso.org/standard/6365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 2628:1973,https://www.iso.org/standard/7605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 2629:1973,https://www.iso.org/standard/7606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 7478:1987,https://www.iso.org/standard/14216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 7478:1987/Cor 1:1989,https://www.iso.org/standard/14218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 7776:1995,https://www.iso.org/standard/22172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 7776:1995/Amd 1:1996,https://www.iso.org/standard/23304.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8882-1:1996,https://www.iso.org/standard/24900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8886:1996,https://www.iso.org/standard/26140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 10171:2000,https://www.iso.org/standard/34392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10742:1994,https://www.iso.org/standard/20897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10742:1994/Amd 1:1995,https://www.iso.org/standard/24081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10742:1994/Amd 1:1995/Cor 1:1999,https://www.iso.org/standard/32026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10742:1994/Amd 2:1996,https://www.iso.org/standard/26244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10742:1994/Amd 3:1996,https://www.iso.org/standard/27238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11575:1995,https://www.iso.org/standard/20916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13239:2002,https://www.iso.org/standard/37010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17417:2011,https://www.iso.org/standard/59692.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 21481:2012,https://www.iso.org/standard/56855.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8208:2000,https://www.iso.org/standard/33080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8348:2002,https://www.iso.org/standard/35872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8473-1:1998,https://www.iso.org/standard/30931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8473-2:1996,https://www.iso.org/standard/23306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8473-3:1995,https://www.iso.org/standard/23305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8473-4:1995,https://www.iso.org/standard/23335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8473-5:1997,https://www.iso.org/standard/20905.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 8648:1988,https://www.iso.org/standard/16011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 8648:1988/Cor 1:1991,https://www.iso.org/standard/16012.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8878:1992,https://www.iso.org/standard/16385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8878:1992/Cor 1:1993,https://www.iso.org/standard/22300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8878:1992/Cor 2:1993,https://www.iso.org/standard/22685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8878:1992/Cor 3:1996,https://www.iso.org/standard/26240.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8881:1989,https://www.iso.org/standard/16394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8881:1989/Cor 1:1991,https://www.iso.org/standard/16395.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8882-1:1996,https://www.iso.org/standard/24900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8882-2:2000,https://www.iso.org/standard/29518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8882-3:2000,https://www.iso.org/standard/29517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 9542:1988,https://www.iso.org/standard/17285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 9542:1988/Amd 1:1999,https://www.iso.org/standard/30377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9574:1992,https://www.iso.org/standard/17337.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 9575:1995,https://www.iso.org/standard/25981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 9577:1999,https://www.iso.org/standard/31053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10028:1993,https://www.iso.org/standard/17987.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10030:1995,https://www.iso.org/standard/23965.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10177:1993,https://www.iso.org/standard/18194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10588:1993,https://www.iso.org/standard/18672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10589:2002,https://www.iso.org/standard/30932.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10732:1993,https://www.iso.org/standard/18825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10733:1998,https://www.iso.org/standard/30999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10747:1994,https://www.iso.org/standard/21417.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10747:1994/Amd 1:1996,https://www.iso.org/standard/26245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10747:1994/Cor 1:1996,https://www.iso.org/standard/27938.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11577:1995,https://www.iso.org/standard/22084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14700:1997,https://www.iso.org/standard/25267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 18051:2012,https://www.iso.org/standard/61208.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 18052:2012,https://www.iso.org/standard/61209.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 18053:2000,https://www.iso.org/standard/31680.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 18056:2012,https://www.iso.org/standard/61210.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 18372:2004,https://www.iso.org/standard/38668.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 22767:2005,https://www.iso.org/standard/41118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-1:2012,https://www.iso.org/standard/57480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-2:2014,https://www.iso.org/standard/57484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-3:2013,https://www.iso.org/standard/57485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-4:2013,https://www.iso.org/standard/57486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-5:2014,https://www.iso.org/standard/57487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-6:2013,https://www.iso.org/standard/57488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-7:2013,https://www.iso.org/standard/57489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-8:2017,https://www.iso.org/standard/66799.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 29181-9:2017,https://www.iso.org/standard/66800.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8072:1996,https://www.iso.org/standard/27497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8073:1997,https://www.iso.org/standard/24077.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8073:1997/Amd 1:1998,https://www.iso.org/standard/28666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8602:1995,https://www.iso.org/standard/15907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8602:1995/Amd 1:1996,https://www.iso.org/standard/24883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10736:1995,https://www.iso.org/standard/18828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10737:1998,https://www.iso.org/standard/31000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11570:1992,https://www.iso.org/standard/20325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13252:1999,https://www.iso.org/standard/21487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 13594:1995,https://www.iso.org/standard/23330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14476-1:2002,https://www.iso.org/standard/35679.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14476-2:2003,https://www.iso.org/standard/35673.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14476-3:2008,https://www.iso.org/standard/43779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14476-4:2010,https://www.iso.org/standard/54153.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14476-5:2008,https://www.iso.org/standard/43780.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14476-6:2010,https://www.iso.org/standard/54154.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14699:1997,https://www.iso.org/standard/25266.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8326:1996,https://www.iso.org/standard/27726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8326:1996/Amd 1:1998,https://www.iso.org/standard/27870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8326:1996/Amd 2:1998,https://www.iso.org/standard/30298.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8326:1996/Cor 1:2002,https://www.iso.org/standard/36817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8327-1:1996,https://www.iso.org/standard/27720.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8327-1:1996/Amd 1:1998,https://www.iso.org/standard/27869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8327-1:1996/Amd 2:1998,https://www.iso.org/standard/30293.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8327-1:1996/Cor 1:2002,https://www.iso.org/standard/36779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8327-2:1996,https://www.iso.org/standard/15470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9548-1:1996,https://www.iso.org/standard/17293.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9548-1:1996/Amd 1:2000,https://www.iso.org/standard/32905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9548-2:1995,https://www.iso.org/standard/17294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 24792:2010,https://www.iso.org/standard/41562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8822:1994,https://www.iso.org/standard/24365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8822:1994/Amd 1:1998,https://www.iso.org/standard/27872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8822:1994/Amd 2:1998,https://www.iso.org/standard/30297.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8823-1:1994,https://www.iso.org/standard/24364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8823-1:1994/Amd 1:1998,https://www.iso.org/standard/27871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8823-1:1994/Amd 2:1998,https://www.iso.org/standard/30276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8823-2:1997,https://www.iso.org/standard/28972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8824-1:2015,https://www.iso.org/standard/68350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8824-1:2015/Cor 1:2017,https://www.iso.org/standard/73293.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8824-2:2015,https://www.iso.org/standard/68351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8824-3:2015,https://www.iso.org/standard/68352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8824-3:2015/CD Cor 1,https://www.iso.org/standard/73569.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8824-4:2015,https://www.iso.org/standard/68353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-1:2015,https://www.iso.org/standard/68345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-2:2015,https://www.iso.org/standard/68346.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-2:2015/Cor 1:2017,https://www.iso.org/standard/71236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-3:2015,https://www.iso.org/standard/68347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-4:2015,https://www.iso.org/standard/68348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-4:2015/CD Cor 1,https://www.iso.org/standard/73971.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-5:2015,https://www.iso.org/standard/68349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-6:2015,https://www.iso.org/standard/69980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-7:2015,https://www.iso.org/standard/69981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8825-7:2015/Cor 2:2017,https://www.iso.org/standard/74856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC CD 8825-8,https://www.iso.org/standard/75334.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9576-1:1995,https://www.iso.org/standard/26747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9576-1:1995/Amd 1:2000,https://www.iso.org/standard/32906.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9576-2:1995,https://www.iso.org/standard/17341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 24824-1:2007,https://www.iso.org/standard/41327.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 24824-1:2007/Cor 1:2012,https://www.iso.org/standard/60008.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 24824-2:2006,https://www.iso.org/standard/41328.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 24824-3:2008,https://www.iso.org/standard/44076.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 25437:2012,https://www.iso.org/standard/61207.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 7498-4:1989,https://www.iso.org/standard/14258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-1:1988,https://www.iso.org/standard/15836.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-1:1988/Amd 1:1992,https://www.iso.org/standard/15837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-1:1988/Amd 2:1993,https://www.iso.org/standard/15838.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-1:1988/Cor 1:1991,https://www.iso.org/standard/15840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-2:1988,https://www.iso.org/standard/15841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-2:1988/Amd 1:1992,https://www.iso.org/standard/15842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-2:1988/Amd 2:1993,https://www.iso.org/standard/15843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-2:1988/Cor 1:1991,https://www.iso.org/standard/15845.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-3:1988,https://www.iso.org/standard/15846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-3:1988/Amd 1:1992,https://www.iso.org/standard/15847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-3:1988/Amd 2:1993,https://www.iso.org/standard/15848.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-3:1988/Cor 1:1991,https://www.iso.org/standard/15850.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-3:1988/Cor 2:1992,https://www.iso.org/standard/21218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-4:1988,https://www.iso.org/standard/15851.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-4:1988/Amd 1:1992,https://www.iso.org/standard/15852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-4:1988/Amd 2:1993,https://www.iso.org/standard/15853.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-4:1988/Amd 4:1992,https://www.iso.org/standard/21230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-4:1988/Amd 4:1992/Cor 1:1995,https://www.iso.org/standard/25480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8571-4:1988/Cor 1:1992,https://www.iso.org/standard/15855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8571-5:1990,https://www.iso.org/standard/15856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8650-2:1997,https://www.iso.org/standard/28971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9040:1997,https://www.iso.org/standard/28785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9041-1:1997,https://www.iso.org/standard/28786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9041-2:1997,https://www.iso.org/standard/28787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9066-3:1996,https://www.iso.org/standard/25350.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9072-3:1996,https://www.iso.org/standard/25351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9545:1994,https://www.iso.org/standard/17291.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9579:2000,https://www.iso.org/standard/30615.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 9594-1:2017,https://www.iso.org/standard/72550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-2:2017,https://www.iso.org/standard/72551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-3:2017,https://www.iso.org/standard/72552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-4:2017,https://www.iso.org/standard/72553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-5:2017,https://www.iso.org/standard/72554.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-6:2014/Cor 1:2015,https://www.iso.org/standard/66646.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-6:2017,https://www.iso.org/standard/72555.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-7:2017,https://www.iso.org/standard/72556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-8:2014/Cor 1:2015,https://www.iso.org/standard/66645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-8:2014/Cor 2:2016,https://www.iso.org/standard/70463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-8:2014/Cor 3:2016,https://www.iso.org/standard/71353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-8:2017,https://www.iso.org/standard/72557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9594-9:2017,https://www.iso.org/standard/72558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 9595:1998,https://www.iso.org/standard/30585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9596-1:1998,https://www.iso.org/standard/29698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9596-1:1998/Cor 1:1999,https://www.iso.org/standard/32515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9596-1:1998/Cor 2:2002,https://www.iso.org/standard/37883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9596-2:1993,https://www.iso.org/standard/17408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9596-2:1993/Cor 1:1993,https://www.iso.org/standard/22306.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9596-2:1993/Cor 2:1996,https://www.iso.org/standard/27119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9596-2:1993/Cor 3:1998,https://www.iso.org/standard/31249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9804:1998,https://www.iso.org/standard/27616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9805-1:1998,https://www.iso.org/standard/27617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9805-2:1996,https://www.iso.org/standard/17677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9834-2:1993,https://www.iso.org/standard/17706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9834-4:1991,https://www.iso.org/standard/17709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9834-5:1991,https://www.iso.org/standard/17711.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10026-1:1998,https://www.iso.org/standard/27614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10026-2:1998,https://www.iso.org/standard/27615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10026-3:1998,https://www.iso.org/standard/27705.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10026-4:1995,https://www.iso.org/standard/17982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10026-5:1998,https://www.iso.org/standard/17983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10026-6:1995,https://www.iso.org/standard/17984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 10032:2003,https://www.iso.org/standard/38607.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 10035-1:1995/Amd 1:1997,https://www.iso.org/standard/27866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10035-1:1995/Amd 1:1997/Cor 1:1999,https://www.iso.org/standard/33379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10035-2:1995,https://www.iso.org/standard/20192.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10040:1998,https://www.iso.org/standard/24406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-1:1993,https://www.iso.org/standard/18158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-1:1993/Amd 1:1996,https://www.iso.org/standard/23124.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-1:1993/Amd 1:1996/Cor 1:1996,https://www.iso.org/standard/28566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-2:1993,https://www.iso.org/standard/18159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-2:1993/Amd 1:1996,https://www.iso.org/standard/23125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-2:1993/Amd 1:1996/Cor 1:1996,https://www.iso.org/standard/28572.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-2:1993/Amd 2:2002,https://www.iso.org/standard/35434.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-2:1993/Cor 1:1996,https://www.iso.org/standard/25716.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-2:1993/Cor 2:2002,https://www.iso.org/standard/36818.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-3:1993,https://www.iso.org/standard/18160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-3:1993/Amd 1:1996,https://www.iso.org/standard/23126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-3:1993/Amd 1:1996/Cor 1:1996,https://www.iso.org/standard/28425.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-4:1992,https://www.iso.org/standard/18161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-4:1992/Amd 1:1995,https://www.iso.org/standard/23127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-4:1992/Amd 1:1995/Cor 1:1996,https://www.iso.org/standard/28567.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-4:1992/Cor 1:1994,https://www.iso.org/standard/23908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-4:1992/Cor 2:1999,https://www.iso.org/standard/32512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-5:1993,https://www.iso.org/standard/18162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-5:1993/Amd 1:1995,https://www.iso.org/standard/23128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-5:1993/Amd 1:1995/Cor 1:1996,https://www.iso.org/standard/28568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-5:1993/Cor 1:1994,https://www.iso.org/standard/23085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-5:1993/Cor 2:1999,https://www.iso.org/standard/32508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-6:1993,https://www.iso.org/standard/18163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-6:1993/Amd 1:1996,https://www.iso.org/standard/23129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-6:1993/Amd 1:1996/Cor 1:1996,https://www.iso.org/standard/28578.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-6:1993/Cor 1:2003,https://www.iso.org/standard/37888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-7:1992,https://www.iso.org/standard/18164.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-7:1992/Amd 1:1995,https://www.iso.org/standard/23130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-7:1992/Amd 1:1995/Cor 1:1996,https://www.iso.org/standard/28569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-8:1993,https://www.iso.org/standard/18165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-8:1993/Cor 1:1995,https://www.iso.org/standard/24492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-8:1993/Cor 2:1996,https://www.iso.org/standard/27120.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-8:1993/Cor 3:1999,https://www.iso.org/standard/31194.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-9:1995,https://www.iso.org/standard/18166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-9:1995/Cor 1:1996,https://www.iso.org/standard/28570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-9:1995/Cor 2:1999,https://www.iso.org/standard/31195.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-9:1995/Cor 3:2002,https://www.iso.org/standard/36780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-10:1995,https://www.iso.org/standard/18167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-10:1995/Amd 1:1998,https://www.iso.org/standard/24409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-10:1995/Cor 1:1999,https://www.iso.org/standard/31196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-10:1995/Cor 2:2002,https://www.iso.org/standard/36783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-11:1994,https://www.iso.org/standard/18168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-11:1994/Amd 1:1998,https://www.iso.org/standard/24345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-11:1994/Cor 1:1999,https://www.iso.org/standard/31197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-12:1994,https://www.iso.org/standard/18169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-12:1994/Cor 1:1998,https://www.iso.org/standard/30573.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-12:1994/Cor 2:1999,https://www.iso.org/standard/31198.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-12:1994/Cor 3:2002,https://www.iso.org/standard/36778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-13:1995,https://www.iso.org/standard/18170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-13:1995/Amd 1:1997,https://www.iso.org/standard/24347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-13:1995/Cor 1:1999,https://www.iso.org/standard/31199.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-13:1995/Cor 2:2002,https://www.iso.org/standard/36819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-14:1996,https://www.iso.org/standard/20931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-14:1996/Cor 1:1999,https://www.iso.org/standard/31200.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-14:1996/Cor 2:2002,https://www.iso.org/standard/36781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-14:1996/Cor 3:2002,https://www.iso.org/standard/36784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-15:2002,https://www.iso.org/standard/34966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-16:1997,https://www.iso.org/standard/24407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-16:1997/Amd 1:1998,https://www.iso.org/standard/29010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-16:1997/Cor 1:2002,https://www.iso.org/standard/36661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-17:1996,https://www.iso.org/standard/24352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-17:1996/Cor 1:1999,https://www.iso.org/standard/31202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-17:1996/Cor 2:2002,https://www.iso.org/standard/36669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-18:1997,https://www.iso.org/standard/2341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-18:1997/Cor 1:1999,https://www.iso.org/standard/31203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-18:1997/Cor 2:2002,https://www.iso.org/standard/36776.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-18:1997/Cor 3:2002,https://www.iso.org/standard/36777.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-19:1998,https://www.iso.org/standard/25026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-20:1999,https://www.iso.org/standard/25837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-20:1999/Cor 1:2002,https://www.iso.org/standard/36670.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-21:1998,https://www.iso.org/standard/27767.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10164-22:2000,https://www.iso.org/standard/28946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-1:1993,https://www.iso.org/standard/18171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-1:1993/Amd 1:1996,https://www.iso.org/standard/24162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-1:1993/Cor 1:1994,https://www.iso.org/standard/23529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-2:1992,https://www.iso.org/standard/18172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-2:1992/Cor 1:1994,https://www.iso.org/standard/23084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-2:1992/Cor 2:1996,https://www.iso.org/standard/28560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-2:1992/Cor 3:1999,https://www.iso.org/standard/31192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-4:1992,https://www.iso.org/standard/18174.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-4:1992/Amd 1:1996,https://www.iso.org/standard/24161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-4:1992/Amd 2:1998,https://www.iso.org/standard/26201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-4:1992/Amd 3:1998,https://www.iso.org/standard/27744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-4:1992/Cor 1:1996,https://www.iso.org/standard/28558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-4:1992/Cor 2:2003,https://www.iso.org/standard/37887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-5:1994,https://www.iso.org/standard/18175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-5:1994/Cor 1:1998,https://www.iso.org/standard/31248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-5:1994/Cor 2:2002,https://www.iso.org/standard/36782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-6:1997,https://www.iso.org/standard/26273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-7:1996,https://www.iso.org/standard/24160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-8:2000,https://www.iso.org/standard/32894.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10165-9:2000,https://www.iso.org/standard/32895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11578:1996,https://www.iso.org/standard/2229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11587:1996,https://www.iso.org/standard/22054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13714:1995,https://www.iso.org/standard/22721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 15953:1999,https://www.iso.org/standard/28067.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 15954:1999,https://www.iso.org/standard/16022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 15955:1999,https://www.iso.org/standard/27991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 16512-1:2016,https://www.iso.org/standard/68931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 16512-2:2016,https://www.iso.org/standard/68932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 16513:2005,https://www.iso.org/standard/37965.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17811-1:2014,https://www.iso.org/standard/62854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17811-2:2015,https://www.iso.org/standard/62855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17811-3:2014,https://www.iso.org/standard/62856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 19464:2014,https://www.iso.org/standard/64955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20802-1:2016,https://www.iso.org/standard/69208.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20802-2:2016,https://www.iso.org/standard/69209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20922:2016,https://www.iso.org/standard/69466.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 22534:2005,https://www.iso.org/standard/40999.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 24793-1:2010,https://www.iso.org/standard/46222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 24793-2:2010,https://www.iso.org/standard/46223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 8802-1:2001,https://www.iso.org/standard/34385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8802-2:1998,https://www.iso.org/standard/30174.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8802-2:1998/Cor 1:2000,https://www.iso.org/standard/34553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017,https://www.iso.org/standard/72048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/Amd 1:2017,https://www.iso.org/standard/72133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/Amd 2:2017,https://www.iso.org/standard/72666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/Amd 3:2017,https://www.iso.org/standard/72667.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/Amd 4:2017,https://www.iso.org/standard/72668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/Amd 5:2017,https://www.iso.org/standard/72973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/Amd 7:2017,https://www.iso.org/standard/72975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/CD Cor 1,https://www.iso.org/standard/74489.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/DAmd 6,https://www.iso.org/standard/73369.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/DAmd 8,https://www.iso.org/standard/74413.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3:2017/DAmd 9,https://www.iso.org/standard/74414.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8802-5:1998,https://www.iso.org/standard/29923.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 8802-5:1998/Amd 1:1998,https://www.iso.org/standard/30659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-11/DAmd 1,https://www.iso.org/standard/73368.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-11/DAmd 2,https://www.iso.org/standard/74310.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-11:2012,https://www.iso.org/standard/62000.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-11:2012/Amd 1:2014,https://www.iso.org/standard/64600.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-11:2012/Amd 2:2014,https://www.iso.org/standard/64601.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-11:2012/Amd 3:2014,https://www.iso.org/standard/64876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-11:2012/Amd 4:2015,https://www.iso.org/standard/68412.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-11:2012/Amd 5:2015,https://www.iso.org/standard/68413.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE FDIS 8802-11,https://www.iso.org/standard/73367.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1Q:2016,https://www.iso.org/standard/69464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1Q:2016/Amd 1:2017,https://www.iso.org/standard/71548.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1Q:2016/Amd 2:2018,https://www.iso.org/standard/71708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1Q:2016/Amd 3:2017,https://www.iso.org/standard/71709.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1Q:2016/Amd 4:2017,https://www.iso.org/standard/72885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1Q:2016/Amd 5:2017,https://www.iso.org/standard/72886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1Q:2016/Cor 1:2017,https://www.iso.org/standard/73498.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1Q:2016/DAmd 6,https://www.iso.org/standard/74777.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE FDIS 8802-21,https://www.iso.org/standard/74282.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-22:2015,https://www.iso.org/standard/67402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-22:2015/Amd 1:2017,https://www.iso.org/standard/70891.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-22:2015/Amd 2:2017,https://www.iso.org/standard/70892.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-A:2015,https://www.iso.org/standard/68839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-A:2015/FDAmd 1,https://www.iso.org/standard/74406.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1X:2013,https://www.iso.org/standard/63254.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1X:2013/Amd 1:2016,https://www.iso.org/standard/69350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AB:2017,https://www.iso.org/standard/72047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE FDIS 8802-1AC,https://www.iso.org/standard/74495.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AE:2013,https://www.iso.org/standard/63255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AE:2013/Amd 1:2015,https://www.iso.org/standard/67004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AE:2013/Amd 2:2015,https://www.iso.org/standard/67005.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AE:2013/DAmd 3,https://www.iso.org/standard/74283.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AR:2014,https://www.iso.org/standard/64109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AS:2014,https://www.iso.org/standard/64110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AX:2016,https://www.iso.org/standard/69145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1AX:2016/CD Cor 1,https://www.iso.org/standard/73718.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1BA:2016,https://www.iso.org/standard/70893.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-1BR:2016,https://www.iso.org/standard/70894.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-15-3:2017,https://www.iso.org/standard/72248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-15-4,https://www.iso.org/standard/73370.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-15-4:2010,https://www.iso.org/standard/56016.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-15-6:2017,https://www.iso.org/standard/72352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE FDIS 8802-21-1,https://www.iso.org/standard/74465.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 8802-3-1:2015,https://www.iso.org/standard/68307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 11579-1:1994/Cor 1:1996,https://www.iso.org/standard/27237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 11802-5:1997,https://www.iso.org/standard/29274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 12139-1:2009,https://www.iso.org/standard/51239.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 12139-1:2009/Cor 1:2010,https://www.iso.org/standard/55770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 12860:2009,https://www.iso.org/standard/52062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 12861:2009,https://www.iso.org/standard/52063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13156:2011,https://www.iso.org/standard/57954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13157-1:2014,https://www.iso.org/standard/64719.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13157-2:2016,https://www.iso.org/standard/69328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13157-3:2016,https://www.iso.org/standard/69342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13157-4:2016,https://www.iso.org/standard/69343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13157-5:2016,https://www.iso.org/standard/69344.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 13560:2009,https://www.iso.org/standard/53989.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15149:2011,https://www.iso.org/standard/55372.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15149-1:2014,https://www.iso.org/standard/62857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15149-2:2015,https://www.iso.org/standard/62858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15149-3:2016,https://www.iso.org/standard/62860.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15149-4:2016,https://www.iso.org/standard/62861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15802-1:1995,https://www.iso.org/standard/21507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 15802-3:1998,https://www.iso.org/standard/25021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 16166:2010,https://www.iso.org/standard/55753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 16167:2011,https://www.iso.org/standard/58051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 16317:2011,https://www.iso.org/standard/56161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 16504:2011,https://www.iso.org/standard/56895.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 17821:2015,https://www.iso.org/standard/60597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 18880:2015,https://www.iso.org/standard/67485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 18881:2016,https://www.iso.org/standard/69848.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 18882:2017,https://www.iso.org/standard/69893.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC/IEEE 18883:2016,https://www.iso.org/standard/69849.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 19637:2016,https://www.iso.org/standard/65576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 20005:2013,https://www.iso.org/standard/50952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC DIS 21228,https://www.iso.org/standard/70147.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 22425:2017,https://www.iso.org/standard/73166.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 22560:2017,https://www.iso.org/standard/73441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 23289:2002,https://www.iso.org/standard/36787.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 24767-1:2008,https://www.iso.org/standard/43880.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 24767-2:2009,https://www.iso.org/standard/43881.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24771:2014,https://www.iso.org/standard/60238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 26905:2006,https://www.iso.org/standard/43893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 26907:2009,https://www.iso.org/standard/53426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 26908:2009,https://www.iso.org/standard/53427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 26927:2011,https://www.iso.org/standard/58050.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 29145-1:2014,https://www.iso.org/standard/61372.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29145-2:2014,https://www.iso.org/standard/61373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29145-3:2014,https://www.iso.org/standard/61374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29157:2015,https://www.iso.org/standard/60239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 29180:2012,https://www.iso.org/standard/45259.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 29180:2012/Cor 1:2015,https://www.iso.org/standard/67863.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 29182-1:2013,https://www.iso.org/standard/45261.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 29182-2:2013,https://www.iso.org/standard/57091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 29182-3:2014,https://www.iso.org/standard/57092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 29182-4:2013,https://www.iso.org/standard/57094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 29182-5:2013,https://www.iso.org/standard/57095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 29182-6:2014,https://www.iso.org/standard/57096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 29182-7:2015,https://www.iso.org/standard/57097.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 30100-1:2016,https://www.iso.org/standard/69908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 30100-2:2016,https://www.iso.org/standard/68093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 30100-3:2016,https://www.iso.org/standard/56727.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 30101:2014,https://www.iso.org/standard/53221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 30128:2014,https://www.iso.org/standard/53248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC DIS 30140-1.3,https://www.iso.org/standard/53260.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 30140-2:2017,https://www.iso.org/standard/68446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC CD 30140-3,https://www.iso.org/standard/70767.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC CD 30140-4,https://www.iso.org/standard/70768.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO/IEC 7942-1:1994,https://www.iso.org/standard/14915.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 7942-2:1997,https://www.iso.org/standard/24746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 7942-3:1999,https://www.iso.org/standard/24747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 7942-4:1998,https://www.iso.org/standard/24748.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8632-1:1999,https://www.iso.org/standard/32378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8632-1:1999/Cor 1:2006,https://www.iso.org/standard/44114.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8632-1:1999/Cor 2:2007,https://www.iso.org/standard/50315.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8632-3:1999,https://www.iso.org/standard/32380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8632-4:1999,https://www.iso.org/standard/32381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO 8651-1:1988,https://www.iso.org/standard/16024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO 8651-2:1988,https://www.iso.org/standard/16025.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO 8651-3:1988,https://www.iso.org/standard/16026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8651-4:1995,https://www.iso.org/standard/23070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO 8805:1988,https://www.iso.org/standard/16253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 8806-4:1991,https://www.iso.org/standard/16257.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9592-1:1997,https://www.iso.org/standard/29417.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9592-2:1997,https://www.iso.org/standard/29419.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9592-3:1997,https://www.iso.org/standard/29421.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-1:1990,https://www.iso.org/standard/17366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-1:1990/Amd 1:1995,https://www.iso.org/standard/1911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-1:1990/Cor 1:1993,https://www.iso.org/standard/22441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-1:1990/Cor 2:1994,https://www.iso.org/standard/22878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-3:1990,https://www.iso.org/standard/17368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-3:1990/Amd 1:1994,https://www.iso.org/standard/21312.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-3:1990/Cor 1:1993,https://www.iso.org/standard/22442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-3:1990/Cor 2:1994,https://www.iso.org/standard/22879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-4:1991,https://www.iso.org/standard/17369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-4:1991/Amd 1:1994,https://www.iso.org/standard/21152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-4:1991/Amd 2:1998,https://www.iso.org/standard/27266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9593-4:1991/Cor 1:1994,https://www.iso.org/standard/22880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9636-1:1991,https://www.iso.org/standard/17450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9636-2:1991,https://www.iso.org/standard/17451.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9636-3:1991,https://www.iso.org/standard/17452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9636-4:1991,https://www.iso.org/standard/17453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9636-5:1991,https://www.iso.org/standard/17454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9636-6:1991,https://www.iso.org/standard/17455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9637-1:1994,https://www.iso.org/standard/17456.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9637-2:1992,https://www.iso.org/standard/17457.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9638-3:1994,https://www.iso.org/standard/17461.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 9973:2013,https://www.iso.org/standard/61820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 10641:1993,https://www.iso.org/standard/18736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 11072:1992,https://www.iso.org/standard/19059.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12087-1:1995,https://www.iso.org/standard/21133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12087-2:1994,https://www.iso.org/standard/21134.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12087-2:1994/Cor 1:1997,https://www.iso.org/standard/29136.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12087-3:1995,https://www.iso.org/standard/21135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12087-3:1995/Amd 1:1996,https://www.iso.org/standard/23350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12087-5:1998,https://www.iso.org/standard/27853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12087-5:1998/Cor 1:2001,https://www.iso.org/standard/35325.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12087-5:1998/Cor 2:2002,https://www.iso.org/standard/36869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12088-4:1995,https://www.iso.org/standard/23287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 12089:1997,https://www.iso.org/standard/24331.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14478-1:1998,https://www.iso.org/standard/21669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14478-2:1998,https://www.iso.org/standard/24444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14478-3:1998,https://www.iso.org/standard/24445.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14478-4:1998,https://www.iso.org/standard/24446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14772-1:1997,https://www.iso.org/standard/25508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14772-1:1997/Amd 1:2003,https://www.iso.org/standard/30998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 14772-2:2004,https://www.iso.org/standard/30893.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 15948:2004,https://www.iso.org/standard/29581.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18023-1:2006,https://www.iso.org/standard/38442.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18023-1:2006/Amd 1:2012,https://www.iso.org/standard/54584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18023-2:2006,https://www.iso.org/standard/39352.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18023-3:2006,https://www.iso.org/standard/39412.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18023-3:2006/Amd 1:2012,https://www.iso.org/standard/54586.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18024-4:2006,https://www.iso.org/standard/30809.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18024-4:2006/Amd 1:2012,https://www.iso.org/standard/54589.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18025:2014,https://www.iso.org/standard/60505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18026:2009,https://www.iso.org/standard/54166.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC CD 18038,https://www.iso.org/standard/70720.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC DIS 18039,https://www.iso.org/standard/30824.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC CD 18040,https://www.iso.org/standard/70721.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18041-4:2016,https://www.iso.org/standard/63738.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18042-4:2006,https://www.iso.org/standard/30827.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 18042-4:2006/Amd 1:2011,https://www.iso.org/standard/50947.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC DIS 18520,https://www.iso.org/standard/66281.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 19774:2006,https://www.iso.org/standard/33912.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC CD 19774-1,https://www.iso.org/standard/64788.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC CD 19774-2,https://www.iso.org/standard/64791.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 19775-1:2013,https://www.iso.org/standard/60760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 19775-2:2015,https://www.iso.org/standard/60500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 19776-1:2015,https://www.iso.org/standard/60502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 19776-2:2015,https://www.iso.org/standard/60503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 19776-3:2015,https://www.iso.org/standard/60504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 19777-1:2006,https://www.iso.org/standard/33915.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC CD 19777-1,https://www.iso.org/standard/67853.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -ISO/IEC 19777-2:2006,https://www.iso.org/standard/38020.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 24,https://www.iso.org/contents/data/committee/04/52/45252/x/catalogue/ -IEC 796-1:1990,https://www.iso.org/standard/5132.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -IEC 796-2:1990,https://www.iso.org/standard/5133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -IEC 796-3:1990,https://www.iso.org/standard/5134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -IEC 821:1991,https://www.iso.org/standard/5175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -IEC 822:1988,https://www.iso.org/standard/5177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -IEC 823:1990,https://www.iso.org/standard/5179.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -IEC 824:1988,https://www.iso.org/standard/19699.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 3792:1976,https://www.iso.org/standard/9324.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 6951:1986,https://www.iso.org/standard/13498.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 10859:1997,https://www.iso.org/standard/18891.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 10861:1994,https://www.iso.org/standard/18893.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11458:1993,https://www.iso.org/standard/19409.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11458:1993/Amd 1:2000,https://www.iso.org/standard/34530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 13213:1994,https://www.iso.org/standard/21416.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 13961:2000,https://www.iso.org/standard/23525.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14575:2000,https://www.iso.org/standard/24836.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14576:1999,https://www.iso.org/standard/24837.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15205:2000,https://www.iso.org/standard/26748.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15776:2001,https://www.iso.org/standard/28939.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC/IEEE 60559:2011,https://www.iso.org/standard/57469.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -IEC 948:1988,https://www.iso.org/standard/19697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 3791:1976,https://www.iso.org/standard/9323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 4882:1979,https://www.iso.org/standard/10875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 9241-1:1997,https://www.iso.org/standard/21922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-1:1997/Amd 1:2001,https://www.iso.org/standard/31246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-2:1992,https://www.iso.org/standard/16874.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-5:1998,https://www.iso.org/standard/16877.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-6:1999,https://www.iso.org/standard/16878.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-11,https://www.iso.org/standard/63500.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-11:1998,https://www.iso.org/standard/16883.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-13:1998,https://www.iso.org/standard/16885.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-14:1997,https://www.iso.org/standard/16886.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-15:1997,https://www.iso.org/standard/16887.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-16:1999,https://www.iso.org/standard/16888.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-20:2008,https://www.iso.org/standard/40727.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-100:2010,https://www.iso.org/standard/52712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-112:2017,https://www.iso.org/standard/64840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-125:2017,https://www.iso.org/standard/64839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-129:2010,https://www.iso.org/standard/50014.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-143:2012,https://www.iso.org/standard/53590.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-154:2013,https://www.iso.org/standard/52172.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-161:2016,https://www.iso.org/standard/60476.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-210:2010,https://www.iso.org/standard/52075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/FDIS 9241-220,https://www.iso.org/standard/63462.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-300:2008,https://www.iso.org/standard/40096.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-302:2008,https://www.iso.org/standard/40097.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-303:2011,https://www.iso.org/standard/57992.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-304:2008,https://www.iso.org/standard/40099.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-305:2008,https://www.iso.org/standard/40100.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-306:2008,https://www.iso.org/standard/40101.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/FDIS 9241-306,https://www.iso.org/standard/65063.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-307:2008,https://www.iso.org/standard/40102.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-308:2008,https://www.iso.org/standard/44843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-309:2008,https://www.iso.org/standard/51308.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-310:2010,https://www.iso.org/standard/54117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TR 9241-331:2012,https://www.iso.org/standard/57233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-333:2017,https://www.iso.org/standard/66004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-391:2016,https://www.iso.org/standard/56350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-392:2015,https://www.iso.org/standard/60317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-400:2007,https://www.iso.org/standard/38896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-410:2008,https://www.iso.org/standard/38899.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-410:2008/Amd 1:2012,https://www.iso.org/standard/54107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/TS 9241-411:2012,https://www.iso.org/standard/54106.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-420:2011,https://www.iso.org/standard/52938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/DIS 9241-500,https://www.iso.org/standard/72135.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-910:2011,https://www.iso.org/standard/51097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-920:2009,https://www.iso.org/standard/42904.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-940:2017,https://www.iso.org/standard/61362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 9241-960:2017,https://www.iso.org/standard/62535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/IEC 9995-1:2009,https://www.iso.org/standard/51645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-2:2009,https://www.iso.org/standard/51644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-2:2009/Amd 1:2012,https://www.iso.org/standard/57852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-3:2010,https://www.iso.org/standard/52869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-4:2009,https://www.iso.org/standard/51643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-5:2009,https://www.iso.org/standard/51642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-7:2009,https://www.iso.org/standard/51640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-7:2009/Amd 1:2012,https://www.iso.org/standard/55492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-8:2009,https://www.iso.org/standard/51641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-9:2016,https://www.iso.org/standard/54374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-9:2016/NP Amd 1,https://www.iso.org/standard/74342.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-10:2013,https://www.iso.org/standard/55685.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 9995-11:2015,https://www.iso.org/standard/62887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 10561:1999,https://www.iso.org/standard/22060.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 11160-1:1996,https://www.iso.org/standard/19170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 11160-2:2013,https://www.iso.org/standard/61520.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 13066-1:2011,https://www.iso.org/standard/53770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 13066-2:2016,https://www.iso.org/standard/65936.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 13066-3:2012,https://www.iso.org/standard/53998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 13066-4:2015,https://www.iso.org/standard/54001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 13066-6:2014,https://www.iso.org/standard/54004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 14473:1999,https://www.iso.org/standard/21435.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 14755:1997,https://www.iso.org/standard/25491.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 15411:1999,https://www.iso.org/standard/27654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 15412:1999,https://www.iso.org/standard/27655.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 15440:2016,https://www.iso.org/standard/64015.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 20007:2014,https://www.iso.org/standard/50954.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/TR 20278:2015,https://www.iso.org/standard/67471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/IEC 24757:2008,https://www.iso.org/standard/41527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO 80416-4:2005,https://www.iso.org/standard/34951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 145/SC 3,https://www.iso.org/contents/data/committee/05/27/52700/x/catalogue/ -ISO 6951:1986,https://www.iso.org/standard/13498.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 9314-1:1989,https://www.iso.org/standard/16973.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 9314-2:1989,https://www.iso.org/standard/16975.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-3:1990,https://www.iso.org/standard/16977.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-4:1999,https://www.iso.org/standard/2425.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-5:1995,https://www.iso.org/standard/16978.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-6:1998,https://www.iso.org/standard/26229.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-7:1998,https://www.iso.org/standard/3336.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-8:1998,https://www.iso.org/standard/3345.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-9:2000,https://www.iso.org/standard/22760.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-13:1998,https://www.iso.org/standard/22761.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-20:2001,https://www.iso.org/standard/22759.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-21:2000,https://www.iso.org/standard/22758.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-25:1998,https://www.iso.org/standard/22757.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9314-26:2001,https://www.iso.org/standard/22762.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 9315:1989,https://www.iso.org/standard/16979.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9316:1995,https://www.iso.org/standard/23693.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9316-2:2000,https://www.iso.org/standard/29199.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9318-2:1990,https://www.iso.org/standard/16983.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9318-3:1990,https://www.iso.org/standard/16984.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 9318-4:2002,https://www.iso.org/standard/38295.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 10192-1:2002,https://www.iso.org/standard/36483.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 10192-2:2000,https://www.iso.org/standard/34980.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 10192-3:2017,https://www.iso.org/standard/69215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11002:2008,https://www.iso.org/standard/46558.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 11518-1:1995,https://www.iso.org/standard/19468.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11518-2:2000,https://www.iso.org/standard/31787.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11518-3:1996,https://www.iso.org/standard/21077.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11518-6:2000,https://www.iso.org/standard/31786.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11518-9:1999,https://www.iso.org/standard/29538.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11518-10:2001,https://www.iso.org/standard/33142.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11801:2002/Amd 1:2008/Cor 1:2008,https://www.iso.org/standard/52768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11801:2002/Amd 2:2010/Cor 1:2010,https://www.iso.org/standard/56680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11801-1:2017,https://www.iso.org/standard/66182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11801-2:2017,https://www.iso.org/standard/66183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11801-3:2017,https://www.iso.org/standard/62245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11801-4:2017,https://www.iso.org/standard/62246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11801-5:2017,https://www.iso.org/standard/62247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11801-6:2017,https://www.iso.org/standard/65446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 11801-9901:2014,https://www.iso.org/standard/65683.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 11801-9902:2017,https://www.iso.org/standard/66649.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 11801-9903:2015,https://www.iso.org/standard/65423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 11801-9904:2017,https://www.iso.org/standard/71013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC PDTR 11801-9905,https://www.iso.org/standard/72586.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 11989:2010,https://www.iso.org/standard/51109.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 13187:2011,https://www.iso.org/standard/53458.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-114:2005,https://www.iso.org/standard/34395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-115:2006,https://www.iso.org/standard/38214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-116:2005,https://www.iso.org/standard/38216.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-116:2005/Amd 1:2009,https://www.iso.org/standard/50035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 14165-117:2007,https://www.iso.org/standard/42706.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-122:2005,https://www.iso.org/standard/39489.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-122:2005/Amd 1:2008,https://www.iso.org/standard/50704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-131:2000,https://www.iso.org/standard/26636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-133:2010,https://www.iso.org/standard/44627.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-141:2001,https://www.iso.org/standard/34145.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-151:2017,https://www.iso.org/standard/68525.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-211:1999,https://www.iso.org/standard/30278.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-222:2005,https://www.iso.org/standard/38231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-241:2005,https://www.iso.org/standard/37201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-243:2012,https://www.iso.org/standard/55052.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-251:2008,https://www.iso.org/standard/38215.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 14165-312:2009,https://www.iso.org/standard/50032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 14165-313:2013,https://www.iso.org/standard/55237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 14165-314:2013,https://www.iso.org/standard/55238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-321:2009,https://www.iso.org/standard/51834.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-331:2007,https://www.iso.org/standard/50150.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 14165-372:2011,https://www.iso.org/standard/55055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-414:2007,https://www.iso.org/standard/41909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14165-521:2009,https://www.iso.org/standard/50034.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14709-1:1997,https://www.iso.org/standard/25299.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14709-1:1997/Amd 1:2004,https://www.iso.org/standard/38774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14709-2:1998,https://www.iso.org/standard/26954.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14709-2:1998/Amd 1:2005,https://www.iso.org/standard/40626.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14762:2009,https://www.iso.org/standard/46326.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14763-1:1999,https://www.iso.org/standard/28820.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14763-1:1999/Amd 1:2004,https://www.iso.org/standard/38773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14763-2:2012,https://www.iso.org/standard/55024.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14763-2:2012/Amd 1:2015,https://www.iso.org/standard/61194.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC CD 14763-2,https://www.iso.org/standard/73337.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14763-3:2006/Amd 1:2009,https://www.iso.org/standard/54602.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14763-3:2014,https://www.iso.org/standard/52470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14763-3:2014/Cor 1:2015,https://www.iso.org/standard/68755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14763-3:2014/DAmd 1,https://www.iso.org/standard/69775.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC FDIS 14763-4,https://www.iso.org/standard/68025.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 14763-2-1:2011,https://www.iso.org/standard/55236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-112:2002,https://www.iso.org/standard/35308.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14776-113:2002,https://www.iso.org/standard/34380.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14776-115:2004,https://www.iso.org/standard/38217.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14776-121:2010,https://www.iso.org/standard/50147.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-150:2004,https://www.iso.org/standard/38776.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14776-151:2010,https://www.iso.org/standard/42890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-153:2015,https://www.iso.org/standard/59770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-154:2017,https://www.iso.org/standard/67988.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-222:2005,https://www.iso.org/standard/38379.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-223:2008,https://www.iso.org/standard/51163.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-232:2001,https://www.iso.org/standard/32329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14776-251:2014,https://www.iso.org/standard/59526.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-261:2012,https://www.iso.org/standard/59527.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-262:2017,https://www.iso.org/standard/64011.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC DIS 14776-263,https://www.iso.org/standard/70199.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-321:2002,https://www.iso.org/standard/36003.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-322:2007,https://www.iso.org/standard/42101.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-323:2017,https://www.iso.org/standard/66502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-326:2015,https://www.iso.org/standard/67739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-331:2002,https://www.iso.org/standard/35213.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14776-333:2013,https://www.iso.org/standard/59528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-341:2000,https://www.iso.org/standard/25514.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-342:2000,https://www.iso.org/standard/26640.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-351:2007,https://www.iso.org/standard/40625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-362:2006,https://www.iso.org/standard/35335.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-372:2011,https://www.iso.org/standard/55041.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-381:2000,https://www.iso.org/standard/33357.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-411:1999,https://www.iso.org/standard/25512.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-412:2006,https://www.iso.org/standard/39517.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-413:2007,https://www.iso.org/standard/41487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-414:2009,https://www.iso.org/standard/53961.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC CD 14776-415,https://www.iso.org/standard/72273.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-452:2005,https://www.iso.org/standard/38775.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14776-453:2009,https://www.iso.org/standard/50657.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC DIS 14776-454,https://www.iso.org/standard/70815.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC CD 14776-481,https://www.iso.org/standard/72860.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14908-1:2012,https://www.iso.org/standard/60203.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14908-2:2012,https://www.iso.org/standard/60204.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14908-3:2012,https://www.iso.org/standard/60205.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14908-4:2012,https://www.iso.org/standard/60206.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO 14915-1:2002,https://www.iso.org/standard/25578.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 14915-2:2003,https://www.iso.org/standard/28583.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 14915-3:2002,https://www.iso.org/standard/28584.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/IEC TR 15044:2000,https://www.iso.org/standard/26312.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15045-1:2004,https://www.iso.org/standard/26313.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15045-2:2012,https://www.iso.org/standard/55235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 15067-2:1997,https://www.iso.org/standard/26361.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15067-3:2012,https://www.iso.org/standard/55596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 15067-4:2001,https://www.iso.org/standard/33767.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 15067-3-2:2016,https://www.iso.org/standard/69385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC DIS 15067-3-3,https://www.iso.org/standard/71626.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 17760-101:2015,https://www.iso.org/standard/60491.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 17760-102:2016,https://www.iso.org/standard/67118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 18010:2002,https://www.iso.org/standard/31052.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 18010:2002/Amd 1:2005,https://www.iso.org/standard/36514.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 18012-1:2004,https://www.iso.org/standard/30797.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 18012-2:2012,https://www.iso.org/standard/46317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 18036:2003,https://www.iso.org/standard/30821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 18598:2016,https://www.iso.org/standard/62987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 19987:2017,https://www.iso.org/standard/72926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC PRF TS 22237-5,https://www.iso.org/standard/73012.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 39,https://www.iso.org/contents/data/committee/65/40/654019/x/catalogue/ -ISO/IEC TR 24704:2004,https://www.iso.org/standard/38814.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24739-1:2009,https://www.iso.org/standard/50146.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24739-2:2009,https://www.iso.org/standard/50714.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24739-3:2010,https://www.iso.org/standard/50715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24739-3:2010/Cor 1:2013,https://www.iso.org/standard/63824.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24740:2008,https://www.iso.org/standard/50352.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 24746:2005,https://www.iso.org/standard/38856.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 24750:2007,https://www.iso.org/standard/41520.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24767-1:2008,https://www.iso.org/standard/43880.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 24767-2:2009,https://www.iso.org/standard/43881.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24775-1:2014,https://www.iso.org/standard/63348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24775-2:2014,https://www.iso.org/standard/63349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24775-3:2014,https://www.iso.org/standard/63350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24775-4:2014,https://www.iso.org/standard/63351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24775-5:2014,https://www.iso.org/standard/63352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24775-6:2014,https://www.iso.org/standard/63353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24775-7:2014,https://www.iso.org/standard/63355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 24775-8:2014,https://www.iso.org/standard/63356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 29106:2007,https://www.iso.org/standard/45129.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 29106:2007/Amd 1:2012,https://www.iso.org/standard/59753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 29107-1:2010,https://www.iso.org/standard/45130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 29108:2013,https://www.iso.org/standard/45131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TS 29125:2017,https://www.iso.org/standard/70292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29145-1:2014,https://www.iso.org/standard/61372.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29145-2:2014,https://www.iso.org/standard/61373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29145-3:2014,https://www.iso.org/standard/61374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29341-1:2011,https://www.iso.org/standard/57195.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-2:2008,https://www.iso.org/standard/52676.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-3-10:2015,https://www.iso.org/standard/66684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-3-11:2008,https://www.iso.org/standard/52682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-3-12:2008,https://www.iso.org/standard/52684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-3-13:2008,https://www.iso.org/standard/52685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-4-10:2011,https://www.iso.org/standard/57196.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-4-11:2011,https://www.iso.org/standard/57197.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-4-12:2008,https://www.iso.org/standard/52700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-4-13:2011,https://www.iso.org/standard/57198.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-4-14:2011,https://www.iso.org/standard/57199.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-1:2008,https://www.iso.org/standard/52708.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-2:2008,https://www.iso.org/standard/52709.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-10:2008,https://www.iso.org/standard/52710.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-11:2008,https://www.iso.org/standard/52711.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-12:2008,https://www.iso.org/standard/52713.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-13:2008,https://www.iso.org/standard/52714.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-14:2008,https://www.iso.org/standard/52715.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-15:2008,https://www.iso.org/standard/52716.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-16:2008,https://www.iso.org/standard/52717.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-6-17:2008,https://www.iso.org/standard/52718.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-7-10:2008,https://www.iso.org/standard/52721.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-7-11:2015,https://www.iso.org/standard/66685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-1:2008,https://www.iso.org/standard/52723.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-2:2008,https://www.iso.org/standard/52724.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-3:2008,https://www.iso.org/standard/52726.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-4:2008,https://www.iso.org/standard/52727.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-5:2008,https://www.iso.org/standard/52728.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-10:2008,https://www.iso.org/standard/52729.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-11:2008,https://www.iso.org/standard/53055.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-12:2008,https://www.iso.org/standard/52730.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-13:2008,https://www.iso.org/standard/52731.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-14:2008,https://www.iso.org/standard/52732.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-15:2008,https://www.iso.org/standard/52733.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-16:2008,https://www.iso.org/standard/52734.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-17:2008,https://www.iso.org/standard/52735.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-18:2008,https://www.iso.org/standard/52736.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-19:2008,https://www.iso.org/standard/52737.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-20:2008,https://www.iso.org/standard/52738.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-8-21:2008,https://www.iso.org/standard/52744.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-9-1:2008,https://www.iso.org/standard/52745.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-9-2:2008,https://www.iso.org/standard/52746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-9-10:2008,https://www.iso.org/standard/52748.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-9-11:2008,https://www.iso.org/standard/52749.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-9-12:2008,https://www.iso.org/standard/52750.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-9-13:2008,https://www.iso.org/standard/52751.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-1-1:2011,https://www.iso.org/standard/57494.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-10-1:2008,https://www.iso.org/standard/52752.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-1-2:2017,https://www.iso.org/standard/69286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-10-10:2008,https://www.iso.org/standard/52753.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-10-11:2008,https://www.iso.org/standard/52754.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-10-12:2008,https://www.iso.org/standard/52755.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-11-1:2008,https://www.iso.org/standard/52756.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-11-2:2008,https://www.iso.org/standard/52757.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-11-10:2008,https://www.iso.org/standard/52758.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-11-11:2008,https://www.iso.org/standard/52759.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-11-12:2008,https://www.iso.org/standard/52760.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-12-1:2015,https://www.iso.org/standard/67473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-12-2:2015,https://www.iso.org/standard/67474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-12-10:2015,https://www.iso.org/standard/67475.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-12-11:2015,https://www.iso.org/standard/67476.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-13-10:2008,https://www.iso.org/standard/52765.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-13-11:2008,https://www.iso.org/standard/52766.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-14-3:2011,https://www.iso.org/standard/57507.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-14-12:2011,https://www.iso.org/standard/57508.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-15-10:2011,https://www.iso.org/standard/57509.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-16-1:2011,https://www.iso.org/standard/57510.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-16-10:2011,https://www.iso.org/standard/57511.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-16-11:2011,https://www.iso.org/standard/57512.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-17-1:2011,https://www.iso.org/standard/57513.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-17-10:2011,https://www.iso.org/standard/57514.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-17-11:2011,https://www.iso.org/standard/57515.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-17-12:2011,https://www.iso.org/standard/57516.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-17-13:2011,https://www.iso.org/standard/57517.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-18-1:2011,https://www.iso.org/standard/57518.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-18-2:2011,https://www.iso.org/standard/57519.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-18-3:2011,https://www.iso.org/standard/57520.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-18-4:2011,https://www.iso.org/standard/57521.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-18-10:2011,https://www.iso.org/standard/57522.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-18-11:2011,https://www.iso.org/standard/57523.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-18-12:2011,https://www.iso.org/standard/57524.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-18-13:2011,https://www.iso.org/standard/57525.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-19-1:2011,https://www.iso.org/standard/57526.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-19-10:2011,https://www.iso.org/standard/57527.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-1:2017,https://www.iso.org/standard/69142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-2:2017,https://www.iso.org/standard/69151.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-3:2017,https://www.iso.org/standard/69152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-4:2017,https://www.iso.org/standard/69144.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-10:2017,https://www.iso.org/standard/69146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-11:2017,https://www.iso.org/standard/69147.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-12:2017,https://www.iso.org/standard/69148.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-13:2017,https://www.iso.org/standard/69149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-20-14:2017,https://www.iso.org/standard/69150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-24-1:2017,https://www.iso.org/standard/69153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-24-2:2017,https://www.iso.org/standard/69154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-24-3:2017,https://www.iso.org/standard/69155.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-24-10:2017,https://www.iso.org/standard/69156.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-24-11:2017,https://www.iso.org/standard/69157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-1:2017,https://www.iso.org/standard/69167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-2:2017,https://www.iso.org/standard/69168.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-3:2017,https://www.iso.org/standard/69169.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-10:2017,https://www.iso.org/standard/69170.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-11:2017,https://www.iso.org/standard/69171.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-12:2017,https://www.iso.org/standard/69172.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-13:2017,https://www.iso.org/standard/69174.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-14:2017,https://www.iso.org/standard/69175.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-15:2017,https://www.iso.org/standard/69176.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-26-16:2017,https://www.iso.org/standard/69177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-27-1:2017,https://www.iso.org/standard/69178.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-28-1:2017,https://www.iso.org/standard/69179.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-28-2:2017,https://www.iso.org/standard/69180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-28-10:2017,https://www.iso.org/standard/69181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-29-2:2017,https://www.iso.org/standard/69182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-29-10:2017,https://www.iso.org/standard/69183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-3-1:2011,https://www.iso.org/standard/57202.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-30-1:2017,https://www.iso.org/standard/69184.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-3-2:2008,https://www.iso.org/standard/52678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-30-2:2017,https://www.iso.org/standard/69185.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-3-3:2008,https://www.iso.org/standard/52680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-30-10:2017,https://www.iso.org/standard/69186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-30-11:2017,https://www.iso.org/standard/69187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-30-12:2017,https://www.iso.org/standard/69188.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-31-1:2017,https://www.iso.org/standard/69189.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-4-2:2011,https://www.iso.org/standard/57201.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-4-3:2008,https://www.iso.org/standard/52688.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-4-4:2011,https://www.iso.org/standard/57200.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-5-1:2008,https://www.iso.org/standard/52703.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-5-10:2008,https://www.iso.org/standard/52705.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-5-11:2008,https://www.iso.org/standard/52706.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-5-12:2008,https://www.iso.org/standard/52707.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-7-1:2008,https://www.iso.org/standard/52719.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29341-7-2:2008,https://www.iso.org/standard/52720.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 30118-1,https://www.iso.org/standard/53238.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 30118-2,https://www.iso.org/standard/74239.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 30118-3,https://www.iso.org/standard/74240.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 30118-4,https://www.iso.org/standard/74241.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 30118-5,https://www.iso.org/standard/74242.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 30118-6,https://www.iso.org/standard/74243.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 30129:2015,https://www.iso.org/standard/53249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 30129:2015/PDAM 1,https://www.iso.org/standard/74604.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 17789:2014,https://www.iso.org/standard/60545.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 17826:2016,https://www.iso.org/standard/70226.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 18384-1:2016,https://www.iso.org/standard/63104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 18384-2:2016,https://www.iso.org/standard/63105.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 18384-3:2016,https://www.iso.org/standard/63106.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 19086-1:2016,https://www.iso.org/standard/67545.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC DIS 19086-2,https://www.iso.org/standard/67546.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 19086-3:2017,https://www.iso.org/standard/67547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC DIS 19086-4,https://www.iso.org/standard/68242.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 27,https://www.iso.org/contents/data/committee/04/53/45306/x/catalogue/ -ISO/IEC 19944:2017,https://www.iso.org/standard/66674.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 20933:2016,https://www.iso.org/standard/69494.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC DIS 20933,https://www.iso.org/standard/74404.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 30102:2012,https://www.iso.org/standard/53222.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 38,https://www.iso.org/contents/data/committee/60/13/601355/x/catalogue/ -ISO/IEC 20648:2016,https://www.iso.org/standard/68622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 1113:1979,https://www.iso.org/standard/5636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 1154:1975,https://www.iso.org/standard/5722.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 1681:1973,https://www.iso.org/standard/6296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 3692:1976,https://www.iso.org/standard/9165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 6586:1980,https://www.iso.org/standard/12991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 11558:1992,https://www.iso.org/standard/19512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 11576:1994,https://www.iso.org/standard/21153.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 12042:1993,https://www.iso.org/standard/21393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13346-1:1995,https://www.iso.org/standard/26783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13346-2:1999,https://www.iso.org/standard/29942.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13346-3:1999,https://www.iso.org/standard/29943.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13346-4:1999,https://www.iso.org/standard/29944.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13346-5:1995,https://www.iso.org/standard/26787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20919:2016,https://www.iso.org/standard/69458.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 22091:2002,https://www.iso.org/standard/36090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 3561:1976,https://www.iso.org/standard/8965.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 3562:1976,https://www.iso.org/standard/8966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 3563:1976,https://www.iso.org/standard/8967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 3564:1976,https://www.iso.org/standard/8968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 4337:1977,https://www.iso.org/standard/10218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 5653:1980,https://www.iso.org/standard/11738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 5654-1:1984,https://www.iso.org/standard/11740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 5654-2:1985,https://www.iso.org/standard/11742.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 6596-1:1985,https://www.iso.org/standard/13005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 6596-2:1985,https://www.iso.org/standard/13006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 7065-1:1985,https://www.iso.org/standard/13633.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 7065-2:1985,https://www.iso.org/standard/13634.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 7297:1985,https://www.iso.org/standard/13959.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 7298:1985,https://www.iso.org/standard/13960.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 7487-1:1993,https://www.iso.org/standard/20896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 7487-2:1985,https://www.iso.org/standard/14235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 7487-3:1986,https://www.iso.org/standard/14237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 7487-3:1986/Cor 1:1991,https://www.iso.org/standard/14238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 7665:1983,https://www.iso.org/standard/14485.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 7929:1985,https://www.iso.org/standard/14898.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8378-1:1986,https://www.iso.org/standard/15540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8378-2:1986,https://www.iso.org/standard/15541.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8378-3:1986,https://www.iso.org/standard/15543.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8630-1:1987,https://www.iso.org/standard/15964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8630-2:1987,https://www.iso.org/standard/15965.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8630-2:1987/Cor 1:1992,https://www.iso.org/standard/21426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8630-3:1987,https://www.iso.org/standard/15966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8630-3:1987/Cor 1:1992,https://www.iso.org/standard/21425.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8860-1:1987,https://www.iso.org/standard/16348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8860-1:1987/Cor 1:1990,https://www.iso.org/standard/16349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8860-2:1987,https://www.iso.org/standard/16350.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8860-2:1987/Cor 1:1990,https://www.iso.org/standard/16351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9293:1994,https://www.iso.org/standard/21273.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9529-1:1989,https://www.iso.org/standard/17263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 9529-2:1989,https://www.iso.org/standard/17265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 10994:1992,https://www.iso.org/standard/18974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13422:1994,https://www.iso.org/standard/21975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 14169:1995,https://www.iso.org/standard/23820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 962:1974,https://www.iso.org/standard/5389.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/IEC 1001:2012,https://www.iso.org/standard/60220.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 1858:1977,https://www.iso.org/standard/6525.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 1859:1973,https://www.iso.org/standard/6526.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 1860:1986,https://www.iso.org/standard/6528.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 1861:1975,https://www.iso.org/standard/6529.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 1862:1975,https://www.iso.org/standard/6530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 1863:1990,https://www.iso.org/standard/6532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 1864:1992,https://www.iso.org/standard/6535.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 3788:1990,https://www.iso.org/standard/9315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 3802:1976,https://www.iso.org/standard/9336.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 5652:1984,https://www.iso.org/standard/11737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 6068:1985,https://www.iso.org/standard/12269.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 8064:1985,https://www.iso.org/standard/15086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 8441-1:1991,https://www.iso.org/standard/15626.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8441-2:1991,https://www.iso.org/standard/15627.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 18933:2012,https://www.iso.org/standard/60960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/IEC 23651:2003,https://www.iso.org/standard/36920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 3275:1974,https://www.iso.org/standard/8511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 3407:1983,https://www.iso.org/standard/8711.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 4057:1986,https://www.iso.org/standard/9765.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 4341:1978,https://www.iso.org/standard/10219.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 6098:1984,https://www.iso.org/standard/12292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8063-1:1986,https://www.iso.org/standard/15084.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8063-2:1986,https://www.iso.org/standard/15085.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8462-1:1986,https://www.iso.org/standard/15657.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 8462-2:1986,https://www.iso.org/standard/15658.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 9661:1994,https://www.iso.org/standard/24918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 11319:1993,https://www.iso.org/standard/19285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 11321:1992,https://www.iso.org/standard/19286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 11557:1992,https://www.iso.org/standard/19511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 11559:1993,https://www.iso.org/standard/19513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 12246:1993,https://www.iso.org/standard/21364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 12247:1993,https://www.iso.org/standard/21365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 12248:1993,https://www.iso.org/standard/21366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13421:1993,https://www.iso.org/standard/21974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13923:1996,https://www.iso.org/standard/23322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13962:1995,https://www.iso.org/standard/23526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 14251:1995,https://www.iso.org/standard/23981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 14417:1999,https://www.iso.org/standard/24276.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 14833:1996,https://www.iso.org/standard/25720.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 14840:1996,https://www.iso.org/standard/25737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15307:1997,https://www.iso.org/standard/27206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15521:1998,https://www.iso.org/standard/28109.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15718:1998,https://www.iso.org/standard/28813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15731:1998,https://www.iso.org/standard/28818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15757:1998,https://www.iso.org/standard/28877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15780:1998,https://www.iso.org/standard/28962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15895:1999,https://www.iso.org/standard/29450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15896:1999,https://www.iso.org/standard/29451.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 16382:2000,https://www.iso.org/standard/32207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 17462:2000,https://www.iso.org/standard/33064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 17913:2000,https://www.iso.org/standard/31631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 18809:2000,https://www.iso.org/standard/33665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 18810:2001,https://www.iso.org/standard/33666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 18836:2001,https://www.iso.org/standard/33676.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 20061:2001,https://www.iso.org/standard/35276.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 20062:2001,https://www.iso.org/standard/35277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 22050:2002,https://www.iso.org/standard/36072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 22051:2002,https://www.iso.org/standard/36073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 9171-1:1990,https://www.iso.org/standard/16770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 9171-2:1990,https://www.iso.org/standard/16771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 9660:1988,https://www.iso.org/standard/17505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 9660:1988/Amd 1:2013,https://www.iso.org/standard/61625.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 10089:1991,https://www.iso.org/standard/18061.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 10090:1992,https://www.iso.org/standard/18063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC TR 10091:1995,https://www.iso.org/standard/18065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 10149:1995,https://www.iso.org/standard/25869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/TR 10255:2009,https://www.iso.org/standard/45936.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/IEC 10885:1993,https://www.iso.org/standard/18897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 10995:2011,https://www.iso.org/standard/56910.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 11560:1992,https://www.iso.org/standard/19514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 11976:2008,https://www.iso.org/standard/51101.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 12862:2011,https://www.iso.org/standard/56911.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13170:2009,https://www.iso.org/standard/53434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13346-1:1995,https://www.iso.org/standard/26783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13346-2:1999,https://www.iso.org/standard/29942.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13346-3:1999,https://www.iso.org/standard/29943.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13346-4:1999,https://www.iso.org/standard/29944.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13346-5:1995,https://www.iso.org/standard/26787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13403:1995,https://www.iso.org/standard/21910.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13481:1993,https://www.iso.org/standard/22083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13490-1:1995,https://www.iso.org/standard/26788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13490-2:1995,https://www.iso.org/standard/26789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13549:1993,https://www.iso.org/standard/22189.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC TR 13561:1994,https://www.iso.org/standard/22275.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13614:1995,https://www.iso.org/standard/22391.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC TR 13841:1995,https://www.iso.org/standard/23052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13842:1995,https://www.iso.org/standard/23053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 13963:1995,https://www.iso.org/standard/23527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 14517:1996,https://www.iso.org/standard/23975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 14760:1997,https://www.iso.org/standard/25496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15041:1997,https://www.iso.org/standard/26279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15286:1999,https://www.iso.org/standard/27164.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15485:1997,https://www.iso.org/standard/27876.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15486:1998,https://www.iso.org/standard/27884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15498:1997,https://www.iso.org/standard/27923.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 15898:1998,https://www.iso.org/standard/29453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 16448:2002,https://www.iso.org/standard/35641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 16449:2002,https://www.iso.org/standard/35642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 16824:1999,https://www.iso.org/standard/30470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 16825:1999,https://www.iso.org/standard/30471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 16963:2017,https://www.iso.org/standard/71159.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 16969:1999,https://www.iso.org/standard/30514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 17341:2009,https://www.iso.org/standard/52064.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 17342:2004,https://www.iso.org/standard/38319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 17344:2009,https://www.iso.org/standard/52065.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 17345:2006,https://www.iso.org/standard/43911.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 17346:2005,https://www.iso.org/standard/40172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 17592:2004,https://www.iso.org/standard/38411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 17594:2004,https://www.iso.org/standard/38412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 18093:1999,https://www.iso.org/standard/31688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO 18921:2008,https://www.iso.org/standard/51327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18925:2013,https://www.iso.org/standard/62632.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18926:2012,https://www.iso.org/standard/60380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18927:2013,https://www.iso.org/standard/62635.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18938:2014,https://www.iso.org/standard/63076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/IEC 20162:2001,https://www.iso.org/standard/35306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 20563:2001,https://www.iso.org/standard/34214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 22092:2002,https://www.iso.org/standard/36091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 22533:2005,https://www.iso.org/standard/41003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 23912:2005,https://www.iso.org/standard/41925.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 25434:2008,https://www.iso.org/standard/51140.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 25435:2006,https://www.iso.org/standard/42923.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 26925:2009,https://www.iso.org/standard/52066.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29121:2013,https://www.iso.org/standard/61648.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC FDIS 29121,https://www.iso.org/standard/69975.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 29171:2009,https://www.iso.org/standard/45250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 29642:2009,https://www.iso.org/standard/52067.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 30190:2016,https://www.iso.org/standard/69916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 30191:2015,https://www.iso.org/standard/67557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 30192:2016,https://www.iso.org/standard/69917.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 30193:2016,https://www.iso.org/standard/69918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 23,https://www.iso.org/contents/data/committee/04/52/45240/x/catalogue/ -ISO/IEC 10027:1990,https://www.iso.org/standard/17985.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 10728:1993,https://www.iso.org/standard/18821.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 10728:1993/Amd 2:1996,https://www.iso.org/standard/24342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 10728:1993/Amd 1:1995,https://www.iso.org/standard/24341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 10728:1993/Amd 3:1996,https://www.iso.org/standard/27123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 10728:1993/Amd 4:1998,https://www.iso.org/standard/28052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 13238-3:1998,https://www.iso.org/standard/21473.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO 17369:2013,https://www.iso.org/standard/52500.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/IEC TR 30109:2015,https://www.iso.org/standard/53229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO 128-21:1997,https://www.iso.org/standard/27382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 3098-5:1997,https://www.iso.org/standard/24793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 11442:2006,https://www.iso.org/standard/39380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 13567-1:2017,https://www.iso.org/standard/70181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 13567-2:2017,https://www.iso.org/standard/70182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 8,https://www.iso.org/contents/data/committee/04/60/46086/x/catalogue/ -ISO 16792:2015,https://www.iso.org/standard/56865.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/NP 16792,https://www.iso.org/standard/73871.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/CD 20719-1,https://www.iso.org/standard/68913.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/IEC 4909:2006,https://www.iso.org/standard/43309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7501-1:2008,https://www.iso.org/standard/45562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7501-2:1997,https://www.iso.org/standard/29074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7501-3:2005,https://www.iso.org/standard/42771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7810:2003,https://www.iso.org/standard/31432.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7810:2003/Amd 1:2009,https://www.iso.org/standard/46562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7810:2003/Amd 2:2012,https://www.iso.org/standard/54992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 7810,https://www.iso.org/standard/70483.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7811-1:2014,https://www.iso.org/standard/61935.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC FDIS 7811-1,https://www.iso.org/standard/73637.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7811-2:2014,https://www.iso.org/standard/61936.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC FDIS 7811-2,https://www.iso.org/standard/73638.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7811-6:2014,https://www.iso.org/standard/61937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC FDIS 7811-6,https://www.iso.org/standard/73639.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7811-7:2014,https://www.iso.org/standard/61938.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC FDIS 7811-7,https://www.iso.org/standard/73640.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7811-8:2014,https://www.iso.org/standard/61939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7811-9:2015,https://www.iso.org/standard/63145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7812-1:2017,https://www.iso.org/standard/70484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7812-2:2017,https://www.iso.org/standard/70485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7813:2006,https://www.iso.org/standard/43317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-1:2011,https://www.iso.org/standard/54089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-2:2007,https://www.iso.org/standard/45989.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-3:2006,https://www.iso.org/standard/38770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-4:2013,https://www.iso.org/standard/54550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-4:2013/Cor 1:2014,https://www.iso.org/standard/65200.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-4:2013/DAmd 1,https://www.iso.org/standard/70479.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-4:2013/DAmd 2,https://www.iso.org/standard/72559.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-5:2004,https://www.iso.org/standard/34259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-6:2016,https://www.iso.org/standard/64598.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-7:1999,https://www.iso.org/standard/28869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-8:2016,https://www.iso.org/standard/66092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-9:2017,https://www.iso.org/standard/67802.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-10:1999,https://www.iso.org/standard/30558.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-11:2017,https://www.iso.org/standard/67799.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-12:2005,https://www.iso.org/standard/40604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-12:2005/Cor 1:2014,https://www.iso.org/standard/63864.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-13:2007,https://www.iso.org/standard/40605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-15:2016,https://www.iso.org/standard/65250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 7816-15:2016/DAmd 1,https://www.iso.org/standard/74199.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO 8583-1:2003,https://www.iso.org/standard/31628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 8583-2:1998,https://www.iso.org/standard/23632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 8583-3:2003,https://www.iso.org/standard/35363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO/IEC 10373-1:2006,https://www.iso.org/standard/40682.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-1:2006/Amd 1:2012,https://www.iso.org/standard/54416.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 10373-1,https://www.iso.org/standard/70482.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-2:2015,https://www.iso.org/standard/61940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-3:2010,https://www.iso.org/standard/46409.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-3:2010/Cor 1:2013,https://www.iso.org/standard/61597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC DIS 10373-3,https://www.iso.org/standard/74238.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-5:2014,https://www.iso.org/standard/63676.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-6/DAmd 1,https://www.iso.org/standard/73645.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-6:2016,https://www.iso.org/standard/66290.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-6:2016/DAmd 1,https://www.iso.org/standard/66292.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-6:2016/DAmd 2,https://www.iso.org/standard/66293.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-6:2016/DAmd 4,https://www.iso.org/standard/69481.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-6:2016/DAmd 5,https://www.iso.org/standard/70494.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-6:2016/FDAmd 3,https://www.iso.org/standard/68090.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC DIS 10373-6,https://www.iso.org/standard/73600.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-7:2008,https://www.iso.org/standard/50030.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-7:2008/WD Amd 1,https://www.iso.org/standard/70495.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 10373-7,https://www.iso.org/standard/74958.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-8:2011,https://www.iso.org/standard/52133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10373-9:2011,https://www.iso.org/standard/55769.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 10373-9,https://www.iso.org/standard/67006.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10536-1:2000,https://www.iso.org/standard/26737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10536-2:1995,https://www.iso.org/standard/23131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 10536-3:1996,https://www.iso.org/standard/24184.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11693-1:2012,https://www.iso.org/standard/59427.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11693-2:2009,https://www.iso.org/standard/51710.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11693-3:2015,https://www.iso.org/standard/64130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11694-1:2012,https://www.iso.org/standard/59425.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11694-2:2012,https://www.iso.org/standard/59426.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11694-3:2015,https://www.iso.org/standard/66129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11694-4:2008,https://www.iso.org/standard/45973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11694-5:2014,https://www.iso.org/standard/61483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11694-6:2014,https://www.iso.org/standard/61484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11695-1:2015,https://www.iso.org/standard/64903.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11695-2:2015,https://www.iso.org/standard/64904.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 11695-3:2017,https://www.iso.org/standard/67150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO 12176-3:2011,https://www.iso.org/standard/57269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/IEC 12905:2011,https://www.iso.org/standard/52135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 12905:2011/Cor 1:2013,https://www.iso.org/standard/63811.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-1:2016,https://www.iso.org/standard/70170.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-1:2016/DAmd 1,https://www.iso.org/standard/71071.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC FDIS 14443-1,https://www.iso.org/standard/73596.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-2:2016,https://www.iso.org/standard/66288.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-2:2016/DAmd 1,https://www.iso.org/standard/66289.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-2:2016/DAmd 2,https://www.iso.org/standard/70493.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-2:2016/DAmd 3,https://www.iso.org/standard/71195.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC DIS 14443-2,https://www.iso.org/standard/73597.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-3:2016,https://www.iso.org/standard/70171.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-3:2016/Amd 1:2016,https://www.iso.org/standard/71238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-3:2016/DAmd 2,https://www.iso.org/standard/71239.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC FDIS 14443-3,https://www.iso.org/standard/73598.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-4:2016,https://www.iso.org/standard/70172.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-4:2016/Amd 1:2016,https://www.iso.org/standard/71240.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-4:2016/DAmd 2,https://www.iso.org/standard/71241.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 14443-4:2016/DAmd 3,https://www.iso.org/standard/71242.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC FDIS 14443-4,https://www.iso.org/standard/73599.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15457-1:2008,https://www.iso.org/standard/50149.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15457-2:2007,https://www.iso.org/standard/41839.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15457-3:2008,https://www.iso.org/standard/43890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15693-1:2010,https://www.iso.org/standard/39694.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC DIS 15693-1,https://www.iso.org/standard/70837.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15693-2:2006,https://www.iso.org/standard/39695.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC DIS 15693-2,https://www.iso.org/standard/73601.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15693-3:2009,https://www.iso.org/standard/43467.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15693-3:2009/Amd 2:2015,https://www.iso.org/standard/64733.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15693-3:2009/Amd 3:2015,https://www.iso.org/standard/64734.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 15693-3:2009/Amd 4:2017,https://www.iso.org/standard/64735.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 15693-3,https://www.iso.org/standard/73602.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 17839-1:2014,https://www.iso.org/standard/60759.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 17839-2:2015,https://www.iso.org/standard/61918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 17839-3:2016,https://www.iso.org/standard/61919.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18013-1:2005,https://www.iso.org/standard/41920.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC PRF 18013-1,https://www.iso.org/standard/63798.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18013-2:2008,https://www.iso.org/standard/42199.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18013-2:2008/Cor 1:2011,https://www.iso.org/standard/59678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 18013-2,https://www.iso.org/standard/70486.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18013-3:2017,https://www.iso.org/standard/72366.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18013-4:2011,https://www.iso.org/standard/53350.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18013-4:2011/Cor 1:2013,https://www.iso.org/standard/62828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18013-4:2011/DAmd 1,https://www.iso.org/standard/66479.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 18013-4,https://www.iso.org/standard/74961.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO 18245:2003,https://www.iso.org/standard/33365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO/IEC TR 18268:2013,https://www.iso.org/standard/61933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18328-1:2015,https://www.iso.org/standard/64595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18328-2:2015,https://www.iso.org/standard/64596.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18328-3:2016,https://www.iso.org/standard/64597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC DIS 18328-4,https://www.iso.org/standard/70478.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18584:2015,https://www.iso.org/standard/62963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18745-1:2014,https://www.iso.org/standard/63256.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC DIS 18745-1,https://www.iso.org/standard/67800.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 18745-2:2016,https://www.iso.org/standard/63257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 19286:2018,https://www.iso.org/standard/64268.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC TR 19446:2015,https://www.iso.org/standard/64913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 19784-1:2006,https://www.iso.org/standard/33922.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19784-1:2006/Amd 1:2007,https://www.iso.org/standard/43613.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19784-1:2006/Amd 2:2009,https://www.iso.org/standard/50786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19784-1:2006/Amd 3:2010,https://www.iso.org/standard/50787.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC PRF 19784-1,https://www.iso.org/standard/70866.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19784-2:2007,https://www.iso.org/standard/43303.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19784-2:2007/Cor 1:2011,https://www.iso.org/standard/56177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19784-2:2007/Cor 2:2013,https://www.iso.org/standard/64665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19784-4:2011,https://www.iso.org/standard/50859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19784-4:2011/Cor 1:2013,https://www.iso.org/standard/62814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19785-1:2015,https://www.iso.org/standard/66179.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19785-2:2006,https://www.iso.org/standard/41048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19785-2:2006/Amd 1:2010,https://www.iso.org/standard/53730.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19785-3:2015,https://www.iso.org/standard/60458.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC CD 19785-3,https://www.iso.org/standard/72192.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19785-4:2010,https://www.iso.org/standard/50860.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19785-4:2010/Cor 1:2013,https://www.iso.org/standard/61611.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-1:2006,https://www.iso.org/standard/38745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-1:2011,https://www.iso.org/standard/50862.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-1:2011/Amd 1:2013,https://www.iso.org/standard/60466.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-1:2011/Amd 2:2015,https://www.iso.org/standard/59450.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-2:2005,https://www.iso.org/standard/38746.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-2:2005/Amd 1:2010,https://www.iso.org/standard/52537.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-2:2005/Amd 1:2010/Cor 2:2014,https://www.iso.org/standard/64755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-2:2005/Cor 1:2009,https://www.iso.org/standard/50378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-2:2011,https://www.iso.org/standard/50864.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-2:2011/Amd 1:2013,https://www.iso.org/standard/56243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-2:2011/Amd 2:2015,https://www.iso.org/standard/61610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-2:2011/Cor 1:2012,https://www.iso.org/standard/61616.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-3:2006,https://www.iso.org/standard/38747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-4:2005,https://www.iso.org/standard/38748.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-4:2005/Cor 1:2011,https://www.iso.org/standard/50350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-4:2011,https://www.iso.org/standard/50866.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-4:2011/Amd 1:2013,https://www.iso.org/standard/59449.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-4:2011/Amd 2:2015,https://www.iso.org/standard/60928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-4:2011/Cor 1:2012,https://www.iso.org/standard/61618.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-5:2005,https://www.iso.org/standard/38749.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-5:2011,https://www.iso.org/standard/50867.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-5:2011/Amd 1:2014,https://www.iso.org/standard/61028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-5:2011/Amd 2:2015,https://www.iso.org/standard/61589.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-5:2011/Amd 2:2015/Cor 1:2016,https://www.iso.org/standard/70897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-6:2005,https://www.iso.org/standard/38750.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-6:2011,https://www.iso.org/standard/50868.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-6:2011/Amd 1:2015,https://www.iso.org/standard/61097.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-6:2011/Amd 2:2016,https://www.iso.org/standard/62815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-6:2011/Cor 1:2012,https://www.iso.org/standard/61619.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-7:2007,https://www.iso.org/standard/38751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-7:2007/Cor 1:2009,https://www.iso.org/standard/54505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-7:2014,https://www.iso.org/standard/55938.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-7:2014/Amd 1:2015,https://www.iso.org/standard/61609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-7:2014/Amd 1:2015/CD Cor 1,https://www.iso.org/standard/74840.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-8:2006,https://www.iso.org/standard/40715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-8:2006/Cor 1:2011,https://www.iso.org/standard/57827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-8:2011,https://www.iso.org/standard/50869.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-8:2011/Amd 1:2014,https://www.iso.org/standard/61098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-8:2011/Cor 1:2012,https://www.iso.org/standard/61615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-9:2007,https://www.iso.org/standard/43637.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-9:2011,https://www.iso.org/standard/56163.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-9:2011/Amd 1:2013,https://www.iso.org/standard/59401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-9:2011/Amd 2:2015,https://www.iso.org/standard/61590.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-9:2011/Cor 1:2012,https://www.iso.org/standard/61617.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-10:2007,https://www.iso.org/standard/43638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-11:2013,https://www.iso.org/standard/51824.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-11:2013/Amd 1:2014,https://www.iso.org/standard/59434.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-13,https://www.iso.org/standard/72276.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-14:2013,https://www.iso.org/standard/50872.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-14:2013/Amd 1:2016,https://www.iso.org/standard/56245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-14:2013/PDAM 2,https://www.iso.org/standard/69772.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19794-15:2017,https://www.iso.org/standard/63865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19795-1:2006,https://www.iso.org/standard/41447.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC NP 19795-1,https://www.iso.org/standard/73515.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19795-2:2007,https://www.iso.org/standard/41448.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19795-2:2007/Amd 1:2015,https://www.iso.org/standard/59453.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 19795-3:2007,https://www.iso.org/standard/41449.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19795-4:2008,https://www.iso.org/standard/46329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19795-5:2011,https://www.iso.org/standard/51768.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19795-6:2012,https://www.iso.org/standard/50873.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 19795-7:2011,https://www.iso.org/standard/53059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC DIS 20027,https://www.iso.org/standard/70787.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TS 20027:2015,https://www.iso.org/standard/66864.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 20060:2010,https://www.iso.org/standard/54776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24708:2008,https://www.iso.org/standard/43611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24709-1:2017,https://www.iso.org/standard/62697.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24709-2:2007,https://www.iso.org/standard/43352.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24709-3:2011,https://www.iso.org/standard/43609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24713-1:2008,https://www.iso.org/standard/38823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24713-2:2008,https://www.iso.org/standard/46330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24713-3:2009,https://www.iso.org/standard/50683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 24722:2015,https://www.iso.org/standard/64061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24727-1:2014,https://www.iso.org/standard/61066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-2:2008,https://www.iso.org/standard/43308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-2:2008/Amd 1:2014,https://www.iso.org/standard/55488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-3:2008,https://www.iso.org/standard/43809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-3:2008/Amd 1:2014,https://www.iso.org/standard/55487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-3:2008/Cor 1:2010,https://www.iso.org/standard/55303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-4:2008,https://www.iso.org/standard/43358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-4:2008/Amd 1:2014,https://www.iso.org/standard/54792.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-4:2008/Cor 1:2011,https://www.iso.org/standard/55489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-5:2011,https://www.iso.org/standard/43357.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24727-6:2010,https://www.iso.org/standard/51572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC TR 24741:2018,https://www.iso.org/standard/72181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24779-1:2016,https://www.iso.org/standard/57379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24779-4:2017,https://www.iso.org/standard/60477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC DIS 24779-5,https://www.iso.org/standard/70909.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24779-9:2015,https://www.iso.org/standard/58100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 24787:2010,https://www.iso.org/standard/41557.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24787:2010/Cor 1:2013,https://www.iso.org/standard/62583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC DIS 24787,https://www.iso.org/standard/67801.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24789-1:2012,https://www.iso.org/standard/50564.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 24789-1,https://www.iso.org/standard/74959.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 24789-2:2011,https://www.iso.org/standard/41559.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC CD 24789-2,https://www.iso.org/standard/74960.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 25185-1:2016,https://www.iso.org/standard/62591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29109-1:2009,https://www.iso.org/standard/45132.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-1:2009/Cor 1:2010,https://www.iso.org/standard/57581.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-2:2010,https://www.iso.org/standard/50878.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-4:2010,https://www.iso.org/standard/50906.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-4:2010/Cor 1:2011,https://www.iso.org/standard/59281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-5:2014,https://www.iso.org/standard/61787.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC DIS 29109-5,https://www.iso.org/standard/73505.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-6:2011,https://www.iso.org/standard/50908.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-7:2011,https://www.iso.org/standard/54278.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-8:2011,https://www.iso.org/standard/54279.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-9:2011,https://www.iso.org/standard/53321.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29109-10:2010,https://www.iso.org/standard/50909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29120-1:2015,https://www.iso.org/standard/51116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29123:2007,https://www.iso.org/standard/45146.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC 29141:2009,https://www.iso.org/standard/45164.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29144:2014,https://www.iso.org/standard/45167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29156:2015,https://www.iso.org/standard/45235.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29159-1:2010,https://www.iso.org/standard/45238.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29164:2011,https://www.iso.org/standard/45243.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29189:2015,https://www.iso.org/standard/45268.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29194:2015,https://www.iso.org/standard/45273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29195:2015,https://www.iso.org/standard/45274.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC PDTR 29196,https://www.iso.org/standard/70951.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29196:2015,https://www.iso.org/standard/45275.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29198:2013,https://www.iso.org/standard/45277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29794-1:2016,https://www.iso.org/standard/62782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 29794-4:2017,https://www.iso.org/standard/62791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 29794-5:2010,https://www.iso.org/standard/50912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29794-6:2015,https://www.iso.org/standard/54066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30106-1:2016,https://www.iso.org/standard/53226.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30106-1:2016/PDAM 1,https://www.iso.org/standard/69881.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30106-2:2016,https://www.iso.org/standard/59554.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30106-3:2016,https://www.iso.org/standard/59555.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC CD 30106-4,https://www.iso.org/standard/72205.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30107-1:2016,https://www.iso.org/standard/53227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30107-2:2017,https://www.iso.org/standard/67380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30107-3:2017,https://www.iso.org/standard/67381.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30108-1:2015,https://www.iso.org/standard/53228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 30110:2015,https://www.iso.org/standard/53230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC TR 30117:2014,https://www.iso.org/standard/53237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO/IEC TR 30125:2016,https://www.iso.org/standard/53245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 30136,https://www.iso.org/standard/53256.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC CD 30137-1,https://www.iso.org/standard/64935.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC CD 30137-2,https://www.iso.org/standard/64936.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 37,https://www.iso.org/contents/data/committee/31/37/313770/x/catalogue/ -ISO/IEC 8613-1:1994,https://www.iso.org/standard/15928.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-1:1994/Cor 1:1998,https://www.iso.org/standard/30685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-2:1995,https://www.iso.org/standard/25650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-2:1995/Cor 1:1998,https://www.iso.org/standard/30675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-2:1995/Cor 2:1998,https://www.iso.org/standard/30684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-3:1995,https://www.iso.org/standard/22939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-4:1994,https://www.iso.org/standard/22941.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-4:1994/Cor 1:1998,https://www.iso.org/standard/30676.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-4:1994/Cor 2:1998,https://www.iso.org/standard/30677.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-5:1994,https://www.iso.org/standard/23410.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-5:1994/Cor 1:1998,https://www.iso.org/standard/30681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-5:1994/Cor 2:1998,https://www.iso.org/standard/30678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-6:1994,https://www.iso.org/standard/22943.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-6:1994/Cor 1:1998,https://www.iso.org/standard/30679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-7:1994,https://www.iso.org/standard/23411.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-7:1994/Amd 1:1998,https://www.iso.org/standard/28285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-7:1994/Cor 1:1998,https://www.iso.org/standard/30682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-8:1994,https://www.iso.org/standard/23412.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-9:1996,https://www.iso.org/standard/21065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-10:1995,https://www.iso.org/standard/26050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-11:1995,https://www.iso.org/standard/23323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-12:1996,https://www.iso.org/standard/22940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 8613-14:1997,https://www.iso.org/standard/23319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9066-1:1989,https://www.iso.org/standard/16639.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9066-2:1989,https://www.iso.org/standard/16640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9072-1:1989,https://www.iso.org/standard/16648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 9072-2:1989,https://www.iso.org/standard/16649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10021-1:2003,https://www.iso.org/standard/31632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10021-2:2003,https://www.iso.org/standard/33058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10021-4:2003,https://www.iso.org/standard/33059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10021-5:1999,https://www.iso.org/standard/33060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10021-6:2003,https://www.iso.org/standard/39564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10021-7:2003,https://www.iso.org/standard/31635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10021-8:1999,https://www.iso.org/standard/34072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10021-9:1999,https://www.iso.org/standard/33079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10021-10:1999,https://www.iso.org/standard/33063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 10021-11:1999,https://www.iso.org/standard/17968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-1:1991,https://www.iso.org/standard/18177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-1:1991/Amd 1:1995,https://www.iso.org/standard/23962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-1:1991/Amd 2:1996,https://www.iso.org/standard/24736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-1:1991/Cor 1:1994,https://www.iso.org/standard/23086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-1:1991/Cor 2:1994,https://www.iso.org/standard/23087.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-1:1991/Cor 3:1994,https://www.iso.org/standard/23958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-1:1991/Cor 4:1998,https://www.iso.org/standard/30234.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-2:1991,https://www.iso.org/standard/18178.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-2:1991/Amd 1:1995,https://www.iso.org/standard/23963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-2:1991/Amd 2:1996,https://www.iso.org/standard/24737.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-2:1991/Cor 1:1994,https://www.iso.org/standard/23959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10166-2:1991/Cor 2:1995,https://www.iso.org/standard/25949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10175-1:1996,https://www.iso.org/standard/18191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10175-1:1996/Cor 1:1998,https://www.iso.org/standard/30233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10175-1:1996/Cor 2:1998,https://www.iso.org/standard/30690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10175-1:1996/Cor 3:1998,https://www.iso.org/standard/30701.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10175-1:1996/Cor 4:1998,https://www.iso.org/standard/30702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10175-2:1996,https://www.iso.org/standard/18192.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 10175-3:2000,https://www.iso.org/standard/24322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 10183-1:1993,https://www.iso.org/standard/18202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 10183-2:1993,https://www.iso.org/standard/18203.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 10741-1:1995,https://www.iso.org/standard/18832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 10741-1:1995/Amd 1:1996,https://www.iso.org/standard/26768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 11580:2007,https://www.iso.org/standard/42779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 11581-1:2000,https://www.iso.org/standard/24267.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 11581-1:2011,https://www.iso.org/standard/46444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 11581-2:2000,https://www.iso.org/standard/24268.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 11581-3:2000,https://www.iso.org/standard/27721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 11581-5:2004,https://www.iso.org/standard/40060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 11581-6:1999,https://www.iso.org/standard/24263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 11581-10:2010,https://www.iso.org/standard/46445.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 11581-40:2011,https://www.iso.org/standard/51791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TS 11581-41:2014,https://www.iso.org/standard/54402.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 13712-1:1995,https://www.iso.org/standard/22301.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13712-1:1995/Amd 1:1996,https://www.iso.org/standard/25361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13712-1:1995/Cor 1:1996,https://www.iso.org/standard/27502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13712-2:1995,https://www.iso.org/standard/22302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13712-2:1995/Amd 1:1996,https://www.iso.org/standard/25362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13712-3:1995,https://www.iso.org/standard/21064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13712-3:1995/Amd 1:1996,https://www.iso.org/standard/25363.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 13712-3:1995/Cor 1:1996,https://www.iso.org/standard/27503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 14754:1999,https://www.iso.org/standard/25490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC CD 17549-1,https://www.iso.org/standard/70878.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 17549-2:2015,https://www.iso.org/standard/60036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 18016:2003,https://www.iso.org/standard/30801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 18021:2002,https://www.iso.org/standard/30806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 18035:2003,https://www.iso.org/standard/30820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 19764:2005,https://www.iso.org/standard/35399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC NP 20071-11,https://www.iso.org/standard/74345.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TS 20071-11:2012,https://www.iso.org/standard/59423.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TS 20071-15:2017,https://www.iso.org/standard/71904.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TS 20071-21:2015,https://www.iso.org/standard/63061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC DIS 20071-23,https://www.iso.org/standard/70722.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TS 20071-25:2017,https://www.iso.org/standard/69060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 22250-1:2002,https://www.iso.org/standard/34922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 24738:2006,https://www.iso.org/standard/38848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 24752-1:2014,https://www.iso.org/standard/60821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 24752-2:2014,https://www.iso.org/standard/57870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 24752-4:2014,https://www.iso.org/standard/60822.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 24752-5:2014,https://www.iso.org/standard/60802.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 24752-6:2014,https://www.iso.org/standard/57851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC FDIS 24752-8,https://www.iso.org/standard/70272.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 24755:2007,https://www.iso.org/standard/41525.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 24756:2009,https://www.iso.org/standard/41526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 24785:2009,https://www.iso.org/standard/41555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 24786:2009,https://www.iso.org/standard/41556.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC NP 24786,https://www.iso.org/standard/74346.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 29136:2012,https://www.iso.org/standard/45159.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 30112:2014,https://www.iso.org/standard/53232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 30113-1:2015,https://www.iso.org/standard/53233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC CD 30113-5,https://www.iso.org/standard/69059.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 30113-11:2017,https://www.iso.org/standard/62863.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 30122-1:2016,https://www.iso.org/standard/53242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 30122-2:2017,https://www.iso.org/standard/63161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 30122-3:2017,https://www.iso.org/standard/63162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 30122-4:2016,https://www.iso.org/standard/60499.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO 2709:2008,https://www.iso.org/standard/41319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 5428:1984,https://www.iso.org/standard/11471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO 8459:2009,https://www.iso.org/standard/44937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 8777:1993,https://www.iso.org/standard/16192.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 8879:1986,https://www.iso.org/standard/16387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 8879:1986/Amd 1:1988,https://www.iso.org/standard/16388.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 8879:1986/Cor 1:1996,https://www.iso.org/standard/28557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 8879:1986/Cor 2:1999,https://www.iso.org/standard/30235.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 9069:1988,https://www.iso.org/standard/16643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 9070:1991,https://www.iso.org/standard/16645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 9541-1:2012,https://www.iso.org/standard/54796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 9541-1:2012/Amd 1:2016,https://www.iso.org/standard/65532.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 9541-2:2012,https://www.iso.org/standard/54797.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 9541-3:2012,https://www.iso.org/standard/54798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 9541-4:2009,https://www.iso.org/standard/44148.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 9541-4:2009/Cor 1:2009,https://www.iso.org/standard/54910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 9573:1988,https://www.iso.org/standard/17319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 9573-11:2004,https://www.iso.org/standard/38368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 9573-13:1991,https://www.iso.org/standard/17332.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10036:1996,https://www.iso.org/standard/24744.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10036:1996/CD Cor 3,https://www.iso.org/standard/67539.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10036:1996/Cor 1:2001,https://www.iso.org/standard/35280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10036:1996/Cor 2:2002,https://www.iso.org/standard/37494.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC DIS 10036,https://www.iso.org/standard/70080.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 10160:2015,https://www.iso.org/standard/66169.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 10161-1:2014,https://www.iso.org/standard/66170.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 10161-2:2014,https://www.iso.org/standard/66171.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/IEC 10179:1996,https://www.iso.org/standard/18196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10179:1996/Amd 1:2003,https://www.iso.org/standard/35291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10179:1996/Amd 2:2005,https://www.iso.org/standard/40324.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10179:1996/Cor 1:2001,https://www.iso.org/standard/35279.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10180:1995,https://www.iso.org/standard/18197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 10180:1995/Cor 1:2001,https://www.iso.org/standard/36017.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 10244:2010,https://www.iso.org/standard/45935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/TR 10255:2009,https://www.iso.org/standard/45936.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/IEC 10744:1997,https://www.iso.org/standard/29303.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 12083:1994,https://www.iso.org/standard/20866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/CD 12620,https://www.iso.org/standard/69550.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO 12639:2004,https://www.iso.org/standard/34342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12639:2004/Amd 1:2007,https://www.iso.org/standard/43356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-1:1997/Cor 1:2004,https://www.iso.org/standard/40928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-1:1997,https://www.iso.org/standard/2105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-2:2004,https://www.iso.org/standard/33293.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-2:2004/Cor 1:2008,https://www.iso.org/standard/52837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-3:2007,https://www.iso.org/standard/35110.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-4:2011,https://www.iso.org/standard/45115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-5:2013,https://www.iso.org/standard/45116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12641:1997,https://www.iso.org/standard/2079.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12641-1:2016,https://www.iso.org/standard/68807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 12641-2,https://www.iso.org/standard/68575.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12642-1:2011,https://www.iso.org/standard/55410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12642-2:2006,https://www.iso.org/standard/39371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/IEC 13240:2001,https://www.iso.org/standard/29585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 13240:2001/Cor 1:2003,https://www.iso.org/standard/38223.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 13250:2003,https://www.iso.org/standard/38068.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 13250-2:2006,https://www.iso.org/standard/40017.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 13250-3:2013,https://www.iso.org/standard/59303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 13250-4:2009,https://www.iso.org/standard/52120.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 13250-5:2015,https://www.iso.org/standard/40757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 13250-6:2010,https://www.iso.org/standard/43940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 13673:2000,https://www.iso.org/standard/22553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/TR 14105:2011,https://www.iso.org/standard/52072.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 14289-1:2014,https://www.iso.org/standard/64599.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 14739-1:2014,https://www.iso.org/standard/54948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/IEC TR 15285:1998,https://www.iso.org/standard/27163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 2,https://www.iso.org/contents/data/committee/04/50/45050/x/catalogue/ -ISO/PAS 15339-1:2015,https://www.iso.org/standard/68675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/PAS 15339-2:2015,https://www.iso.org/standard/68676.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/IEC TR 15413:2001,https://www.iso.org/standard/27656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 15445:2000,https://www.iso.org/standard/27688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 15511:2011,https://www.iso.org/standard/57332.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 15836:2009,https://www.iso.org/standard/52142.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 15836:2009/Cor 1:2009,https://www.iso.org/standard/54784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 15836-1:2017,https://www.iso.org/standard/71339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/NP 15836-2,https://www.iso.org/standard/71341.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 15930-1:2001,https://www.iso.org/standard/29061.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-3:2002,https://www.iso.org/standard/34941.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-4:2003,https://www.iso.org/standard/39938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-6:2003,https://www.iso.org/standard/39940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-7:2010,https://www.iso.org/standard/55843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-8:2010,https://www.iso.org/standard/55844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-8:2010/Cor 1:2011,https://www.iso.org/standard/60210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 15930-9,https://www.iso.org/standard/63035.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16612-1:2005,https://www.iso.org/standard/38013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16612-2:2010,https://www.iso.org/standard/46428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16613-1:2017,https://www.iso.org/standard/65429.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16642:2017,https://www.iso.org/standard/56063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO 16684-1:2012,https://www.iso.org/standard/57421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16684-2:2014,https://www.iso.org/standard/57422.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16760:2014,https://www.iso.org/standard/57616.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 17469-1:2015,https://www.iso.org/standard/59859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 17933:2000,https://www.iso.org/standard/31634.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 17972-1:2015,https://www.iso.org/standard/61500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 17972-2:2016,https://www.iso.org/standard/61501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 17972-3:2017,https://www.iso.org/standard/61502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 17972-4:2018,https://www.iso.org/standard/71110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 18587:2017,https://www.iso.org/standard/62970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 18619:2015,https://www.iso.org/standard/63033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 18626:2017,https://www.iso.org/standard/73679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 19005-1:2005,https://www.iso.org/standard/38920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19005-1:2005/Cor 1:2007,https://www.iso.org/standard/45613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19005-1:2005/Cor 2:2011,https://www.iso.org/standard/60603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19005-2:2011,https://www.iso.org/standard/50655.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19005-3:2012,https://www.iso.org/standard/57229.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/CD 19005-4,https://www.iso.org/standard/71832.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19444-1:2016,https://www.iso.org/standard/64911.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/CD 19444-1,https://www.iso.org/standard/74272.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19445:2016,https://www.iso.org/standard/64912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/FDIS 19593-1,https://www.iso.org/standard/65428.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/IEC 19757-2:2008,https://www.iso.org/standard/52348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-3:2016,https://www.iso.org/standard/55982.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC CD 19757-3,https://www.iso.org/standard/74515.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-4:2006,https://www.iso.org/standard/38615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-4:2006/Cor 1:2008,https://www.iso.org/standard/50654.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-5:2011,https://www.iso.org/standard/52118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-7:2009,https://www.iso.org/standard/51085.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-7:2009/Cor 1:2015,https://www.iso.org/standard/67528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC CD 19757-7,https://www.iso.org/standard/73204.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-8:2008,https://www.iso.org/standard/40836.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-8:2008/Cor 1:2011,https://www.iso.org/standard/59630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-9:2008,https://www.iso.org/standard/41009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19757-11:2011,https://www.iso.org/standard/54793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 19845:2015,https://www.iso.org/standard/66370.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 20382-1:2017,https://www.iso.org/standard/71908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 20382-2:2017,https://www.iso.org/standard/71910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO 20614:2017,https://www.iso.org/standard/68562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/CD 20616-2,https://www.iso.org/standard/69572.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DIS 20677,https://www.iso.org/standard/68806.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 20775:2009,https://www.iso.org/standard/39735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 21127:2014,https://www.iso.org/standard/57832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/IEC 21320-1:2015,https://www.iso.org/standard/60101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 21720:2017,https://www.iso.org/standard/71490.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO/CD 21757-1,https://www.iso.org/standard/71559.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/CD 21757-2,https://www.iso.org/standard/71560.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/CD 21812-1,https://www.iso.org/standard/74407.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DTR 22299,https://www.iso.org/standard/73117.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/IEC PDTS 22424-1,https://www.iso.org/standard/73163.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PDTS 22424-2,https://www.iso.org/standard/73169.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/CD 22550,https://www.iso.org/standard/73419.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 23950:1998,https://www.iso.org/standard/27446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 24517-1:2008,https://www.iso.org/standard/42274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/DIS 24517-2.2,https://www.iso.org/standard/68454.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/IEC 24754-1:2008/Cor 1:2011,https://www.iso.org/standard/60219.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 24754-1:2008,https://www.iso.org/standard/41524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TR 24754-2:2011,https://www.iso.org/standard/55981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 25577:2013,https://www.iso.org/standard/62878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 26162:2012,https://www.iso.org/standard/43427.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO/IEC 26300:2006,https://www.iso.org/standard/43485.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 26300:2006/Amd 1:2012,https://www.iso.org/standard/59302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 26300:2006/Amd 1:2012/Cor 1:2014,https://www.iso.org/standard/66550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 26300:2006/Cor 1:2010,https://www.iso.org/standard/55752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 26300:2006/Cor 2:2011,https://www.iso.org/standard/59192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 26300:2006/Cor 3:2014,https://www.iso.org/standard/66551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 26300-1:2015,https://www.iso.org/standard/66363.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 26300-2:2015,https://www.iso.org/standard/66375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 26300-3:2015,https://www.iso.org/standard/66376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 28178:2009,https://www.iso.org/standard/44527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 28500:2017,https://www.iso.org/standard/68004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 28560-1:2014,https://www.iso.org/standard/65203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 28560-2:2014,https://www.iso.org/standard/65204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO 28560-3:2014,https://www.iso.org/standard/65205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/TS 28560-4:2014,https://www.iso.org/standard/62311.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 46/SC 4,https://www.iso.org/contents/data/committee/04/87/48798/x/catalogue/ -ISO/IEC TR 29166:2011,https://www.iso.org/standard/45245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-1:2016,https://www.iso.org/standard/71691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-2:2012,https://www.iso.org/standard/61796.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC CD 29500-2,https://www.iso.org/standard/70079.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-3:2015,https://www.iso.org/standard/65533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-4:2008/Cor 1:2010,https://www.iso.org/standard/55002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC 29500-4:2016,https://www.iso.org/standard/71692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 30042:2008,https://www.iso.org/standard/45797.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO/DIS 30042,https://www.iso.org/standard/62510.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO/IEC TR 30114-1:2016,https://www.iso.org/standard/62481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PRF 30114-2,https://www.iso.org/standard/62482.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PDTS 30135-1,https://www.iso.org/standard/73197.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TS 30135-1:2014,https://www.iso.org/standard/53255.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PDTS 30135-2,https://www.iso.org/standard/73198.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TS 30135-2:2014,https://www.iso.org/standard/63567.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PDTS 30135-3,https://www.iso.org/standard/73199.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TS 30135-3:2014,https://www.iso.org/standard/63568.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PDTS 30135-4,https://www.iso.org/standard/73200.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TS 30135-4:2014,https://www.iso.org/standard/63569.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PDTS 30135-5,https://www.iso.org/standard/73201.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TS 30135-5:2014,https://www.iso.org/standard/63570.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC PDTS 30135-6,https://www.iso.org/standard/73202.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TS 30135-6:2014,https://www.iso.org/standard/63571.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC NP TS 30135-7,https://www.iso.org/standard/73203.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO/IEC TS 30135-7:2014,https://www.iso.org/standard/63572.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 34,https://www.iso.org/contents/data/committee/04/53/45374/x/catalogue/ -ISO 32000-1:2008,https://www.iso.org/standard/51502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 32000-2:2017,https://www.iso.org/standard/63534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/IEC 40314:2016,https://www.iso.org/standard/58439.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 1004-1:2013,https://www.iso.org/standard/55881.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 1004-2:2013,https://www.iso.org/standard/61228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO/IEC 8484:2014,https://www.iso.org/standard/62622.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO 9144:1991,https://www.iso.org/standard/16741.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 9,https://www.iso.org/contents/data/committee/65/34/6534831/x/catalogue/ -ISO 9564-1:2017,https://www.iso.org/standard/68669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 9564-2:2014,https://www.iso.org/standard/61448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 9564-4:2016,https://www.iso.org/standard/61246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/AWI 11568,https://www.iso.org/standard/73993.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 11568-1:2005,https://www.iso.org/standard/34937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/WD 11568-1,https://www.iso.org/standard/68023.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 11568-2:2012,https://www.iso.org/standard/53568.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/WD 11568-2,https://www.iso.org/standard/68024.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 11568-4:2007,https://www.iso.org/standard/39666.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/WD 11568-4,https://www.iso.org/standard/68022.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 13491-1:2016,https://www.iso.org/standard/61137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 13491-2:2017,https://www.iso.org/standard/72178.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 13492:2007,https://www.iso.org/standard/39668.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/CD 13492,https://www.iso.org/standard/73992.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/AWI TR 14742,https://www.iso.org/standard/71256.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/TR 14742:2010,https://www.iso.org/standard/54951.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 15782-1:2009,https://www.iso.org/standard/46547.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 15782-2:2001,https://www.iso.org/standard/30969.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 16609:2012,https://www.iso.org/standard/55225.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/TR 19038:2005,https://www.iso.org/standard/33733.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 19092:2008,https://www.iso.org/standard/50145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 20038:2017,https://www.iso.org/standard/64400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 21188,https://www.iso.org/standard/63134.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO 21188:2006,https://www.iso.org/standard/35707.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 68/SC 2,https://www.iso.org/contents/data/committee/04/96/49670/x/catalogue/ -ISO/IEC Guide 77-1:2008,https://www.iso.org/standard/44065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 77-2:2008,https://www.iso.org/standard/44070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC Guide 77-3:2008,https://www.iso.org/standard/44071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 7462:1985,https://www.iso.org/standard/14197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 13399-1:2006,https://www.iso.org/standard/36757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 13399-1:2006/Amd 1:2010,https://www.iso.org/standard/50004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 13399-1:2006/Cor 1:2008,https://www.iso.org/standard/50576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 13399-1:2006/Cor 2:2011,https://www.iso.org/standard/59310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-2:2005/Cor 1:2011,https://www.iso.org/standard/59312.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-2:2014,https://www.iso.org/standard/54167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-3:2007/Cor 1:2011,https://www.iso.org/standard/59313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-3:2014,https://www.iso.org/standard/54168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-4:2007/Cor 1:2011,https://www.iso.org/standard/59314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-4:2014,https://www.iso.org/standard/54169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-5:2007/Cor 1:2011,https://www.iso.org/standard/59318.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-5:2014,https://www.iso.org/standard/54170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-50:2007/Cor 1:2011,https://www.iso.org/standard/59317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-50:2013,https://www.iso.org/standard/54171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-60:2014,https://www.iso.org/standard/54172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-70:2016,https://www.iso.org/standard/66565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-71:2016,https://www.iso.org/standard/66793.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-72:2016,https://www.iso.org/standard/66794.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-80:2017,https://www.iso.org/standard/68886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-100:2008,https://www.iso.org/standard/46415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-100:2008/Cor 1:2011,https://www.iso.org/standard/59319.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-150:2008,https://www.iso.org/standard/46416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-201:2014,https://www.iso.org/standard/60417.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-202:2015,https://www.iso.org/standard/60418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-203:2015,https://www.iso.org/standard/60419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-204:2016,https://www.iso.org/standard/63600.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-301:2013,https://www.iso.org/standard/60421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-302:2013,https://www.iso.org/standard/60422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-303:2016,https://www.iso.org/standard/60275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-304:2016,https://www.iso.org/standard/60274.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-305:2017,https://www.iso.org/standard/60423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-306,https://www.iso.org/standard/70658.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-307:2016,https://www.iso.org/standard/60425.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-308:2016,https://www.iso.org/standard/60426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-309:2016,https://www.iso.org/standard/60427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-310:2017,https://www.iso.org/standard/67684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-311:2016,https://www.iso.org/standard/60429.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-312:2016,https://www.iso.org/standard/60430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-313,https://www.iso.org/standard/70161.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-314,https://www.iso.org/standard/70162.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-315,https://www.iso.org/standard/70347.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-401:2016,https://www.iso.org/standard/60433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-403,https://www.iso.org/standard/70656.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 13399-405:2016,https://www.iso.org/standard/63601.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/PRF TS 13399-406,https://www.iso.org/standard/70657.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO/TS 18876-1:2003,https://www.iso.org/standard/33701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 18876-2:2003,https://www.iso.org/standard/33702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/ASTM 52915:2016,https://www.iso.org/standard/67472.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO/ASTM DIS 52915,https://www.iso.org/standard/74640.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 261,https://www.iso.org/contents/data/committee/62/90/629086/x/catalogue/ -ISO 8277:2013,https://www.iso.org/standard/60118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 10711:2012,https://www.iso.org/standard/46069.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 10992:2011,https://www.iso.org/standard/46550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 10992-2:2017,https://www.iso.org/standard/69694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 11067:2015,https://www.iso.org/standard/50091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 11270:2014,https://www.iso.org/standard/50347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 11766:2010,https://www.iso.org/standard/50763.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 11769:2010,https://www.iso.org/standard/50764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 12813:2015,https://www.iso.org/standard/64165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 12813:2015/Amd 1:2017,https://www.iso.org/standard/70033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 12813:2015/CD Amd 2,https://www.iso.org/standard/75263.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 12855:2015,https://www.iso.org/standard/64127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 12859:2009,https://www.iso.org/standard/52052.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13111-1:2017,https://www.iso.org/standard/61562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13140-1:2016,https://www.iso.org/standard/68245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13140-2:2016,https://www.iso.org/standard/70048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13141:2015,https://www.iso.org/standard/64166.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13141:2015/Amd 1:2017,https://www.iso.org/standard/70034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13143-1:2016,https://www.iso.org/standard/68246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13143-2:2016,https://www.iso.org/standard/68247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13183:2012,https://www.iso.org/standard/53449.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 13184-1:2013,https://www.iso.org/standard/57024.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13184-2:2016,https://www.iso.org/standard/61573.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13184-3:2017,https://www.iso.org/standard/71871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 13185-1:2012,https://www.iso.org/standard/53455.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 13185-2:2015,https://www.iso.org/standard/56821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/FDIS 13185-3,https://www.iso.org/standard/61572.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14296:2016,https://www.iso.org/standard/54587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/IEC 14662:2010,https://www.iso.org/standard/55290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/TR 14806:2013,https://www.iso.org/standard/55067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14813-1:2015,https://www.iso.org/standard/57393.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14813-5:2010,https://www.iso.org/standard/46008.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 14813-5,https://www.iso.org/standard/73746.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14813-6:2017,https://www.iso.org/standard/69109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14814:2006,https://www.iso.org/standard/37046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14815:2005,https://www.iso.org/standard/38666.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14816:2005,https://www.iso.org/standard/38667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14816:2005/DAmd 1,https://www.iso.org/standard/67247.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14817-1:2015,https://www.iso.org/standard/65668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14817-2:2015,https://www.iso.org/standard/65669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14817-3:2017,https://www.iso.org/standard/67416.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14819-1:2013,https://www.iso.org/standard/59230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14819-2:2013,https://www.iso.org/standard/59231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14819-3:2013,https://www.iso.org/standard/59232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14819-6:2006,https://www.iso.org/standard/37267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14823:2017,https://www.iso.org/standard/61546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14825:2011,https://www.iso.org/standard/54610.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14827-1:2005,https://www.iso.org/standard/41361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14827-2:2005,https://www.iso.org/standard/41362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 14827-3,https://www.iso.org/standard/75182.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 14827-3.2,https://www.iso.org/standard/61491.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14906:2011,https://www.iso.org/standard/52287.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14906:2011/Amd 1:2015,https://www.iso.org/standard/64757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14906:2011/Cor 1:2013,https://www.iso.org/standard/63684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 14906,https://www.iso.org/standard/72124.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 14907-1:2015,https://www.iso.org/standard/67917.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 14907-2:2016,https://www.iso.org/standard/69781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15006:2011,https://www.iso.org/standard/55322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15075:2003,https://www.iso.org/standard/38478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15622:2010,https://www.iso.org/standard/50024.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 15622,https://www.iso.org/standard/71515.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15623:2013,https://www.iso.org/standard/56655.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 15624:2001,https://www.iso.org/standard/27833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15628:2013,https://www.iso.org/standard/59288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-1:2012,https://www.iso.org/standard/59184.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-2:2013,https://www.iso.org/standard/59185.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-3:2013,https://www.iso.org/standard/59186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 15638-4,https://www.iso.org/standard/72094.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-5:2013,https://www.iso.org/standard/59188.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-6:2014,https://www.iso.org/standard/59189.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-7:2013,https://www.iso.org/standard/59190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-8:2014,https://www.iso.org/standard/62034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 15638-9,https://www.iso.org/standard/70651.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 15638-9:2013,https://www.iso.org/standard/62714.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-10:2017,https://www.iso.org/standard/62036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-11:2014,https://www.iso.org/standard/62037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-12:2014,https://www.iso.org/standard/62038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 15638-13:2015,https://www.iso.org/standard/62718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-14:2014,https://www.iso.org/standard/62052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-15:2014,https://www.iso.org/standard/62053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-16:2014,https://www.iso.org/standard/62054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-17:2014,https://www.iso.org/standard/62055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15638-18:2017,https://www.iso.org/standard/62056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 15638-19:2013,https://www.iso.org/standard/62725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/FDIS 15638-21,https://www.iso.org/standard/69690.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 15638-22,https://www.iso.org/standard/73949.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15662:2006,https://www.iso.org/standard/44322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15784-1:2008,https://www.iso.org/standard/39586.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15784-2:2015,https://www.iso.org/standard/55233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15784-2:2015/CD Amd 1,https://www.iso.org/standard/75360.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15784-3:2008,https://www.iso.org/standard/39588.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15849:2001,https://www.iso.org/standard/28737.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 15849:2001/Amd 1:2003,https://www.iso.org/standard/36886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO/IEC 15944-1:2011,https://www.iso.org/standard/55289.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC DIS 15944-1,https://www.iso.org/standard/73175.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 15944-2:2015,https://www.iso.org/standard/65167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 15944-4:2015,https://www.iso.org/standard/67199.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 15944-5:2008,https://www.iso.org/standard/38629.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC DIS 15944-5,https://www.iso.org/standard/67200.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC TR 15944-6:2015,https://www.iso.org/standard/67201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 15944-7:2009,https://www.iso.org/standard/51545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC DIS 15944-7,https://www.iso.org/standard/67202.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 15944-8:2012,https://www.iso.org/standard/51544.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC DIS 15944-8,https://www.iso.org/standard/73641.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 15944-9:2015,https://www.iso.org/standard/66211.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 15944-10:2013,https://www.iso.org/standard/56078.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC DIS 15944-12,https://www.iso.org/standard/65145.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO/IEC 15944-20:2015,https://www.iso.org/standard/63473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 32,https://www.iso.org/contents/data/committee/04/53/45342/x/catalogue/ -ISO 16155:2006,https://www.iso.org/standard/40898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO/TR 16401-1:2018,https://www.iso.org/standard/70039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 16401-2:2018,https://www.iso.org/standard/70041.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 16407-1:2017,https://www.iso.org/standard/69779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 16407-2,https://www.iso.org/standard/70049.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16407-2:2012,https://www.iso.org/standard/56768.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 16410-1:2017,https://www.iso.org/standard/69780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 16410-2,https://www.iso.org/standard/70050.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16410-2:2012,https://www.iso.org/standard/56769.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16460:2016,https://www.iso.org/standard/71287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 16461,https://www.iso.org/standard/56791.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16785:2014,https://www.iso.org/standard/65675.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 16786:2015,https://www.iso.org/standard/57770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 16787:2017,https://www.iso.org/standard/73768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 16951:2004,https://www.iso.org/standard/29024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 17185-1:2014,https://www.iso.org/standard/59291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17185-2:2015,https://www.iso.org/standard/61547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17185-3:2015,https://www.iso.org/standard/61548.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17187:2013,https://www.iso.org/standard/59292.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17261:2012,https://www.iso.org/standard/55494.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17262:2012,https://www.iso.org/standard/55495.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17262:2012/Cor 1:2013,https://www.iso.org/standard/65603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17262:2012/DAmd 1,https://www.iso.org/standard/67248.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17263:2012,https://www.iso.org/standard/55496.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17263:2012/Cor 1:2013,https://www.iso.org/standard/65602.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17264:2009,https://www.iso.org/standard/46227.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17264:2009/DAmd 1,https://www.iso.org/standard/67249.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17267:2009,https://www.iso.org/standard/44700.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17361:2017,https://www.iso.org/standard/72349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17384:2008,https://www.iso.org/standard/50433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17387:2008,https://www.iso.org/standard/43654.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17419:2014,https://www.iso.org/standard/59720.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/PRF 17419-1,https://www.iso.org/standard/70077.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/FDIS 17423,https://www.iso.org/standard/68267.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17423:2014,https://www.iso.org/standard/59721.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17424:2015,https://www.iso.org/standard/59722.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17425:2016,https://www.iso.org/standard/59723.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17426:2016,https://www.iso.org/standard/59724.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17427:2014,https://www.iso.org/standard/59725.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/FDIS 17427-1,https://www.iso.org/standard/66924.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-2:2015,https://www.iso.org/standard/66947.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-3:2015,https://www.iso.org/standard/66955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-4:2015,https://www.iso.org/standard/66956.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 17427-5,https://www.iso.org/standard/66957.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-6:2015,https://www.iso.org/standard/66958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-7:2015,https://www.iso.org/standard/66959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-8:2015,https://www.iso.org/standard/66960.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-9:2015,https://www.iso.org/standard/66961.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17427-10:2015,https://www.iso.org/standard/66962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 17427-12,https://www.iso.org/standard/66964.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 17427-13,https://www.iso.org/standard/66965.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 17427-14,https://www.iso.org/standard/66966.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/NP 17429,https://www.iso.org/standard/73780.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17429:2017,https://www.iso.org/standard/59727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17438-1:2016,https://www.iso.org/standard/59742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 17438-4,https://www.iso.org/standard/67089.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17444-1:2017,https://www.iso.org/standard/72358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17444-2:2017,https://www.iso.org/standard/72359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17452:2007,https://www.iso.org/standard/38373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17465-1:2014,https://www.iso.org/standard/62889.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17465-2:2015,https://www.iso.org/standard/62890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 17465-3:2015,https://www.iso.org/standard/63842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17488:2016,https://www.iso.org/standard/59887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 17515-1:2015,https://www.iso.org/standard/59929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 17515-3,https://www.iso.org/standard/73238.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17572-1:2015,https://www.iso.org/standard/63400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17572-2:2015,https://www.iso.org/standard/63401.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 17572-2,https://www.iso.org/standard/69468.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17572-3:2015,https://www.iso.org/standard/63402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17573:2010,https://www.iso.org/standard/45963.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 17573-1,https://www.iso.org/standard/71982.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 17574:2017,https://www.iso.org/standard/70051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17575-1:2016,https://www.iso.org/standard/64161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17575-2:2016,https://www.iso.org/standard/64162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17575-3:2016,https://www.iso.org/standard/64163.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17687:2007,https://www.iso.org/standard/33155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17894:2005,https://www.iso.org/standard/31619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 17987-2:2016,https://www.iso.org/standard/61223.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TS 18234-1:2013,https://www.iso.org/standard/57458.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-2:2013,https://www.iso.org/standard/61596.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-3:2013,https://www.iso.org/standard/59244.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-4:2006,https://www.iso.org/standard/44064.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-5:2006,https://www.iso.org/standard/37265.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-6:2006,https://www.iso.org/standard/37266.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-7:2013,https://www.iso.org/standard/44611.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-8:2012,https://www.iso.org/standard/44612.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-9:2013,https://www.iso.org/standard/44613.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-10:2013,https://www.iso.org/standard/44614.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18234-11:2013,https://www.iso.org/standard/59715.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 18317:2017,https://www.iso.org/standard/62124.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 18495-1:2016,https://www.iso.org/standard/62623.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DTR 18561-1,https://www.iso.org/standard/62891.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 18682:2016,https://www.iso.org/standard/63250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 18750,https://www.iso.org/standard/69433.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 18750:2015,https://www.iso.org/standard/63273.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 19079:2016,https://www.iso.org/standard/63883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 19080:2016,https://www.iso.org/standard/63884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 19082,https://www.iso.org/standard/63889.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 19083-1:2016,https://www.iso.org/standard/71510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/NP TS 19091,https://www.iso.org/standard/73781.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 19091:2017,https://www.iso.org/standard/69897.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 19237:2017,https://www.iso.org/standard/64111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 19297-1,https://www.iso.org/standard/73116.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 19299:2015,https://www.iso.org/standard/64605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 19321:2015,https://www.iso.org/standard/64606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 19414,https://www.iso.org/standard/64824.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 19638,https://www.iso.org/standard/65599.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 19639:2015,https://www.iso.org/standard/65600.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/IEC 19845:2015,https://www.iso.org/standard/66370.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/TS 20026:2017,https://www.iso.org/standard/73360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 20035,https://www.iso.org/standard/66879.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 20452:2007,https://www.iso.org/standard/39447.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 20524-1,https://www.iso.org/standard/68244.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 20526:2017,https://www.iso.org/standard/68262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 20529-1:2017,https://www.iso.org/standard/73257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 20529-2,https://www.iso.org/standard/71522.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 20545:2017,https://www.iso.org/standard/68300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD TR 21190,https://www.iso.org/standard/70061.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21210:2012,https://www.iso.org/standard/46549.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21210:2012/Amd 1:2017,https://www.iso.org/standard/65691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/AWI 21210,https://www.iso.org/standard/73262.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21212:2008,https://www.iso.org/standard/45378.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21213:2008,https://www.iso.org/standard/45377.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21214:2015,https://www.iso.org/standard/51523.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21215:2010,https://www.iso.org/standard/51398.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 21215,https://www.iso.org/standard/70074.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21216:2012,https://www.iso.org/standard/59703.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/AWI 21216-1,https://www.iso.org/standard/70560.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/AWI 21216-2,https://www.iso.org/standard/70561.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21217:2014,https://www.iso.org/standard/61570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21218:2013,https://www.iso.org/standard/61569.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21218:2013/Amd 1:2014,https://www.iso.org/standard/65608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 21218,https://www.iso.org/standard/73263.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-1:2016,https://www.iso.org/standard/63110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-2:2014,https://www.iso.org/standard/57459.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-3:2015,https://www.iso.org/standard/57460.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-4:2015,https://www.iso.org/standard/59713.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-5:2015,https://www.iso.org/standard/57461.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-6:2015,https://www.iso.org/standard/57462.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-7:2017,https://www.iso.org/standard/63111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-9:2016,https://www.iso.org/standard/63112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-10:2016,https://www.iso.org/standard/63113.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-14:2016,https://www.iso.org/standard/63115.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-15:2016,https://www.iso.org/standard/63116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-16:2016,https://www.iso.org/standard/63117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-18:2015,https://www.iso.org/standard/57463.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-19:2016,https://www.iso.org/standard/63118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-21,https://www.iso.org/standard/63121.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-22:2017,https://www.iso.org/standard/63122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-23:2016,https://www.iso.org/standard/64588.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-24:2017,https://www.iso.org/standard/69692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21219-25:2017,https://www.iso.org/standard/69693.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DTS 21219-26,https://www.iso.org/standard/73765.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 21707:2008,https://www.iso.org/standard/34668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 21717,https://www.iso.org/standard/71471.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 21718:2017,https://www.iso.org/standard/71475.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21719-1:2018,https://www.iso.org/standard/71476.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 21719-2:2018,https://www.iso.org/standard/71477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21849:2006,https://www.iso.org/standard/38162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 22274:2013,https://www.iso.org/standard/36173.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 37/SC 3,https://www.iso.org/contents/data/committee/04/81/48136/x/catalogue/ -ISO/DIS 22418,https://www.iso.org/standard/73150.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22837:2009,https://www.iso.org/standard/45418.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22839:2013,https://www.iso.org/standard/45339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22840:2010,https://www.iso.org/standard/36521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/PAS 22853:2005,https://www.iso.org/standard/41172.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 22951:2009,https://www.iso.org/standard/46009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24014-1:2015,https://www.iso.org/standard/61545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24014-2:2013,https://www.iso.org/standard/50127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24014-3:2013,https://www.iso.org/standard/62354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24097-1:2017,https://www.iso.org/standard/69117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24097-2:2015,https://www.iso.org/standard/65673.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DTR 24097-3,https://www.iso.org/standard/65674.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24098:2007,https://www.iso.org/standard/42015.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24099:2011,https://www.iso.org/standard/42016.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24100:2010,https://www.iso.org/standard/42017.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24101-1:2008,https://www.iso.org/standard/50128.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24101-2:2010,https://www.iso.org/standard/50129.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-1:2013,https://www.iso.org/standard/61561.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-1:2013/Amd 1:2017,https://www.iso.org/standard/65604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 24102-1,https://www.iso.org/standard/73264.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-2:2015,https://www.iso.org/standard/61563.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 24102-2,https://www.iso.org/standard/73265.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-3:2013,https://www.iso.org/standard/61564.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-3:2013/Amd 1:2017,https://www.iso.org/standard/65605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 24102-3,https://www.iso.org/standard/73266.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-4:2013,https://www.iso.org/standard/61565.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-4:2013/Amd 1:2017,https://www.iso.org/standard/65606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 24102-4,https://www.iso.org/standard/73267.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-5:2013,https://www.iso.org/standard/61566.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24102-5:2013/Amd 1:2017,https://www.iso.org/standard/65607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/PRF 24102-6,https://www.iso.org/standard/62292.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24103:2009,https://www.iso.org/standard/45806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24529:2008,https://www.iso.org/standard/39591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24530-1:2006,https://www.iso.org/standard/37268.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24530-2:2006,https://www.iso.org/standard/37500.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24530-3:2006,https://www.iso.org/standard/37501.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24530-4:2006,https://www.iso.org/standard/37502.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24531:2013,https://www.iso.org/standard/57392.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 24532:2006,https://www.iso.org/standard/37504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 24533:2012,https://www.iso.org/standard/46422.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-1:2010,https://www.iso.org/standard/51849.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-2:2010,https://www.iso.org/standard/51850.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-3:2016,https://www.iso.org/standard/59306.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-4:2010,https://www.iso.org/standard/51852.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-4:2010/DAmd 1,https://www.iso.org/standard/68872.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-5:2011,https://www.iso.org/standard/54570.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24534-5:2011/DAmd 1,https://www.iso.org/standard/68873.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24535:2007,https://www.iso.org/standard/39589.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 24978:2009,https://www.iso.org/standard/42727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 25100:2012,https://www.iso.org/standard/59699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 25102:2008,https://www.iso.org/standard/42743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 25104:2008,https://www.iso.org/standard/42745.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 25110:2017,https://www.iso.org/standard/72360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 25111:2009,https://www.iso.org/standard/42751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 25112:2010,https://www.iso.org/standard/42752.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 25113:2010,https://www.iso.org/standard/42753.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 25114:2010,https://www.iso.org/standard/42754.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 26683-1:2013,https://www.iso.org/standard/61000.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 26683-2:2013,https://www.iso.org/standard/57600.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 26684:2015,https://www.iso.org/standard/43653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 26999:2012,https://www.iso.org/standard/62218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 28005-1:2013,https://www.iso.org/standard/54105.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO 28005-2:2011,https://www.iso.org/standard/42144.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO/CD 28005-2,https://www.iso.org/standard/74059.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO/TR 28682:2008,https://www.iso.org/standard/44878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29281-1:2013,https://www.iso.org/standard/61567.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29281-1:2013/Amd 1:2017,https://www.iso.org/standard/65609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 29281-1,https://www.iso.org/standard/70075.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29281-2:2013,https://www.iso.org/standard/61568.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29281-2:2013/Amd 1:2014,https://www.iso.org/standard/65610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29282:2011,https://www.iso.org/standard/45380.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 29283:2011,https://www.iso.org/standard/45381.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 29284:2012,https://www.iso.org/standard/45382.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 9735:1988,https://www.iso.org/standard/17592.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735:1988/Amd 1:1992,https://www.iso.org/standard/17593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-1:2002,https://www.iso.org/standard/35032.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-2:2002,https://www.iso.org/standard/35033.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-3:2002,https://www.iso.org/standard/35034.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-4:2002,https://www.iso.org/standard/35035.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-5:2002,https://www.iso.org/standard/35036.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-6:2002,https://www.iso.org/standard/35037.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-7:2002,https://www.iso.org/standard/35038.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-8:2002,https://www.iso.org/standard/35039.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-9:2002,https://www.iso.org/standard/35040.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 9735-10:2014,https://www.iso.org/standard/61434.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 14533-1:2014,https://www.iso.org/standard/64756.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 14533-2:2012,https://www.iso.org/standard/56025.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO 14533-3:2017,https://www.iso.org/standard/67937.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/PRF TR 18262,https://www.iso.org/standard/61905.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/CD 19626-1,https://www.iso.org/standard/65536.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/CD 20415,https://www.iso.org/standard/67938.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/TS 20625:2002,https://www.iso.org/standard/37020.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 154,https://www.iso.org/contents/data/committee/05/31/53186/x/catalogue/ -ISO/IEC TR 14543-4:2002,https://www.iso.org/standard/36199.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-10:2012,https://www.iso.org/standard/59865.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-11:2016,https://www.iso.org/standard/66628.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-2-1:2006,https://www.iso.org/standard/43315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-1:2006,https://www.iso.org/standard/43364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-2:2006,https://www.iso.org/standard/43365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-3:2007,https://www.iso.org/standard/43839.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-4:2007,https://www.iso.org/standard/43840.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-5:2007,https://www.iso.org/standard/43841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-6:2007,https://www.iso.org/standard/43842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-3-7:2007,https://www.iso.org/standard/43843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-4-1:2008,https://www.iso.org/standard/44623.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-4-2:2008,https://www.iso.org/standard/44624.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-4-3:2015,https://www.iso.org/standard/63216.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-1:2010,https://www.iso.org/standard/44391.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-3:2012,https://www.iso.org/standard/51470.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-4:2010,https://www.iso.org/standard/44392.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-5:2012,https://www.iso.org/standard/51471.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-6:2012,https://www.iso.org/standard/51472.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-7:2015,https://www.iso.org/standard/64274.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-8:2017,https://www.iso.org/standard/64275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-9:2017,https://www.iso.org/standard/64276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC FDIS 14543-5-11,https://www.iso.org/standard/64279.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC DIS 14543-5-12,https://www.iso.org/standard/64280.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-21:2012,https://www.iso.org/standard/51467.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14543-5-22:2010,https://www.iso.org/standard/51469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC DIS 14543-5-101,https://www.iso.org/standard/64277.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC CD 14543-5-102,https://www.iso.org/standard/64278.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 16484-1:2010,https://www.iso.org/standard/37300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16484-2:2004,https://www.iso.org/standard/29682.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/DIS 16484-2,https://www.iso.org/standard/68865.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16484-3:2005,https://www.iso.org/standard/37205.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16484-5:2017,https://www.iso.org/standard/71935.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16484-6:2014,https://www.iso.org/standard/63754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/WD 16484-7,https://www.iso.org/standard/57929.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/DIS 19650-1.2,https://www.iso.org/standard/68078.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/DIS 19650-2.2,https://www.iso.org/standard/68080.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/CD 21597-1,https://www.iso.org/standard/74389.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/CD 21597-2,https://www.iso.org/standard/74390.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/CD 22510,https://www.iso.org/standard/73364.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/DTS 50008,https://www.iso.org/standard/51871.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 301,https://www.iso.org/contents/data/committee/60/77/6077221/x/catalogue/ -ISO 6709:2008,https://www.iso.org/standard/39242.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 6709:2008/Cor 1:2009,https://www.iso.org/standard/53539.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/NP 6709,https://www.iso.org/standard/75147.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 14825:2011,https://www.iso.org/standard/54610.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 14975:2000,https://www.iso.org/standard/24270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 3,https://www.iso.org/contents/data/committee/05/46/54638/x/catalogue/ -ISO 14976:1998,https://www.iso.org/standard/24269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 3,https://www.iso.org/contents/data/committee/05/46/54638/x/catalogue/ -ISO 16413:2013,https://www.iso.org/standard/56703.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 201,https://www.iso.org/contents/data/committee/05/46/54618/x/catalogue/ -ISO 19101-1:2014,https://www.iso.org/standard/59164.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/PRF 19101-2,https://www.iso.org/standard/69325.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19101-2:2008,https://www.iso.org/standard/39983.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19103:2015,https://www.iso.org/standard/56734.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19104:2016,https://www.iso.org/standard/63541.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19105:2000,https://www.iso.org/standard/26010.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/NP 19105,https://www.iso.org/standard/73119.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19106:2004,https://www.iso.org/standard/26011.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19107:2003,https://www.iso.org/standard/26012.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/DIS 19107,https://www.iso.org/standard/66175.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19108:2002,https://www.iso.org/standard/26013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19108:2002/Cor 1:2006,https://www.iso.org/standard/44883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19109:2015,https://www.iso.org/standard/59193.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19110:2016,https://www.iso.org/standard/57303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19111:2007,https://www.iso.org/standard/41126.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19111,https://www.iso.org/standard/74039.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19111-2:2009,https://www.iso.org/standard/44075.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19112:2003,https://www.iso.org/standard/26017.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/DIS 19112,https://www.iso.org/standard/70742.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19115-1:2014,https://www.iso.org/standard/53798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19115-1:2014/Amd 1,https://www.iso.org/standard/73118.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19115-2,https://www.iso.org/standard/67039.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19115-2:2009,https://www.iso.org/standard/39229.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19115-3:2016,https://www.iso.org/standard/32579.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19116:2004,https://www.iso.org/standard/37805.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19116,https://www.iso.org/standard/70882.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19117:2012,https://www.iso.org/standard/46226.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19118:2011,https://www.iso.org/standard/44212.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19119:2016,https://www.iso.org/standard/59221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TR 19120:2001,https://www.iso.org/standard/28928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TR 19121:2000,https://www.iso.org/standard/29775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TR 19122:2004,https://www.iso.org/standard/31088.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19123:2005,https://www.iso.org/standard/40121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/NP 19123-1,https://www.iso.org/standard/70743.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/FDIS 19123-2,https://www.iso.org/standard/70948.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19125-1:2004,https://www.iso.org/standard/40114.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19125-2:2004,https://www.iso.org/standard/40115.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19126:2009,https://www.iso.org/standard/44875.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19126,https://www.iso.org/standard/69326.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/PRF 19127,https://www.iso.org/standard/67252.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19127:2005,https://www.iso.org/standard/41784.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19128:2005,https://www.iso.org/standard/32546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19129:2009,https://www.iso.org/standard/43041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19130:2010,https://www.iso.org/standard/51789.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/PRF 19130-1,https://www.iso.org/standard/66847.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19130-2:2014,https://www.iso.org/standard/56113.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19131:2007,https://www.iso.org/standard/36760.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19131:2007/Amd 1:2011,https://www.iso.org/standard/51790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19131,https://www.iso.org/standard/71297.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19132:2007,https://www.iso.org/standard/40601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19133:2005,https://www.iso.org/standard/32551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19134:2007,https://www.iso.org/standard/32552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19135-1:2015,https://www.iso.org/standard/54721.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19135-2:2012,https://www.iso.org/standard/55998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19136:2007,https://www.iso.org/standard/32554.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19136-2:2015,https://www.iso.org/standard/61585.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19137:2007,https://www.iso.org/standard/32555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19139:2007,https://www.iso.org/standard/32557.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/NP TS 19139-1,https://www.iso.org/standard/67253.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19139-2:2012,https://www.iso.org/standard/57104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19141:2008,https://www.iso.org/standard/41445.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19142:2010,https://www.iso.org/standard/42136.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19142,https://www.iso.org/standard/69792.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19143:2010,https://www.iso.org/standard/42137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19143,https://www.iso.org/standard/69793.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19144-1:2009,https://www.iso.org/standard/32562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19144-1:2009/Cor 1:2012,https://www.iso.org/standard/62480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19144-2:2012,https://www.iso.org/standard/44342.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19145:2013,https://www.iso.org/standard/32563.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19146:2010,https://www.iso.org/standard/44873.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/DIS 19146,https://www.iso.org/standard/72217.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19147:2015,https://www.iso.org/standard/44874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19148:2012,https://www.iso.org/standard/32566.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/NP 19148,https://www.iso.org/standard/75150.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19149:2011,https://www.iso.org/standard/32567.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19150-1:2012,https://www.iso.org/standard/57465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19150-2:2015,https://www.iso.org/standard/57466.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19150-4,https://www.iso.org/standard/72177.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19152:2012,https://www.iso.org/standard/51206.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19153:2014,https://www.iso.org/standard/32571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19154:2014,https://www.iso.org/standard/32572.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19155:2012,https://www.iso.org/standard/32573.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19155-2:2017,https://www.iso.org/standard/63593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19156:2011,https://www.iso.org/standard/32574.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19157:2013,https://www.iso.org/standard/32575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19157:2013/Amd 1:2018,https://www.iso.org/standard/70884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19157-2:2016,https://www.iso.org/standard/66197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19158:2012,https://www.iso.org/standard/32576.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19159-1:2014,https://www.iso.org/standard/60080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19159-2:2016,https://www.iso.org/standard/64768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19159-3,https://www.iso.org/standard/66768.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/PRF TS 19159-3,https://www.iso.org/standard/74032.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19160-1:2015,https://www.iso.org/standard/61710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 19160-3,https://www.iso.org/standard/71247.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19160-4:2017,https://www.iso.org/standard/64242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO 19162:2015,https://www.iso.org/standard/63094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/TS 19163-1:2016,https://www.iso.org/standard/32581.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/FDIS 19165-1,https://www.iso.org/standard/67325.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 211,https://www.iso.org/contents/data/committee/05/49/54904/x/catalogue/ -ISO/CD 20171,https://www.iso.org/standard/67206.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 202/SC 4,https://www.iso.org/contents/data/committee/31/26/312661/x/catalogue/ -ISO 1828:2012,https://www.iso.org/standard/52388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 10159:2011,https://www.iso.org/standard/45841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/HL7 10781:2015,https://www.iso.org/standard/57757.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-00103:2015,https://www.iso.org/standard/64941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10101:2004,https://www.iso.org/standard/37890.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10101:2004/Amd 1:2017,https://www.iso.org/standard/72078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10102:2014,https://www.iso.org/standard/63903.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10103:2014,https://www.iso.org/standard/63904.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10201:2004,https://www.iso.org/standard/36341.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10404:2010,https://www.iso.org/standard/54572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10406:2012,https://www.iso.org/standard/61876.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10407:2010,https://www.iso.org/standard/54573.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10408:2010,https://www.iso.org/standard/54309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10415:2010,https://www.iso.org/standard/54310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10417:2017,https://www.iso.org/standard/70739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10418:2014,https://www.iso.org/standard/61897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10418:2014/Cor 1:2016,https://www.iso.org/standard/70740.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10419:2016,https://www.iso.org/standard/69528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10420:2012,https://www.iso.org/standard/61055.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10421:2012,https://www.iso.org/standard/61056.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10422:2017,https://www.iso.org/standard/72376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10424:2016,https://www.iso.org/standard/68906.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10424:2016/Cor 1:2018,https://www.iso.org/standard/74911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10425:2016,https://www.iso.org/standard/67821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10427,https://www.iso.org/standard/73759.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10441:2015,https://www.iso.org/standard/64868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10442:2015,https://www.iso.org/standard/66212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10471:2010,https://www.iso.org/standard/54328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-10472:2012,https://www.iso.org/standard/54364.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-20101:2004,https://www.iso.org/standard/36347.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-20601:2016,https://www.iso.org/standard/66717.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-20601:2016/Cor 1:2016,https://www.iso.org/standard/71886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE FDIS 11073-20702,https://www.iso.org/standard/74703.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-30200:2004,https://www.iso.org/standard/33669.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-30200:2004/Amd 1:2015,https://www.iso.org/standard/66213.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-30300:2004,https://www.iso.org/standard/36346.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEEE 11073-30400:2012,https://www.iso.org/standard/61068.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 11073-90101:2008,https://www.iso.org/standard/44084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 11073-91064:2009,https://www.iso.org/standard/46493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 11238:2012,https://www.iso.org/standard/55031.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/PRF 11238,https://www.iso.org/standard/69697.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 11239:2012,https://www.iso.org/standard/55032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 11240:2012,https://www.iso.org/standard/55033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 11487:2008,https://www.iso.org/standard/50558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 11615:2017,https://www.iso.org/standard/70150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 11616:2017,https://www.iso.org/standard/70044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DTS 11633-1,https://www.iso.org/standard/69336.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 11633-1:2009,https://www.iso.org/standard/53336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 11633-2:2009,https://www.iso.org/standard/53337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 11636:2009,https://www.iso.org/standard/50638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 12052:2017,https://www.iso.org/standard/72941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 12300:2014,https://www.iso.org/standard/51344.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 12309:2009,https://www.iso.org/standard/51345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 12310:2015,https://www.iso.org/standard/51346.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DIS 12381,https://www.iso.org/standard/74356.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 12773-1:2009,https://www.iso.org/standard/51683.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 12773-2:2009,https://www.iso.org/standard/53599.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 12967-1:2009,https://www.iso.org/standard/50500.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/NP 12967-1,https://www.iso.org/standard/71037.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 12967-2:2009,https://www.iso.org/standard/51121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/NP 12967-2,https://www.iso.org/standard/71038.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 12967-3:2009,https://www.iso.org/standard/51122.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/NP 12967-3,https://www.iso.org/standard/71039.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 13054:2012,https://www.iso.org/standard/52465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 13119:2012,https://www.iso.org/standard/52951.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 13120:2013,https://www.iso.org/standard/52952.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DIS 13120,https://www.iso.org/standard/69318.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 13128:2012,https://www.iso.org/standard/53046.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 13131:2014,https://www.iso.org/standard/53052.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/WD TR 13581,https://www.iso.org/standard/54035.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 13582:2015,https://www.iso.org/standard/69652.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 13606-1:2008,https://www.iso.org/standard/40784.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DIS 13606-1,https://www.iso.org/standard/67868.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 13606-2:2008,https://www.iso.org/standard/50119.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DIS 13606-2,https://www.iso.org/standard/62305.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 13606-3:2009,https://www.iso.org/standard/50120.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DIS 13606-3,https://www.iso.org/standard/62303.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DIS 13606-4,https://www.iso.org/standard/62306.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 13606-4:2009,https://www.iso.org/standard/50121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 13606-5:2010,https://www.iso.org/standard/50122.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DIS 13606-5,https://www.iso.org/standard/62304.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 13940:2015,https://www.iso.org/standard/58102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 13972:2015,https://www.iso.org/standard/62416.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 14199:2015,https://www.iso.org/standard/66767.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 14265:2011,https://www.iso.org/standard/54547.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 14292:2012,https://www.iso.org/standard/54568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 14441:2013,https://www.iso.org/standard/61347.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 14639-1:2012,https://www.iso.org/standard/54902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 14639-2:2014,https://www.iso.org/standard/54903.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 16056-1:2004,https://www.iso.org/standard/37351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 16056-2:2004,https://www.iso.org/standard/37352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 16058:2004,https://www.iso.org/standard/37353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 16277-1:2015,https://www.iso.org/standard/56044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 16278:2016,https://www.iso.org/standard/56047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/HL7 16527:2016,https://www.iso.org/standard/57046.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/NP TS 16791,https://www.iso.org/standard/75312.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 16791:2014,https://www.iso.org/standard/57776.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 16843-1:2016,https://www.iso.org/standard/69406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 16843-2:2015,https://www.iso.org/standard/69409.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 16843-3:2017,https://www.iso.org/standard/67899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 16843-4:2017,https://www.iso.org/standard/68587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DTS 16843-5,https://www.iso.org/standard/71053.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 17090-1:2013,https://www.iso.org/standard/63019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 17090-2:2015,https://www.iso.org/standard/63020.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 17090-3:2008,https://www.iso.org/standard/39847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 17090-4:2014,https://www.iso.org/standard/61185.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/NP 17090-4,https://www.iso.org/standard/74357.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 17090-5:2017,https://www.iso.org/standard/67883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 17115:2007,https://www.iso.org/standard/32881.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/NP 17115,https://www.iso.org/standard/73695.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 17117:2002,https://www.iso.org/standard/32883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/FDIS 17117-1,https://www.iso.org/standard/61979.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 17119:2005,https://www.iso.org/standard/32885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 17251:2016,https://www.iso.org/standard/64152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 17432:2004,https://www.iso.org/standard/38361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 17439:2014,https://www.iso.org/standard/59744.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 17522:2015,https://www.iso.org/standard/59949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 17523:2016,https://www.iso.org/standard/59952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 17791:2013,https://www.iso.org/standard/60549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 17938:2014,https://www.iso.org/standard/61071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 17948:2014,https://www.iso.org/standard/61081.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 17975:2015,https://www.iso.org/standard/61186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 18062:2016,https://www.iso.org/standard/61247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 18104:2014,https://www.iso.org/standard/59431.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 18232:2006,https://www.iso.org/standard/38610.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 18307:2001,https://www.iso.org/standard/33396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 18308:2011,https://www.iso.org/standard/52823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 18530:2014,https://www.iso.org/standard/62805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 18638:2017,https://www.iso.org/standard/63100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 18790-1:2015,https://www.iso.org/standard/63381.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 18812:2003,https://www.iso.org/standard/33668.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 18864:2017,https://www.iso.org/standard/63617.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 19231:2014,https://www.iso.org/standard/64062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 19256:2016,https://www.iso.org/standard/64154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 19293,https://www.iso.org/standard/64452.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 19669:2017,https://www.iso.org/standard/65948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/PRF TS 19844,https://www.iso.org/standard/71965.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 19844:2016,https://www.iso.org/standard/70594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DTR 20055,https://www.iso.org/standard/66913.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 20301:2014,https://www.iso.org/standard/60501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 20302:2014,https://www.iso.org/standard/64232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/PRF TS 20405,https://www.iso.org/standard/67900.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 20428:2017,https://www.iso.org/standard/67981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 20440:2016,https://www.iso.org/standard/68040.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 20443:2017,https://www.iso.org/standard/68041.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 20451:2017,https://www.iso.org/standard/68086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 20514:2005,https://www.iso.org/standard/39525.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 20831:2017,https://www.iso.org/standard/69322.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/PRF TS 21089,https://www.iso.org/standard/66936.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 21089:2004,https://www.iso.org/standard/35645.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21090:2011,https://www.iso.org/standard/35646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21091:2013,https://www.iso.org/standard/51432.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21298:2017,https://www.iso.org/standard/63514.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 21547:2010,https://www.iso.org/standard/44479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 21548:2010,https://www.iso.org/standard/44480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21549-1:2013,https://www.iso.org/standard/60396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21549-2:2014,https://www.iso.org/standard/60488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21549-3:2014,https://www.iso.org/standard/60489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21549-4:2014,https://www.iso.org/standard/60490.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21549-5:2015,https://www.iso.org/standard/63030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21549-6:2008,https://www.iso.org/standard/42833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21549-7:2016,https://www.iso.org/standard/63739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21549-8:2010,https://www.iso.org/standard/35024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DTS 21564,https://www.iso.org/standard/71088.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 21667:2010,https://www.iso.org/standard/55193.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 21730:2007,https://www.iso.org/standard/44865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/HL7 21731:2014,https://www.iso.org/standard/61454.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DTR 21835,https://www.iso.org/standard/71923.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 22077-1:2015,https://www.iso.org/standard/61871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 22077-2:2015,https://www.iso.org/standard/64551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 22077-3:2015,https://www.iso.org/standard/64552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 22220:2011,https://www.iso.org/standard/59755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 22221:2006,https://www.iso.org/standard/40783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DTS 22287,https://www.iso.org/standard/73036.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DTS 22558,https://www.iso.org/standard/73437.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 22600-1:2014,https://www.iso.org/standard/62653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 22600-2:2014,https://www.iso.org/standard/62654.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 22600-3:2014,https://www.iso.org/standard/62655.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 22789:2010,https://www.iso.org/standard/41141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/DTS 22835,https://www.iso.org/standard/74009.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 22857:2013,https://www.iso.org/standard/52955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 25237:2017,https://www.iso.org/standard/63553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 25237:2008,https://www.iso.org/standard/42807.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 25238:2007,https://www.iso.org/standard/42809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 25720:2009,https://www.iso.org/standard/43182.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 27527:2010,https://www.iso.org/standard/44216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 27789:2013,https://www.iso.org/standard/44315.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/NP 27789,https://www.iso.org/standard/75313.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TS 27790:2009,https://www.iso.org/standard/44316.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO 27799:2016,https://www.iso.org/standard/62777.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 27809:2007,https://www.iso.org/standard/44320.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/HL7 27931:2009,https://www.iso.org/standard/44428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/HL7 27932:2009,https://www.iso.org/standard/44429.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/HL7 27951:2009,https://www.iso.org/standard/44437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/HL7 27953-1:2011,https://www.iso.org/standard/53824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/HL7 27953-2:2011,https://www.iso.org/standard/53825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 28380-1:2014,https://www.iso.org/standard/63383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 28380-2:2014,https://www.iso.org/standard/46207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 28380-3:2014,https://www.iso.org/standard/61471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEC DIS 29138-1,https://www.iso.org/standard/71953.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC TR 29138-1:2009,https://www.iso.org/standard/45161.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29138-2:2009,https://www.iso.org/standard/51341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29138-3:2009,https://www.iso.org/standard/51342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/TS 29585:2010,https://www.iso.org/standard/45582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC 62304:2006,https://www.iso.org/standard/38421.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 62304:2006/Amd 1:2015,https://www.iso.org/standard/64686.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC/CD 62304,https://www.iso.org/standard/71604.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC 80001-1:2010,https://www.iso.org/standard/44863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/NP 80001-1,https://www.iso.org/standard/72026.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-8:2016,https://www.iso.org/standard/64635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-1:2012,https://www.iso.org/standard/57934.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-2:2012,https://www.iso.org/standard/57939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-3:2012,https://www.iso.org/standard/57941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-4:2012,https://www.iso.org/standard/62323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-5:2014,https://www.iso.org/standard/63718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 80001-2-6:2014,https://www.iso.org/standard/63108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/TR 80001-2-7:2015,https://www.iso.org/standard/63509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80001-2-9:2017,https://www.iso.org/standard/69355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -IEC/TR 80002-1:2009,https://www.iso.org/standard/54146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -ISO/TR 80002-2:2017,https://www.iso.org/standard/60044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC/TR 80002-3:2014,https://www.iso.org/standard/65624.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 210,https://www.iso.org/contents/data/committee/05/48/54892/x/catalogue/ -IEC 82304-1:2016,https://www.iso.org/standard/59543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 215,https://www.iso.org/contents/data/committee/05/49/54960/x/catalogue/ -ISO/IEC 12785-1:2009,https://www.iso.org/standard/51707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 12785-1:2009/Cor 1:2013,https://www.iso.org/standard/63170.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 12785-2:2011,https://www.iso.org/standard/52421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 12785-3:2012,https://www.iso.org/standard/52422.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 18120:2016,https://www.iso.org/standard/61510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 18121:2015,https://www.iso.org/standard/61511.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC FDIS 19479,https://www.iso.org/standard/65061.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19778-1:2015,https://www.iso.org/standard/65100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19778-2:2015,https://www.iso.org/standard/65098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19778-3:2015,https://www.iso.org/standard/65099.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19780-1:2015,https://www.iso.org/standard/65081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-1:2011,https://www.iso.org/standard/50772.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-1:2011/Amd 1:2014,https://www.iso.org/standard/61338.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-2:2011,https://www.iso.org/standard/46157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-2:2011/Amd 1:2016,https://www.iso.org/standard/67374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-3:2011,https://www.iso.org/standard/52774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-3:2011/Amd 1:2016,https://www.iso.org/standard/67375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-4:2014,https://www.iso.org/standard/52775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-5:2012,https://www.iso.org/standard/52776.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-7,https://www.iso.org/standard/60613.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-8:2015,https://www.iso.org/standard/62845.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19788-9:2015,https://www.iso.org/standard/62846.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 19788-11:2017,https://www.iso.org/standard/65587.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 19796-3:2009,https://www.iso.org/standard/46159.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 20006-1:2014,https://www.iso.org/standard/57359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 20006-2:2015,https://www.iso.org/standard/57360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TS 20013:2015,https://www.iso.org/standard/50960.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 20016-1:2014,https://www.iso.org/standard/50963.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC DIS 20016-1,https://www.iso.org/standard/74250.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 20748-1:2016,https://www.iso.org/standard/68976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC PDTR 20821,https://www.iso.org/standard/69316.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 23988:2007,https://www.iso.org/standard/41840.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 24703:2004,https://www.iso.org/standard/38921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 24751-1:2008,https://www.iso.org/standard/41521.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC CD 24751-1,https://www.iso.org/standard/68588.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 24751-2:2008,https://www.iso.org/standard/43603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 24751-3:2008,https://www.iso.org/standard/43604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 24763:2011,https://www.iso.org/standard/46453.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29127:2011,https://www.iso.org/standard/45150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TS 29140-1:2011,https://www.iso.org/standard/45163.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TS 29140-2:2011,https://www.iso.org/standard/52808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC TR 29163-1:2009,https://www.iso.org/standard/45242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29163-2:2009,https://www.iso.org/standard/53535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29163-3:2009,https://www.iso.org/standard/53536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 29163-4:2009,https://www.iso.org/standard/53537.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 29187-1:2013,https://www.iso.org/standard/45266.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC CD 29187-1,https://www.iso.org/standard/70586.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 40180:2017,https://www.iso.org/standard/62825.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC CD 40183,https://www.iso.org/standard/67503.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -IEC 948:1988,https://www.iso.org/standard/19697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 9241-151:2008,https://www.iso.org/standard/37031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO/IEC 10192-1:2002,https://www.iso.org/standard/36483.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC TR 10192-2:2000,https://www.iso.org/standard/34980.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 10192-3:2017,https://www.iso.org/standard/69215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 11783-1:2017,https://www.iso.org/standard/57556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-2:2012,https://www.iso.org/standard/54389.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-2:2012/Cor 1:2012,https://www.iso.org/standard/62813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 11783-2,https://www.iso.org/standard/71171.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-3:2014,https://www.iso.org/standard/57554.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 11783-3,https://www.iso.org/standard/71172.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-4:2011,https://www.iso.org/standard/50577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-5:2011,https://www.iso.org/standard/50578.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/WD 11783-5,https://www.iso.org/standard/74366.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-6:2014,https://www.iso.org/standard/61646.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/FDIS 11783-6,https://www.iso.org/standard/71173.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-7:2015,https://www.iso.org/standard/59380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-7:2015/DAmd 1,https://www.iso.org/standard/73001.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-8:2006,https://www.iso.org/standard/39123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-9:2012,https://www.iso.org/standard/54390.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/CD 11783-9,https://www.iso.org/standard/71175.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-10:2015,https://www.iso.org/standard/61581.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-11:2011,https://www.iso.org/standard/57849.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-12:2014,https://www.iso.org/standard/59381.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/CD 11783-12,https://www.iso.org/standard/71184.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-13:2011,https://www.iso.org/standard/56765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-14:2013,https://www.iso.org/standard/43984.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 12188-1:2010,https://www.iso.org/standard/51271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 12188-2:2012,https://www.iso.org/standard/54926.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 13374-1:2003,https://www.iso.org/standard/21832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13374-2:2007,https://www.iso.org/standard/36645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13374-3:2012,https://www.iso.org/standard/37611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 13374-4:2015,https://www.iso.org/standard/54933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 5,https://www.iso.org/contents/data/committee/05/15/51538/x/catalogue/ -ISO 14223-1:2011,https://www.iso.org/standard/50979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 14223-2:2010,https://www.iso.org/standard/45364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 14223-3,https://www.iso.org/standard/59602.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 14452:2012,https://www.iso.org/standard/54775.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/IEC 14762:2009,https://www.iso.org/standard/46326.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 14908-1:2012,https://www.iso.org/standard/60203.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14908-2:2012,https://www.iso.org/standard/60204.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14908-3:2012,https://www.iso.org/standard/60205.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC 14908-4:2012,https://www.iso.org/standard/60206.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 6,https://www.iso.org/contents/data/committee/04/50/45072/x/catalogue/ -ISO/IEC TR 15044:2000,https://www.iso.org/standard/26312.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15045-1:2004,https://www.iso.org/standard/26313.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15045-2:2012,https://www.iso.org/standard/55235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 15067-2:1997,https://www.iso.org/standard/26361.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 15067-3:2012,https://www.iso.org/standard/55596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 15067-3-2:2016,https://www.iso.org/standard/69385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC DIS 15067-3-3,https://www.iso.org/standard/71626.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 15143-1:2010,https://www.iso.org/standard/37406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 15143-2:2010,https://www.iso.org/standard/37407.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO/TS 15143-3:2016,https://www.iso.org/standard/67556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO/IEC 15897:2011,https://www.iso.org/standard/50707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO/IEC 15897:2011/Cor 1:2013,https://www.iso.org/standard/62695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 35,https://www.iso.org/contents/data/committee/04/53/45382/x/catalogue/ -ISO 17532:2007,https://www.iso.org/standard/38404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/IEC 18012-1:2004,https://www.iso.org/standard/30797.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 18012-2:2012,https://www.iso.org/standard/46317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 18831:2016,https://www.iso.org/standard/63516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO/DIS 20112-1,https://www.iso.org/standard/67070.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 20380:2017,https://www.iso.org/standard/67857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO/IEC TR 20748-2:2017,https://www.iso.org/standard/71991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 36,https://www.iso.org/contents/data/committee/04/53/45392/x/catalogue/ -ISO/IEC 24767-1:2008,https://www.iso.org/standard/43880.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 24767-2:2009,https://www.iso.org/standard/43881.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO 25119-1:2010,https://www.iso.org/standard/45047.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 25119-1,https://www.iso.org/standard/69025.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 25119-2:2010,https://www.iso.org/standard/45048.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 25119-2,https://www.iso.org/standard/69026.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 25119-3:2010,https://www.iso.org/standard/45049.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 25119-3,https://www.iso.org/standard/69027.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 25119-4:2010,https://www.iso.org/standard/45050.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 25119-4,https://www.iso.org/standard/69028.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/IEC TR 29106:2007,https://www.iso.org/standard/45129.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 29106:2007/Amd 1:2012,https://www.iso.org/standard/59753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 29107-1:2010,https://www.iso.org/standard/45130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC TR 29108:2013,https://www.iso.org/standard/45131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29145-1:2014,https://www.iso.org/standard/61372.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29145-2:2014,https://www.iso.org/standard/61373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 29145-3:2014,https://www.iso.org/standard/61374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 30100-1:2016,https://www.iso.org/standard/69908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 30100-2:2016,https://www.iso.org/standard/68093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 30100-3:2016,https://www.iso.org/standard/56727.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 25,https://www.iso.org/contents/data/committee/04/52/45270/x/catalogue/ -ISO/IEC 30182:2017,https://www.iso.org/standard/53302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 1730:1980,https://www.iso.org/standard/6349.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 2257:1980,https://www.iso.org/standard/7074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 2258:1976,https://www.iso.org/standard/7075.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 2775:1977,https://www.iso.org/standard/7757.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 3540:1976,https://www.iso.org/standard/8930.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 3791:1976,https://www.iso.org/standard/9323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 3866:1977,https://www.iso.org/standard/9457.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 3883:1977,https://www.iso.org/standard/9490.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 4232-3:1984,https://www.iso.org/standard/10037.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 4882:1979,https://www.iso.org/standard/10875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 5138-1:1978,https://www.iso.org/standard/11136.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-3:1981,https://www.iso.org/standard/11138.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-4:1981,https://www.iso.org/standard/11139.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-5:1981,https://www.iso.org/standard/11140.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-7:1986,https://www.iso.org/standard/11142.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-9:1984,https://www.iso.org/standard/11144.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 10779:2008,https://www.iso.org/standard/46086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 21118:2012,https://www.iso.org/standard/57467.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC WD 21118,https://www.iso.org/standard/74674.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 24700:2005,https://www.iso.org/standard/34909.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 8036:2015,https://www.iso.org/standard/67551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8037-1:1986,https://www.iso.org/standard/15048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8037-2:1997,https://www.iso.org/standard/15049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8037-2:1997/Cor 1:2002,https://www.iso.org/standard/37581.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8038:2013,https://www.iso.org/standard/62859.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8039:2014,https://www.iso.org/standard/66260.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8255-1:2017,https://www.iso.org/standard/72610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8255-2:2013,https://www.iso.org/standard/62964.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8576:1996,https://www.iso.org/standard/15862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8578:2012,https://www.iso.org/standard/50988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-5:2005,https://www.iso.org/standard/34990.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/AWI 8600-5,https://www.iso.org/standard/65019.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 8600-6:2005,https://www.iso.org/standard/36294.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/AWI 8600-6,https://www.iso.org/standard/65020.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 9022-1:2016,https://www.iso.org/standard/69938.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-2:2015,https://www.iso.org/standard/63316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-3:2015,https://www.iso.org/standard/67342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-4:2014,https://www.iso.org/standard/66490.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-6:2015,https://www.iso.org/standard/67343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-7:2015,https://www.iso.org/standard/67345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-8:2015,https://www.iso.org/standard/67346.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-9:2016,https://www.iso.org/standard/67534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-11:2015,https://www.iso.org/standard/67535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-12:2015,https://www.iso.org/standard/67536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-14:2015,https://www.iso.org/standard/67537.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-17:2015,https://www.iso.org/standard/67538.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-20:2015,https://www.iso.org/standard/66491.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-22:2012,https://www.iso.org/standard/55773.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9022-23:2016,https://www.iso.org/standard/69939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9039:2008,https://www.iso.org/standard/50090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 9211-1:2010,https://www.iso.org/standard/45849.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/DIS 9211-1,https://www.iso.org/standard/70345.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 9211-2:2010,https://www.iso.org/standard/45850.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 9211-3:2008,https://www.iso.org/standard/44241.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 9211-4:2012,https://www.iso.org/standard/56077.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/DIS 9211-5,https://www.iso.org/standard/69398.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/DIS 9211-6,https://www.iso.org/standard/69399.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/DIS 9211-7,https://www.iso.org/standard/69400.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/DIS 9211-8,https://www.iso.org/standard/69401.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 9336-3:1994,https://www.iso.org/standard/17020.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO/AWI 9336-3,https://www.iso.org/standard/75280.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 9344:2016,https://www.iso.org/standard/67549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/DIS 9345,https://www.iso.org/standard/70798.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 9345-1:2012,https://www.iso.org/standard/61065.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 9345-2:2014,https://www.iso.org/standard/64986.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 9358:1994,https://www.iso.org/standard/17042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10109:2015,https://www.iso.org/standard/67533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-1:2006,https://www.iso.org/standard/35991.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/CD 10110-1,https://www.iso.org/standard/57574.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-2:1996,https://www.iso.org/standard/18089.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-3:1996,https://www.iso.org/standard/18090.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-4:1997,https://www.iso.org/standard/21004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-5:2015,https://www.iso.org/standard/57566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-6:2015,https://www.iso.org/standard/55772.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-7:2017,https://www.iso.org/standard/65444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-8:2010,https://www.iso.org/standard/46553.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/CD 10110-8,https://www.iso.org/standard/69532.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-9:2016,https://www.iso.org/standard/63596.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-10:2004,https://www.iso.org/standard/34625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-11:2016,https://www.iso.org/standard/68315.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-12:2007,https://www.iso.org/standard/37993.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-12:2007/Amd 1:2013,https://www.iso.org/standard/59309.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/CD 10110-12,https://www.iso.org/standard/69956.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-14:2007,https://www.iso.org/standard/42363.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/DIS 10110-14,https://www.iso.org/standard/69957.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-17:2004,https://www.iso.org/standard/30924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/DIS 10110-18,https://www.iso.org/standard/68155.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10110-19:2015,https://www.iso.org/standard/60467.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10934-1:2002,https://www.iso.org/standard/35112.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/CD 10934-1,https://www.iso.org/standard/75096.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 10934-2:2007,https://www.iso.org/standard/39473.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/CD 10934-2,https://www.iso.org/standard/72608.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 10935:2009,https://www.iso.org/standard/51305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 10936-1:2017,https://www.iso.org/standard/69819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 10936-2:2010,https://www.iso.org/standard/44537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 7,https://www.iso.org/contents/data/committee/05/37/53738/x/catalogue/ -ISO 10937:2000,https://www.iso.org/standard/33193.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 11382:2010,https://www.iso.org/standard/50525.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 11882:1997,https://www.iso.org/standard/20310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 11883:1997,https://www.iso.org/standard/20311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 11884-1:2006,https://www.iso.org/standard/39553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 11884-2:2007,https://www.iso.org/standard/41829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 12853:2015,https://www.iso.org/standard/64984.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 13695:2004,https://www.iso.org/standard/35640.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 9,https://www.iso.org/contents/data/committee/05/37/53764/x/catalogue/ -ISO 14132-1:2015,https://www.iso.org/standard/66244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14132-2:2015,https://www.iso.org/standard/66245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14132-3:2014,https://www.iso.org/standard/62423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14132-4:2015,https://www.iso.org/standard/66246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14132-5:2008,https://www.iso.org/standard/42759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14133-1:2016,https://www.iso.org/standard/68887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14133-2:2016,https://www.iso.org/standard/68888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14134:2006,https://www.iso.org/standard/43190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14135-1:2017,https://www.iso.org/standard/70461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14135-2:2017,https://www.iso.org/standard/70462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14490-1:2005,https://www.iso.org/standard/36638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14490-2:2005,https://www.iso.org/standard/38741.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14490-3:2016,https://www.iso.org/standard/62429.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14490-4:2005,https://www.iso.org/standard/38742.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14490-5:2017,https://www.iso.org/standard/70570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14490-6:2014,https://www.iso.org/standard/66250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14490-7:2016,https://www.iso.org/standard/68890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14490-8:2011,https://www.iso.org/standard/50662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO 14997:2017,https://www.iso.org/standard/63464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/TR 14999-1:2005,https://www.iso.org/standard/39932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/CD TR 14999-2,https://www.iso.org/standard/69952.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/TR 14999-2:2005,https://www.iso.org/standard/39933.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/TR 14999-3:2005,https://www.iso.org/standard/39934.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 14999-4:2015,https://www.iso.org/standard/57568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 15227:2000,https://www.iso.org/standard/26965.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 15362:2014,https://www.iso.org/standard/64985.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 15795:2002,https://www.iso.org/standard/28654.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 15795:2002/Cor 1:2007,https://www.iso.org/standard/50027.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 15932:2013,https://www.iso.org/standard/55560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 1,https://www.iso.org/contents/data/committee/05/46/54684/x/catalogue/ -ISO 16700:2016,https://www.iso.org/standard/65375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 4,https://www.iso.org/contents/data/committee/31/26/312661/x/catalogue/ -ISO/TR 16743:2013,https://www.iso.org/standard/57570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 17328:2014,https://www.iso.org/standard/59592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 17411:2014,https://www.iso.org/standard/59668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 18221:2016,https://www.iso.org/standard/61810.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 19012-1:2013,https://www.iso.org/standard/61652.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 19012-2:2013,https://www.iso.org/standard/61836.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 19012-3:2015,https://www.iso.org/standard/61653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 19055:2015,https://www.iso.org/standard/63833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 19056-1:2015,https://www.iso.org/standard/63834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/CD 19056-2,https://www.iso.org/standard/69822.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO/FDIS 19740,https://www.iso.org/standard/67624.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/FDIS 19741,https://www.iso.org/standard/67625.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/FDIS 19742,https://www.iso.org/standard/67626.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/CD 20171,https://www.iso.org/standard/67206.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 202/SC 4,https://www.iso.org/contents/data/committee/31/26/312661/x/catalogue/ -ISO 20263:2017,https://www.iso.org/standard/67438.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 3,https://www.iso.org/contents/data/committee/05/46/54694/x/catalogue/ -ISO 20473:2007,https://www.iso.org/standard/39482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172,https://www.iso.org/contents/data/committee/05/36/53686/x/catalogue/ -ISO 20711:2017,https://www.iso.org/standard/68899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO/CD 21073,https://www.iso.org/standard/69820.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 172/SC 5,https://www.iso.org/contents/data/committee/05/37/53720/x/catalogue/ -ISO 21094:2008,https://www.iso.org/standard/42758.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 4,https://www.iso.org/contents/data/committee/05/37/53708/x/catalogue/ -ISO/CD 21395-1,https://www.iso.org/standard/70857.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/TR 21477:2017,https://www.iso.org/standard/70820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO/DIS 21575,https://www.iso.org/standard/71112.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 22493:2014,https://www.iso.org/standard/64932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 1,https://www.iso.org/contents/data/committee/05/46/54684/x/catalogue/ -ISO 23584-1:2009,https://www.iso.org/standard/46000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172,https://www.iso.org/contents/data/committee/05/36/53686/x/catalogue/ -ISO 23584-2:2012,https://www.iso.org/standard/46001.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 172,https://www.iso.org/contents/data/committee/05/36/53686/x/catalogue/ -ISO/TS 24597:2011,https://www.iso.org/standard/55760.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 202/SC 4,https://www.iso.org/contents/data/committee/31/26/312661/x/catalogue/ -ISO 25297-1:2012,https://www.iso.org/standard/60265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 25297-2:2011,https://www.iso.org/standard/46571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 29301:2017,https://www.iso.org/standard/70360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 3,https://www.iso.org/contents/data/committee/05/46/54694/x/catalogue/ -ISO 5-1:2009,https://www.iso.org/standard/52913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5-2:2009,https://www.iso.org/standard/52914.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5-3:2009,https://www.iso.org/standard/52915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5-4:2009,https://www.iso.org/standard/52916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3664:2009,https://www.iso.org/standard/43234.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 17850:2015,https://www.iso.org/standard/60819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 17957:2015,https://www.iso.org/standard/31974.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 19262:2015,https://www.iso.org/standard/64219.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TR 19263-1:2017,https://www.iso.org/standard/64220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 19264-1:2017,https://www.iso.org/standard/64221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 20462-1:2005,https://www.iso.org/standard/38330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 20462-2:2005,https://www.iso.org/standard/38332.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 20462-2:2005/Cor 1:2007,https://www.iso.org/standard/45565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 20462-3:2012,https://www.iso.org/standard/54617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 516:1999,https://www.iso.org/standard/20176.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/DIS 516,https://www.iso.org/standard/70966.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 517:2008,https://www.iso.org/standard/50089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 518:2006,https://www.iso.org/standard/36330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 519:1992,https://www.iso.org/standard/4582.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1203:1998,https://www.iso.org/standard/20053.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1222:2010,https://www.iso.org/standard/55918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1230:2007,https://www.iso.org/standard/43503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1754:2010,https://www.iso.org/standard/55864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1755:1987,https://www.iso.org/standard/6386.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1948:1987,https://www.iso.org/standard/6673.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 2720:1974,https://www.iso.org/standard/7690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 2721:2013,https://www.iso.org/standard/62742.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 2827:1988,https://www.iso.org/standard/7824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3028:1984,https://www.iso.org/standard/8114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5763:1989,https://www.iso.org/standard/11892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6053:1979,https://www.iso.org/standard/12247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6516:1980,https://www.iso.org/standard/12897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6728:1983,https://www.iso.org/standard/13185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 7589:2002,https://www.iso.org/standard/33979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 8478:2017,https://www.iso.org/standard/72599.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 8581:1994,https://www.iso.org/standard/15868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 9336-1:2010,https://www.iso.org/standard/54927.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 1,https://www.iso.org/contents/data/committee/05/36/53688/x/catalogue/ -ISO 10157:1991,https://www.iso.org/standard/18152.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10330:2002,https://www.iso.org/standard/36319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 11106-1:1997,https://www.iso.org/standard/19095.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 11315-1:1997,https://www.iso.org/standard/1368.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 11315-2:1997,https://www.iso.org/standard/25441.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 12231:2012,https://www.iso.org/standard/53614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 12232:2006,https://www.iso.org/standard/37777.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD 12232,https://www.iso.org/standard/73758.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 12233:2017,https://www.iso.org/standard/71696.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 14524:2009,https://www.iso.org/standard/43527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 14808:1997,https://www.iso.org/standard/25606.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 15781:2015,https://www.iso.org/standard/67463.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD 15781,https://www.iso.org/standard/67622.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 17321-1:2012,https://www.iso.org/standard/56537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TR 17321-2:2012,https://www.iso.org/standard/58003.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TR 17321-3:2017,https://www.iso.org/standard/69475.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 17321-4:2016,https://www.iso.org/standard/64252.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18383:2015,https://www.iso.org/standard/62322.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18844:2017,https://www.iso.org/standard/63552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 19084:2015,https://www.iso.org/standard/63894.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/DIS 19093,https://www.iso.org/standard/63942.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TR 19247:2016,https://www.iso.org/standard/64134.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 19567-1:2016,https://www.iso.org/standard/65356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD TS 19567-2,https://www.iso.org/standard/70955.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 20328:2016,https://www.iso.org/standard/67695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD 20793,https://www.iso.org/standard/69134.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD 20954-1,https://www.iso.org/standard/69570.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 21550:2004,https://www.iso.org/standard/35939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6:1993,https://www.iso.org/standard/3580.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 732:2000,https://www.iso.org/standard/29302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 897:2000,https://www.iso.org/standard/32372.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1007:2000,https://www.iso.org/standard/28855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1008:1992,https://www.iso.org/standard/5474.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1009:2000,https://www.iso.org/standard/30542.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 1012:1998,https://www.iso.org/standard/25440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 2240:2003,https://www.iso.org/standard/34533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3772:2000,https://www.iso.org/standard/28007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5800:1987,https://www.iso.org/standard/11948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5800:1987/Cor 1:2001,https://www.iso.org/standard/35540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6148:2001,https://www.iso.org/standard/33392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6328:2000,https://www.iso.org/standard/22022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6846:1992,https://www.iso.org/standard/13355.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 7187:1995,https://www.iso.org/standard/22023.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 7829:1986,https://www.iso.org/standard/14751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 7829:1986/Cor 1:2001,https://www.iso.org/standard/35543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 8374:2001,https://www.iso.org/standard/15535.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 9378:1993,https://www.iso.org/standard/17070.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 9848:2003,https://www.iso.org/standard/34534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10505:2009,https://www.iso.org/standard/50747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 11312:2000,https://www.iso.org/standard/29449.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 13450:1996,https://www.iso.org/standard/22024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 13450:1996/Cor 1:2001,https://www.iso.org/standard/36018.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 14535:2001,https://www.iso.org/standard/24641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 14546:2000,https://www.iso.org/standard/24723.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 14548:1998,https://www.iso.org/standard/24725.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 14807:2001,https://www.iso.org/standard/25605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18055-1:2004,https://www.iso.org/standard/33299.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18901:2010,https://www.iso.org/standard/51029.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18902:2013,https://www.iso.org/standard/60377.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18903:2002,https://www.iso.org/standard/31927.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18904:2000,https://www.iso.org/standard/31928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18905:2002,https://www.iso.org/standard/31929.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18906:2000,https://www.iso.org/standard/31930.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18907:2013,https://www.iso.org/standard/62628.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18908:2000,https://www.iso.org/standard/31932.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18909:2006,https://www.iso.org/standard/44126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18909:2006/Cor 1:2006,https://www.iso.org/standard/44952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18910:2000,https://www.iso.org/standard/31934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18911:2010,https://www.iso.org/standard/46602.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18912:2002,https://www.iso.org/standard/31936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18913:2012,https://www.iso.org/standard/54702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18914:2013,https://www.iso.org/standard/62634.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18915:2000,https://www.iso.org/standard/31939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18917:1999,https://www.iso.org/standard/28235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18918:2000,https://www.iso.org/standard/31115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18919:1999,https://www.iso.org/standard/25604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18920:2011,https://www.iso.org/standard/46186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18922:2003,https://www.iso.org/standard/31947.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18924:2013,https://www.iso.org/standard/62630.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18928:2013,https://www.iso.org/standard/62637.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18929:2012,https://www.iso.org/standard/55696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TR 18931:2001,https://www.iso.org/standard/31957.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18936:2012,https://www.iso.org/standard/31962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18937:2014,https://www.iso.org/standard/57700.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD 18937,https://www.iso.org/standard/74075.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18941:2017,https://www.iso.org/standard/72837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18944:2014,https://www.iso.org/standard/63080.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/PRF 18944,https://www.iso.org/standard/72190.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18946:2011,https://www.iso.org/standard/31972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18947:2013,https://www.iso.org/standard/31973.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD 18949,https://www.iso.org/standard/32025.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3665:2011,https://www.iso.org/standard/54593.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 4090:2001,https://www.iso.org/standard/28009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5655:2000,https://www.iso.org/standard/32371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5799:1991,https://www.iso.org/standard/11946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 7004:2002,https://www.iso.org/standard/13572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 9236-1:2004,https://www.iso.org/standard/35847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 9236-3:1999,https://www.iso.org/standard/24296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 11699-1:2008,https://www.iso.org/standard/45374.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 11699-2:1998,https://www.iso.org/standard/2287.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO/DIS 11699-2,https://www.iso.org/standard/71852.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 14096-1:2005,https://www.iso.org/standard/40640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 14096-2:2005,https://www.iso.org/standard/40641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 418:2001,https://www.iso.org/standard/33087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 420:1994,https://www.iso.org/standard/20280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 422:1994,https://www.iso.org/standard/20281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 423:1994,https://www.iso.org/standard/4432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 424:1994,https://www.iso.org/standard/4434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3298:1994,https://www.iso.org/standard/8537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3299:1994,https://www.iso.org/standard/20286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3617:1994,https://www.iso.org/standard/20282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3618:1994,https://www.iso.org/standard/20284.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3619:1994,https://www.iso.org/standard/20060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3620:1994,https://www.iso.org/standard/20283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3621:1994,https://www.iso.org/standard/20062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3622:1996,https://www.iso.org/standard/20063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3623:1994,https://www.iso.org/standard/20287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3624:1994,https://www.iso.org/standard/20288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3625:1994,https://www.iso.org/standard/9059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3626:1996,https://www.iso.org/standard/20064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3627:2001,https://www.iso.org/standard/33088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3628:1994,https://www.iso.org/standard/9063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3629:2000,https://www.iso.org/standard/33089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 3943:1993,https://www.iso.org/standard/9589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5989:1995,https://www.iso.org/standard/12183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5990:2000,https://www.iso.org/standard/33090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6849:1996,https://www.iso.org/standard/13358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6851:2001,https://www.iso.org/standard/32493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 6853:2001,https://www.iso.org/standard/32494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 7760:2001,https://www.iso.org/standard/32495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 7766:2003,https://www.iso.org/standard/34988.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10348:1993,https://www.iso.org/standard/18405.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-1:2002,https://www.iso.org/standard/31338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-2:1992,https://www.iso.org/standard/21246.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-3:1992,https://www.iso.org/standard/21260.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-4:1992,https://www.iso.org/standard/21261.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-5:1992,https://www.iso.org/standard/21262.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-6:1992,https://www.iso.org/standard/21263.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-7:1992,https://www.iso.org/standard/21264.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-8:2002,https://www.iso.org/standard/31339.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-9:1992,https://www.iso.org/standard/21266.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-10:1992,https://www.iso.org/standard/21267.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-11:1992,https://www.iso.org/standard/21268.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-12:1992,https://www.iso.org/standard/21269.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10349-13:2002,https://www.iso.org/standard/31348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 10636:1994,https://www.iso.org/standard/18730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 17531:2002,https://www.iso.org/standard/30730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18928:2013,https://www.iso.org/standard/62637.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 12234-1:2012,https://www.iso.org/standard/53651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 12234-2:2001,https://www.iso.org/standard/29377.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 12234-3:2016,https://www.iso.org/standard/57732.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 15739:2017,https://www.iso.org/standard/72361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 15740:2013,https://www.iso.org/standard/63602.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 16067-1:2003,https://www.iso.org/standard/29702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 16067-2:2004,https://www.iso.org/standard/35201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18916:2007,https://www.iso.org/standard/31940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18921:2008,https://www.iso.org/standard/51327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18923:2000,https://www.iso.org/standard/27619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18925:2013,https://www.iso.org/standard/62632.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18926:2012,https://www.iso.org/standard/60380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18927:2013,https://www.iso.org/standard/62635.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18930:2011,https://www.iso.org/standard/54739.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18932:2009,https://www.iso.org/standard/52437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18933:2012,https://www.iso.org/standard/60960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18934:2011,https://www.iso.org/standard/55518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18938:2014,https://www.iso.org/standard/63076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 18943:2014,https://www.iso.org/standard/42008.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/DTR 18945,https://www.iso.org/standard/72548.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/DIS 18948,https://www.iso.org/standard/67243.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 20087:2016,https://www.iso.org/standard/67003.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 22028-1:2016,https://www.iso.org/standard/68761.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 22028-2:2013,https://www.iso.org/standard/56591.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 22028-3:2012,https://www.iso.org/standard/58005.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 22028-4:2012,https://www.iso.org/standard/54745.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 4246:1994,https://www.iso.org/standard/10045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 10284:1997,https://www.iso.org/standard/18326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 23:1993,https://www.iso.org/standard/20575.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 25:1994,https://www.iso.org/standard/21562.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26:1993,https://www.iso.org/standard/3615.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 28:1976,https://www.iso.org/standard/3617.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1781:1983,https://www.iso.org/standard/6414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1787:1984,https://www.iso.org/standard/6420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1793:2005,https://www.iso.org/standard/36142.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 2910,https://www.iso.org/standard/74446.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 2910:2007,https://www.iso.org/standard/39968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3639:1981,https://www.iso.org/standard/9083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3644:1976,https://www.iso.org/standard/9087.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3647:1976,https://www.iso.org/standard/9091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3653:1978,https://www.iso.org/standard/9100.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3820:1978,https://www.iso.org/standard/9364.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 6033:1983,https://www.iso.org/standard/12229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 6896:1984,https://www.iso.org/standard/13418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 9642:1993,https://www.iso.org/standard/17469.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO/DIS 9642,https://www.iso.org/standard/74444.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 69:1998,https://www.iso.org/standard/27542.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 70:1981,https://www.iso.org/standard/3710.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 71:2014,https://www.iso.org/standard/63974.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 74:1976,https://www.iso.org/standard/3714.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 162:1985,https://www.iso.org/standard/3996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 359:1983,https://www.iso.org/standard/4325.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 466:1976,https://www.iso.org/standard/4494.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 486:1988,https://www.iso.org/standard/4531.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 490:1993,https://www.iso.org/standard/2495.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 491:2002,https://www.iso.org/standard/34907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1019:1982,https://www.iso.org/standard/5489.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1039:1995,https://www.iso.org/standard/23291.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1188:1984,https://www.iso.org/standard/5780.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1189:1986,https://www.iso.org/standard/5782.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1223:2003,https://www.iso.org/standard/31172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1700:1988,https://www.iso.org/standard/6317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1780:1984,https://www.iso.org/standard/6413.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 1785:1983,https://www.iso.org/standard/6417.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 2404:1986,https://www.iso.org/standard/7301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO/DIS 2404,https://www.iso.org/standard/69742.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 2467:2004,https://www.iso.org/standard/40001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 2906:2002,https://www.iso.org/standard/30126.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 2907:2002,https://www.iso.org/standard/25425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 2939:2015,https://www.iso.org/standard/52811.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3022:1988,https://www.iso.org/standard/8105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3023:1995,https://www.iso.org/standard/23292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3024:1983,https://www.iso.org/standard/8108.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3026:1992,https://www.iso.org/standard/20537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3042:1992,https://www.iso.org/standard/8130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3042:1992/Cor 1:2004,https://www.iso.org/standard/39886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3047:1982,https://www.iso.org/standard/8154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3641:1976,https://www.iso.org/standard/9085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3642:1983,https://www.iso.org/standard/9086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3645:1984,https://www.iso.org/standard/9089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3646:1976,https://www.iso.org/standard/9090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3773:1983,https://www.iso.org/standard/9294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 3774:1988,https://www.iso.org/standard/9296.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 4238:1976,https://www.iso.org/standard/10038.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 4241:2013,https://www.iso.org/standard/63387.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO/DIS 4241,https://www.iso.org/standard/74445.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 4242:1980,https://www.iso.org/standard/10041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 4243:1979,https://www.iso.org/standard/10042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 4834:1997,https://www.iso.org/standard/26949.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 5758:2002,https://www.iso.org/standard/35512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 5768:1998,https://www.iso.org/standard/30125.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 6025:2000,https://www.iso.org/standard/31173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 6035:1983,https://www.iso.org/standard/12230.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 6036:1996,https://www.iso.org/standard/12231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 6038:1993,https://www.iso.org/standard/12233.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 7343:1993,https://www.iso.org/standard/20160.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 7739:2016,https://www.iso.org/standard/69743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 7831:1986,https://www.iso.org/standard/14753.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 7832:2014,https://www.iso.org/standard/63975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8001:1984,https://www.iso.org/standard/15000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8395:1995,https://www.iso.org/standard/15561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8400:1985,https://www.iso.org/standard/15568.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8567:2002,https://www.iso.org/standard/28294.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8567:2002/Cor 1:2004,https://www.iso.org/standard/39865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8590:1994,https://www.iso.org/standard/15881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8622:1998,https://www.iso.org/standard/27543.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8687:1987,https://www.iso.org/standard/16089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 8758:1992,https://www.iso.org/standard/16167.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 9525:1988,https://www.iso.org/standard/17258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 10356:1996,https://www.iso.org/standard/18413.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 12222:2017,https://www.iso.org/standard/59518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 12606:1997,https://www.iso.org/standard/2459.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 12611:2004,https://www.iso.org/standard/39985.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 12612:2016,https://www.iso.org/standard/69741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 17266,https://www.iso.org/standard/74447.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 17266:2002,https://www.iso.org/standard/30589.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 17332:2001,https://www.iso.org/standard/32993.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 20859:2005,https://www.iso.org/standard/39786.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 2969:2015,https://www.iso.org/standard/43646.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 9568:1993,https://www.iso.org/standard/17314.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 12608:1996,https://www.iso.org/standard/1913.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 17121:2000,https://www.iso.org/standard/29480.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 17121:2000/Cor 1:2001,https://www.iso.org/standard/35414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 21727:2016,https://www.iso.org/standard/69744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 22234:2005,https://www.iso.org/standard/40957.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-1:2008,https://www.iso.org/standard/50204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-2:2008,https://www.iso.org/standard/50218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-3:2008,https://www.iso.org/standard/50219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-9:2009,https://www.iso.org/standard/52784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-11:2011,https://www.iso.org/standard/57749.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26428-19:2011,https://www.iso.org/standard/57750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-3:2008,https://www.iso.org/standard/50205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-4:2008,https://www.iso.org/standard/50221.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-6:2008,https://www.iso.org/standard/50222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-7:2008,https://www.iso.org/standard/50223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-8:2009,https://www.iso.org/standard/52785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-9:2009,https://www.iso.org/standard/52786.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26429-10:2009,https://www.iso.org/standard/52787.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-1:2008,https://www.iso.org/standard/50206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-2:2008,https://www.iso.org/standard/50224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-3:2008,https://www.iso.org/standard/50225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-4:2009,https://www.iso.org/standard/52788.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-5:2009,https://www.iso.org/standard/52789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-6:2009,https://www.iso.org/standard/52790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26430-9:2009,https://www.iso.org/standard/52791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26431-1:2008,https://www.iso.org/standard/50207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26432-2:2008,https://www.iso.org/standard/50208.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 26433:2009,https://www.iso.org/standard/52793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 446:2004,https://www.iso.org/standard/36140.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-1:2003,https://www.iso.org/standard/36544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-1:2003/Cor 1:2009,https://www.iso.org/standard/54345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-2:1994,https://www.iso.org/standard/8503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-3:2001,https://www.iso.org/standard/36114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-4:1994,https://www.iso.org/standard/8507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3272-6:2000,https://www.iso.org/standard/8509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 3334:2006,https://www.iso.org/standard/36569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 4087:2005,https://www.iso.org/standard/26165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6148:2001,https://www.iso.org/standard/33392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-1:1993,https://www.iso.org/standard/12460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-2:1993,https://www.iso.org/standard/12462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-3:1997,https://www.iso.org/standard/2047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-4:1998,https://www.iso.org/standard/22166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-5:1987,https://www.iso.org/standard/12465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-6:1992,https://www.iso.org/standard/12466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-7:1992,https://www.iso.org/standard/12467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-8:1998,https://www.iso.org/standard/2260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-10:1999,https://www.iso.org/standard/27104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6196-10:1999/Cor 1:2004,https://www.iso.org/standard/41311.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 6198:1993,https://www.iso.org/standard/12470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6199:2005,https://www.iso.org/standard/27582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6200:1999,https://www.iso.org/standard/28103.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6342:2003,https://www.iso.org/standard/35521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 6428:1982,https://www.iso.org/standard/12779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 1,https://www.iso.org/contents/data/committee/04/60/46022/x/catalogue/ -ISO 7565:1993,https://www.iso.org/standard/14348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 7761:2004,https://www.iso.org/standard/35712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 8126:2000,https://www.iso.org/standard/15190.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 8127-1:1989,https://www.iso.org/standard/15191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 8514-1:2000,https://www.iso.org/standard/28104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 8514-2:2000,https://www.iso.org/standard/28105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 9848:2003,https://www.iso.org/standard/34534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 9878:1990,https://www.iso.org/standard/17757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 9923:1994,https://www.iso.org/standard/17808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 10196:2003,https://www.iso.org/standard/26764.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 10197:1993,https://www.iso.org/standard/18224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 10198:1994,https://www.iso.org/standard/18225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 10550:1994,https://www.iso.org/standard/18635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO/TR 10593:1997,https://www.iso.org/standard/18677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 10594:2006,https://www.iso.org/standard/37806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 11142:2005,https://www.iso.org/standard/31710.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 11506:2017,https://www.iso.org/standard/68902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 11698-1:2000,https://www.iso.org/standard/33415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 11698-2:2000,https://www.iso.org/standard/33416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 11928-1:2000,https://www.iso.org/standard/33043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 11928-2:2000,https://www.iso.org/standard/33042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 11962:2002,https://www.iso.org/standard/36565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 11962:2002/Cor 1:2006,https://www.iso.org/standard/44797.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 12029:2010,https://www.iso.org/standard/50434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/TR 12031:2000,https://www.iso.org/standard/31720.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO/TR 12033:2009,https://www.iso.org/standard/42170.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/IEC 12034-1:2017,https://www.iso.org/standard/73525.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/TR 12036:2000,https://www.iso.org/standard/31719.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO/TR 12037:1998,https://www.iso.org/standard/3356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 12650:1999,https://www.iso.org/standard/1642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 12651-1:2012,https://www.iso.org/standard/54755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 12651-2:2014,https://www.iso.org/standard/42673.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 12653-1:2000,https://www.iso.org/standard/31705.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 12653-2:2000,https://www.iso.org/standard/31706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 12653-2:2000/Cor 1:2002,https://www.iso.org/standard/36911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 12653-3:2014,https://www.iso.org/standard/60271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/TR 12654:1997,https://www.iso.org/standard/2296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 12656:2001,https://www.iso.org/standard/31708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO/FDIS 14641,https://www.iso.org/standard/74338.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 14641-1:2012,https://www.iso.org/standard/54911.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 14648-1:2001,https://www.iso.org/standard/30735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 14648-2:2001,https://www.iso.org/standard/30736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 14648-2:2001/Cor 1:2009,https://www.iso.org/standard/54620.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/TR 15801:2017,https://www.iso.org/standard/66856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/TR 17797:2014,https://www.iso.org/standard/60569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/TR 18159:2015,https://www.iso.org/standard/61641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/TR 18160:2014,https://www.iso.org/standard/61642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/TR 18492:2005,https://www.iso.org/standard/38716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 18565:2015,https://www.iso.org/standard/62901.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/CD 18759,https://www.iso.org/standard/68472.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 18919:1999,https://www.iso.org/standard/25604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/FDIS 19475-1,https://www.iso.org/standard/65045.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/FDIS 19475-2,https://www.iso.org/standard/65046.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO/DIS 19475-3,https://www.iso.org/standard/70551.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 22938:2017,https://www.iso.org/standard/62880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/DTR 22957,https://www.iso.org/standard/71605.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/TR 22957:2009,https://www.iso.org/standard/36564.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 23868:2008,https://www.iso.org/standard/41888.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 24537:2007,https://www.iso.org/standard/42276.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171,https://www.iso.org/contents/data/committee/05/36/53650/x/catalogue/ -ISO 29861:2009,https://www.iso.org/standard/45715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 1,https://www.iso.org/contents/data/committee/05/36/53666/x/catalogue/ -ISO 3664:2009,https://www.iso.org/standard/43234.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 5776:2016,https://www.iso.org/standard/61838.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12218:1997,https://www.iso.org/standard/20766.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12637-1:2006,https://www.iso.org/standard/40144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12637-2:2008,https://www.iso.org/standard/36041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12637-3:2009,https://www.iso.org/standard/35295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12637-4:2008,https://www.iso.org/standard/35296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12645:1998,https://www.iso.org/standard/1854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12646:2015,https://www.iso.org/standard/57311.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-1:2013,https://www.iso.org/standard/57816.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-2:2013,https://www.iso.org/standard/57833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-2:2013/CD Amd 1,https://www.iso.org/standard/71897.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-3:2013,https://www.iso.org/standard/57840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-4:2014,https://www.iso.org/standard/55411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-5:2015,https://www.iso.org/standard/60479.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-6:2012,https://www.iso.org/standard/55037.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-6:2012/Amd 1:2015,https://www.iso.org/standard/68411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 12647-6,https://www.iso.org/standard/75219.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-7:2016,https://www.iso.org/standard/66426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12647-8:2012,https://www.iso.org/standard/53436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/TR 12705:2011,https://www.iso.org/standard/51652.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 13655:2017,https://www.iso.org/standard/65430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 14298:2013,https://www.iso.org/standard/54594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/TR 14672:2000,https://www.iso.org/standard/25168.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 14861:2015,https://www.iso.org/standard/63540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DTS 15311-1,https://www.iso.org/standard/73371.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/TS 15311-1:2016,https://www.iso.org/standard/57824.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DTS 15311-2,https://www.iso.org/standard/65441.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15790:2004,https://www.iso.org/standard/28312.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/TR 15847:2008,https://www.iso.org/standard/44403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/TR 16066:2003,https://www.iso.org/standard/37358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16759:2013,https://www.iso.org/standard/57615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16762:2016,https://www.iso.org/standard/67703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16763:2016,https://www.iso.org/standard/57619.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 18620:2016,https://www.iso.org/standard/63034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 18939:2013,https://www.iso.org/standard/60935.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TR 19300:2015,https://www.iso.org/standard/64081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 19301,https://www.iso.org/standard/64082.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DIS 19302,https://www.iso.org/standard/70557.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DTR 19303-1,https://www.iso.org/standard/70558.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DIS 20294,https://www.iso.org/standard/67559.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 20654:2017,https://www.iso.org/standard/68668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DTS 21830,https://www.iso.org/standard/71898.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 22028-1:2016,https://www.iso.org/standard/68761.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 22028-2:2013,https://www.iso.org/standard/56591.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 22028-3:2012,https://www.iso.org/standard/58005.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/TS 22028-4:2012,https://www.iso.org/standard/54745.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/CD 22909,https://www.iso.org/standard/74149.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DTS 23031,https://www.iso.org/standard/74361.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 2132:1972,https://www.iso.org/standard/6922.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 2132:1972/Amd 1:1975,https://www.iso.org/standard/6923.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 2133:1976,https://www.iso.org/standard/6924.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 3066:1986,https://www.iso.org/standard/8180.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 4232-1:1979,https://www.iso.org/standard/10035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 4232-2:1980,https://www.iso.org/standard/10036.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 5138-2:1980,https://www.iso.org/standard/11137.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/TS 10128:2009,https://www.iso.org/standard/45831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12635:2008,https://www.iso.org/standard/43886.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12636:2018,https://www.iso.org/standard/70552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12643-1:2009,https://www.iso.org/standard/51711.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 12643-1,https://www.iso.org/standard/69477.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12643-2:2010,https://www.iso.org/standard/53042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 12643-2,https://www.iso.org/standard/69478.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12643-3:2010,https://www.iso.org/standard/53411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 12643-3,https://www.iso.org/standard/69479.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12643-4:2010,https://www.iso.org/standard/51712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/WD 12643-4,https://www.iso.org/standard/69480.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12643-5:2010,https://www.iso.org/standard/53694.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/AWI 12643-5,https://www.iso.org/standard/74370.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15341:2014,https://www.iso.org/standard/55417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/IEC 15775:1999,https://www.iso.org/standard/28938.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 15775:1999/Amd 1:2005,https://www.iso.org/standard/35982.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 16680:2012,https://www.iso.org/standard/57404.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC 17629:2014,https://www.iso.org/standard/60200.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 17823:2015,https://www.iso.org/standard/60611.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 17991:2015,https://www.iso.org/standard/61239.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC CD 17991,https://www.iso.org/standard/74690.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/CD 18621-31,https://www.iso.org/standard/65434.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 19594:2017,https://www.iso.org/standard/65432.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/IEC 19752:2017,https://www.iso.org/standard/68555.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC TR 19797:2004,https://www.iso.org/standard/35972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 19798:2017,https://www.iso.org/standard/64862.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 19799:2007,https://www.iso.org/standard/33937.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 20690:2018,https://www.iso.org/standard/68836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/IEC 21117:2012,https://www.iso.org/standard/57897.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/DIS 21632,https://www.iso.org/standard/71294.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/IEC TR 24705:2005,https://www.iso.org/standard/38815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 24711:2015,https://www.iso.org/standard/64863.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 24712:2007,https://www.iso.org/standard/50017.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 24734:2014,https://www.iso.org/standard/63751.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 24734:2014/Cor 1:2016,https://www.iso.org/standard/72084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC NP 24734,https://www.iso.org/standard/74235.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 24735:2012,https://www.iso.org/standard/57857.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC NP 24735,https://www.iso.org/standard/74596.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 24790:2017,https://www.iso.org/standard/69796.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 28360:2015,https://www.iso.org/standard/66516.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC DIS 28360-1,https://www.iso.org/standard/74677.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC DIS 28360-2,https://www.iso.org/standard/74678.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 29102:2015,https://www.iso.org/standard/64898.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 29103:2011,https://www.iso.org/standard/45126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC DIS 29112,https://www.iso.org/standard/69797.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC TS 29112:2012,https://www.iso.org/standard/45135.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 29142-1:2013,https://www.iso.org/standard/45165.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 29142-2:2013,https://www.iso.org/standard/51950.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 29142-3:2013,https://www.iso.org/standard/51951.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC 29183:2010,https://www.iso.org/standard/45262.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO/IEC CD 29183,https://www.iso.org/standard/74234.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO/IEC TR 29186:2012,https://www.iso.org/standard/45265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 28,https://www.iso.org/contents/data/committee/04/53/45314/x/catalogue/ -ISO 1009:2000,https://www.iso.org/standard/30542.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 11084-1:1993,https://www.iso.org/standard/19071.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 11084-2:2006,https://www.iso.org/standard/40023.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15397:2014,https://www.iso.org/standard/55418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12639:2004,https://www.iso.org/standard/34342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12639:2004/Amd 1:2007,https://www.iso.org/standard/43356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-1:1997/Cor 1:2004,https://www.iso.org/standard/40928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-1:1997,https://www.iso.org/standard/2105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-2:2004,https://www.iso.org/standard/33293.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-2:2004/Cor 1:2008,https://www.iso.org/standard/52837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-3:2007,https://www.iso.org/standard/35110.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-4:2011,https://www.iso.org/standard/45115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12640-5:2013,https://www.iso.org/standard/45116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12641:1997,https://www.iso.org/standard/2079.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12641-1:2016,https://www.iso.org/standard/68807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 12641-2,https://www.iso.org/standard/68575.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12642-1:2011,https://www.iso.org/standard/55410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12642-2:2006,https://www.iso.org/standard/39371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 14289-1:2014,https://www.iso.org/standard/64599.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 15076-1:2010,https://www.iso.org/standard/54754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/PAS 15339-1:2015,https://www.iso.org/standard/68675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/PAS 15339-2:2015,https://www.iso.org/standard/68676.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-1:2001,https://www.iso.org/standard/29061.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-3:2002,https://www.iso.org/standard/34941.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-4:2003,https://www.iso.org/standard/39938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-6:2003,https://www.iso.org/standard/39940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-7:2010,https://www.iso.org/standard/55843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-8:2010,https://www.iso.org/standard/55844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 15930-8:2010/Cor 1:2011,https://www.iso.org/standard/60210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 15930-9,https://www.iso.org/standard/63035.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16612-1:2005,https://www.iso.org/standard/38013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16612-2:2010,https://www.iso.org/standard/46428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16613-1:2017,https://www.iso.org/standard/65429.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16684-1:2012,https://www.iso.org/standard/57421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16684-2:2014,https://www.iso.org/standard/57422.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 16760:2014,https://www.iso.org/standard/57616.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 17972-1:2015,https://www.iso.org/standard/61500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 17972-2:2016,https://www.iso.org/standard/61501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 17972-3:2017,https://www.iso.org/standard/61502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 17972-4:2018,https://www.iso.org/standard/71110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 18619:2015,https://www.iso.org/standard/63033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 18935:2016,https://www.iso.org/standard/67483.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO/DIS 18935,https://www.iso.org/standard/74325.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 42,https://www.iso.org/contents/data/committee/04/84/48420/x/catalogue/ -ISO 19005-1:2005,https://www.iso.org/standard/38920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19005-1:2005/Cor 1:2007,https://www.iso.org/standard/45613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19005-1:2005/Cor 2:2011,https://www.iso.org/standard/60603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19005-2:2011,https://www.iso.org/standard/50655.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 19005-3:2012,https://www.iso.org/standard/57229.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/CD 19005-4,https://www.iso.org/standard/71832.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/FDIS 19593-1,https://www.iso.org/standard/65428.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 20616-2,https://www.iso.org/standard/69572.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DIS 20677,https://www.iso.org/standard/68806.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/CD 21812-1,https://www.iso.org/standard/74407.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO/DTR 22299,https://www.iso.org/standard/73117.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/CD 22550,https://www.iso.org/standard/73419.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 24517-1:2008,https://www.iso.org/standard/42274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO/DIS 24517-2.2,https://www.iso.org/standard/68454.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 28178:2009,https://www.iso.org/standard/44527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 32000-1:2008,https://www.iso.org/standard/51502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 32000-2:2017,https://www.iso.org/standard/63534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 171/SC 2,https://www.iso.org/contents/data/committee/05/36/53674/x/catalogue/ -ISO 1112:2009,https://www.iso.org/standard/50884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO 3158:1976,https://www.iso.org/standard/8331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO 4168:2002,https://www.iso.org/standard/30259.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 114/SC 5,https://www.iso.org/contents/data/committee/05/17/51746/x/catalogue/ -ISO 6426-1:1982,https://www.iso.org/standard/12775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 9,https://www.iso.org/contents/data/committee/05/17/51754/x/catalogue/ -ISO 6426-2:2002,https://www.iso.org/standard/37066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 9,https://www.iso.org/contents/data/committee/05/17/51754/x/catalogue/ -ISO 6426-2:2002/Amd 1:2012,https://www.iso.org/standard/54753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 9,https://www.iso.org/contents/data/committee/05/17/51754/x/catalogue/ -ISO 6426-2:2002/Cor 1:2003,https://www.iso.org/standard/38576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 9,https://www.iso.org/contents/data/committee/05/17/51754/x/catalogue/ -ISO 10552:2014,https://www.iso.org/standard/65373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 7,https://www.iso.org/contents/data/committee/05/17/51750/x/catalogue/ -ISO 17514:2004,https://www.iso.org/standard/31404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 5,https://www.iso.org/contents/data/committee/05/17/51746/x/catalogue/ -ISO 764:2002,https://www.iso.org/standard/23033.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 114/SC 12,https://www.iso.org/contents/data/committee/05/17/51762/x/catalogue/ -ISO/NP 764,https://www.iso.org/standard/70610.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 114/SC 12,https://www.iso.org/contents/data/committee/05/17/51762/x/catalogue/ -ISO 1413:2016,https://www.iso.org/standard/62753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 1,https://www.iso.org/contents/data/committee/05/17/51740/x/catalogue/ -ISO 3159:2009,https://www.iso.org/standard/54804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO 3160-1:1998,https://www.iso.org/standard/27232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 6,https://www.iso.org/contents/data/committee/05/17/51748/x/catalogue/ -ISO 3160-1:1998/Amd 1:2000,https://www.iso.org/standard/32454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 6,https://www.iso.org/contents/data/committee/05/17/51748/x/catalogue/ -ISO 3160-2:2015,https://www.iso.org/standard/66162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 6,https://www.iso.org/contents/data/committee/05/17/51748/x/catalogue/ -ISO 3764:2016,https://www.iso.org/standard/59931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 7,https://www.iso.org/contents/data/committee/05/17/51750/x/catalogue/ -ISO 3765:1998,https://www.iso.org/standard/9269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 7,https://www.iso.org/contents/data/committee/05/17/51750/x/catalogue/ -ISO 6425:1996,https://www.iso.org/standard/12774.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 114/SC 3,https://www.iso.org/contents/data/committee/05/17/51742/x/catalogue/ -ISO/DIS 6425,https://www.iso.org/standard/66517.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 114/SC 3,https://www.iso.org/contents/data/committee/05/17/51742/x/catalogue/ -ISO 10553:2003,https://www.iso.org/standard/35356.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 114/SC 11,https://www.iso.org/contents/data/committee/05/17/51760/x/catalogue/ -ISO/DIS 10553,https://www.iso.org/standard/69120.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 114/SC 11,https://www.iso.org/contents/data/committee/05/17/51760/x/catalogue/ -ISO 12819:2009,https://www.iso.org/standard/50874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO 14368-1:2000,https://www.iso.org/standard/23032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 13,https://www.iso.org/contents/data/committee/05/17/51764/x/catalogue/ -ISO 14368-1:2000/Cor 1:2006,https://www.iso.org/standard/43616.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 13,https://www.iso.org/contents/data/committee/05/17/51764/x/catalogue/ -ISO 14368-2:2003,https://www.iso.org/standard/31461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 13,https://www.iso.org/contents/data/committee/05/17/51764/x/catalogue/ -ISO 14368-3:2003,https://www.iso.org/standard/31462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 13,https://www.iso.org/contents/data/committee/05/17/51764/x/catalogue/ -ISO 14856:2001,https://www.iso.org/standard/22479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 7,https://www.iso.org/contents/data/committee/05/17/51750/x/catalogue/ -ISO 16253:2017,https://www.iso.org/standard/72958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 6,https://www.iso.org/contents/data/committee/05/17/51748/x/catalogue/ -ISO/CD 18684,https://www.iso.org/standard/70090.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO/TS 18684:2015,https://www.iso.org/standard/63205.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO 22810:2010,https://www.iso.org/standard/45334.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 3,https://www.iso.org/contents/data/committee/05/17/51742/x/catalogue/ -ISO 23160:2011,https://www.iso.org/standard/45522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 114/SC 6,https://www.iso.org/contents/data/committee/05/17/51748/x/catalogue/ -IEC 60086-3:2016,https://www.iso.org/standard/71856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114,https://www.iso.org/contents/data/committee/05/17/51734/x/catalogue/ -ISO 13074:2012,https://www.iso.org/standard/52655.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 114/SC 14,https://www.iso.org/contents/data/committee/60/48/604825/x/catalogue/ -ISO 19235:2015,https://www.iso.org/standard/64080.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 114/SC 14,https://www.iso.org/contents/data/committee/60/48/604825/x/catalogue/ -ISO 12511:1997,https://www.iso.org/standard/2133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 12511:1997/AWI Amd 1,https://www.iso.org/standard/72090.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 8653:2016,https://www.iso.org/standard/65408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 8654,https://www.iso.org/standard/65409.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 8654:1987,https://www.iso.org/standard/16030.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 9202:2014,https://www.iso.org/standard/57656.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 10713:1992,https://www.iso.org/standard/18801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 11210:2014,https://www.iso.org/standard/57646.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 11426:2014,https://www.iso.org/standard/57647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 11427:2014,https://www.iso.org/standard/57648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 11490:2015,https://www.iso.org/standard/57650.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 11494:2014,https://www.iso.org/standard/57651.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO/CD 11494,https://www.iso.org/standard/74900.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 11495:2014,https://www.iso.org/standard/57652.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO/CD 11495,https://www.iso.org/standard/74901.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 11596:2008,https://www.iso.org/standard/43420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 13756:2015,https://www.iso.org/standard/57653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 15093:2015,https://www.iso.org/standard/57654.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO/CD 15093,https://www.iso.org/standard/74903.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 15096:2014,https://www.iso.org/standard/57655.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO/CD 15096,https://www.iso.org/standard/74902.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 18323:2015,https://www.iso.org/standard/62163.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 174,https://www.iso.org/contents/data/committee/05/38/53874/x/catalogue/ -ISO 362-1:2015,https://www.iso.org/standard/59760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 362-2:2009,https://www.iso.org/standard/42211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 612:1978,https://www.iso.org/standard/4729.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 1176:1990,https://www.iso.org/standard/5760.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3560:2013,https://www.iso.org/standard/45511.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 3779:2009,https://www.iso.org/standard/52200.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3780:2009,https://www.iso.org/standard/45844.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3780:2009/Cor 1:2010,https://www.iso.org/standard/57625.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3784:1976,https://www.iso.org/standard/9310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 3795:1989,https://www.iso.org/standard/9328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3833:1977,https://www.iso.org/standard/9389.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 4030:1983,https://www.iso.org/standard/9721.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 4100:1980,https://www.iso.org/standard/9841.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 4130:1978,https://www.iso.org/standard/9886.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 4513:2010,https://www.iso.org/standard/45845.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/NP 4513,https://www.iso.org/standard/72001.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 5128:1980,https://www.iso.org/standard/11127.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5130:2007,https://www.iso.org/standard/38663.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5130:2007/Amd 1:2012,https://www.iso.org/standard/59764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/CD 5130,https://www.iso.org/standard/74081.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 6487:2015,https://www.iso.org/standard/64041.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 6487:2015/Amd 1:2017,https://www.iso.org/standard/69505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 6546:2006,https://www.iso.org/standard/38575.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DIS 6546,https://www.iso.org/standard/68074.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 6813:1998,https://www.iso.org/standard/1734.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 7401:2011,https://www.iso.org/standard/54144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/TR 7861:2003,https://www.iso.org/standard/37474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 8002:1986,https://www.iso.org/standard/15001.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 8349:2002,https://www.iso.org/standard/25944.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/TR 8357:1996,https://www.iso.org/standard/15503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 8721:2010,https://www.iso.org/standard/46279.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/FDIS 8721,https://www.iso.org/standard/72232.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 8855:2011,https://www.iso.org/standard/51180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 10326-1:2016,https://www.iso.org/standard/67659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10392:2011,https://www.iso.org/standard/52978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 10521-1:2006,https://www.iso.org/standard/37533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 10521-2:2006,https://www.iso.org/standard/37534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 10844:2014,https://www.iso.org/standard/64218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11096:2011,https://www.iso.org/standard/58099.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 12021:2010,https://www.iso.org/standard/53602.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 12214:2010,https://www.iso.org/standard/55066.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/FDIS 12214,https://www.iso.org/standard/73932.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 12219-1:2012,https://www.iso.org/standard/50019.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/CD 12219-1,https://www.iso.org/standard/72410.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-2:2012,https://www.iso.org/standard/54865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-3:2012,https://www.iso.org/standard/54866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-4:2013,https://www.iso.org/standard/54867.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-5:2014,https://www.iso.org/standard/56876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-6:2017,https://www.iso.org/standard/62640.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO 12219-7:2017,https://www.iso.org/standard/62641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/DIS 12219-8,https://www.iso.org/standard/65510.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/CD 12219-9,https://www.iso.org/standard/68920.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 146/SC 6,https://www.iso.org/contents/data/committee/05/28/52822/x/catalogue/ -ISO/TR 12350:2013,https://www.iso.org/standard/55888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 12351:1999,https://www.iso.org/standard/27880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13209-1:2011,https://www.iso.org/standard/53507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13209-2:2012,https://www.iso.org/standard/53509.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13209-3:2012,https://www.iso.org/standard/55599.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13218:1998,https://www.iso.org/standard/20961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 13330:2013,https://www.iso.org/standard/53708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 13471-1:2017,https://www.iso.org/standard/25630.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP TS 13499,https://www.iso.org/standard/75156.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 13499:2014,https://www.iso.org/standard/64016.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13674-1:2010,https://www.iso.org/standard/54302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 13674-2:2016,https://www.iso.org/standard/60523.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/TS 14505-1:2007,https://www.iso.org/standard/38265.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 14505-2:2006,https://www.iso.org/standard/38266.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 14505-2:2006/Cor 1:2007,https://www.iso.org/standard/46527.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 14505-3:2006,https://www.iso.org/standard/38901.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 14512:1999,https://www.iso.org/standard/23862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 14794:2011,https://www.iso.org/standard/57256.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/TR 14933:2012,https://www.iso.org/standard/59798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 15827:2007,https://www.iso.org/standard/41273.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 15828:2004,https://www.iso.org/standard/29166.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 15829:2013,https://www.iso.org/standard/50788.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 15830-1:2013,https://www.iso.org/standard/60224.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 15830-2:2013,https://www.iso.org/standard/60225.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 15830-3:2013,https://www.iso.org/standard/60226.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 15830-4:2013,https://www.iso.org/standard/60227.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/PRF TS 15830-5,https://www.iso.org/standard/74799.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 15830-5:2017,https://www.iso.org/standard/65680.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 16250:2013,https://www.iso.org/standard/56015.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 16850:2007,https://www.iso.org/standard/30483.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 16850:2007/Amd 1:2013,https://www.iso.org/standard/59316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 16992:2010,https://www.iso.org/standard/52162.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO/FDIS 16992,https://www.iso.org/standard/69687.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO 17373:2005,https://www.iso.org/standard/31363.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DIS 17373,https://www.iso.org/standard/72229.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 17840-1:2015,https://www.iso.org/standard/67246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DIS 17840-2,https://www.iso.org/standard/67351.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DIS 17840-3,https://www.iso.org/standard/67353.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/PRF 17840-4,https://www.iso.org/standard/67354.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 18506:2014,https://www.iso.org/standard/62696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DIS 19206-1,https://www.iso.org/standard/63991.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/DIS 19206-2,https://www.iso.org/standard/63992.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 20077-1:2017,https://www.iso.org/standard/66975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 20077-2:2018,https://www.iso.org/standard/67597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 20176:2011,https://www.iso.org/standard/55291.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/DIS 20176,https://www.iso.org/standard/75286.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 20566:2013,https://www.iso.org/standard/51945.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 20828:2006,https://www.iso.org/standard/41891.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DTS 21476,https://www.iso.org/standard/70965.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DTR 21959-1,https://www.iso.org/standard/73927.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/DTR 21974,https://www.iso.org/standard/72329.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 22628:2002,https://www.iso.org/standard/35061.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 27955:2010,https://www.iso.org/standard/44441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 27956:2009,https://www.iso.org/standard/44442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 4081:2016,https://www.iso.org/standard/70373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13775-1:2015,https://www.iso.org/standard/65368.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 17324:2014,https://www.iso.org/standard/59582.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/NP 18571,https://www.iso.org/standard/68334.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 18571:2014,https://www.iso.org/standard/62937.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 1185:2003,https://www.iso.org/standard/30213.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 1724:2003,https://www.iso.org/standard/30212.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 3731:2003,https://www.iso.org/standard/30211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 3732:2003,https://www.iso.org/standard/30210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 4091:2003,https://www.iso.org/standard/30207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 4141-1:2005,https://www.iso.org/standard/36606.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 4141-1,https://www.iso.org/standard/69565.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 4141-2:2006,https://www.iso.org/standard/39514.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 4141-2,https://www.iso.org/standard/69567.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 4141-3:2006,https://www.iso.org/standard/39515.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 4141-3,https://www.iso.org/standard/70637.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 4141-4:2009,https://www.iso.org/standard/43353.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 4165:2001,https://www.iso.org/standard/33321.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 6722-1:2011,https://www.iso.org/standard/50022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 6722-1:2011/Cor 1:2012,https://www.iso.org/standard/62703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 6722-2:2013,https://www.iso.org/standard/55714.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7588-1:1998,https://www.iso.org/standard/24782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7588-2:1998,https://www.iso.org/standard/14376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7588-3:1998,https://www.iso.org/standard/24778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7637-1:2015,https://www.iso.org/standard/63098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7637-2:2011,https://www.iso.org/standard/50925.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/AWI 7637-2,https://www.iso.org/standard/74300.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7637-3:2016,https://www.iso.org/standard/59603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DTS 7637-4,https://www.iso.org/standard/72067.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/TR 7637-5:2016,https://www.iso.org/standard/68935.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7638-1:2003,https://www.iso.org/standard/30209.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/FDIS 7638-1,https://www.iso.org/standard/70639.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7638-2:2003,https://www.iso.org/standard/30208.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/FDIS 7638-2,https://www.iso.org/standard/70640.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8092-1:1996,https://www.iso.org/standard/20306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8092-2:2005,https://www.iso.org/standard/39549.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8092-3:1996,https://www.iso.org/standard/15130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8092-4:1997,https://www.iso.org/standard/20729.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-1:2014,https://www.iso.org/standard/61777.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-2:2014,https://www.iso.org/standard/55050.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-3:2015,https://www.iso.org/standard/58088.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-4:2016,https://www.iso.org/standard/64604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-5:2015,https://www.iso.org/standard/61249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-6:2007,https://www.iso.org/standard/39053.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 8820-6,https://www.iso.org/standard/71948.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-8:2012,https://www.iso.org/standard/52434.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-9:2014,https://www.iso.org/standard/52435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8820-10:2015,https://www.iso.org/standard/62020.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/CD 8820-12,https://www.iso.org/standard/73141.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/CD 8820-13,https://www.iso.org/standard/73151.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10483-1:2004,https://www.iso.org/standard/36423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10483-2:1996,https://www.iso.org/standard/18552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10605:2008,https://www.iso.org/standard/41937.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10605:2008/Amd 1:2014,https://www.iso.org/standard/61135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10605:2008/Cor 1:2010,https://www.iso.org/standard/55917.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10924-1:2016,https://www.iso.org/standard/64005.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10924-2:2014,https://www.iso.org/standard/52436.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10924-3:2015,https://www.iso.org/standard/58089.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10924-4:2015,https://www.iso.org/standard/64006.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10924-5:2016,https://www.iso.org/standard/60999.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11446-1:2012,https://www.iso.org/standard/51374.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11446-2:2012,https://www.iso.org/standard/55704.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11451-1:2015,https://www.iso.org/standard/62477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11451-2:2015,https://www.iso.org/standard/59608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11451-3:2015,https://www.iso.org/standard/59604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11451-4:2013,https://www.iso.org/standard/60609.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-1:2015,https://www.iso.org/standard/59609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-2:2004,https://www.iso.org/standard/36570.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 11452-2,https://www.iso.org/standard/68557.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-3:2016,https://www.iso.org/standard/66829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-4:2011,https://www.iso.org/standard/54500.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/AWI 11452-4,https://www.iso.org/standard/74108.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-5:2002,https://www.iso.org/standard/24571.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-7:2003,https://www.iso.org/standard/38302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-7:2003/Amd 1:2013,https://www.iso.org/standard/60825.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-8:2015,https://www.iso.org/standard/59605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-9:2012,https://www.iso.org/standard/51670.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-10:2009,https://www.iso.org/standard/42944.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11452-11:2010,https://www.iso.org/standard/42945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 12098:2004,https://www.iso.org/standard/30203.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 12098,https://www.iso.org/standard/71993.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 13400-1:2011,https://www.iso.org/standard/53765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/NP 13400-1,https://www.iso.org/standard/73793.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13400-2:2012,https://www.iso.org/standard/53766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/AWI 13400-2,https://www.iso.org/standard/74785.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13400-3:2016,https://www.iso.org/standard/68424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13400-4:2016,https://www.iso.org/standard/57317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14572:2011,https://www.iso.org/standard/41513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 15031-1:2010,https://www.iso.org/standard/51828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-2:2010,https://www.iso.org/standard/50815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-3:2016,https://www.iso.org/standard/64636.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-5:2015,https://www.iso.org/standard/66368.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-6:2015,https://www.iso.org/standard/66369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-7:2013,https://www.iso.org/standard/62489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15170-1:2001,https://www.iso.org/standard/26584.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 15170-2:2001,https://www.iso.org/standard/26585.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 15170-2:2001/Cor 1:2013,https://www.iso.org/standard/64869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 16505:2015,https://www.iso.org/standard/56896.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/DIS 16505,https://www.iso.org/standard/72000.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 16750-1:2006,https://www.iso.org/standard/39008.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 16750-1,https://www.iso.org/standard/69568.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 16750-2:2012,https://www.iso.org/standard/61280.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 16750-3:2012,https://www.iso.org/standard/58049.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 16750-4:2010,https://www.iso.org/standard/46043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 16750-5:2010,https://www.iso.org/standard/46042.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/AWI 16750-5,https://www.iso.org/standard/71947.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 16844-1:2013,https://www.iso.org/standard/55436.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16844-2:2011,https://www.iso.org/standard/52371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16844-3:2004,https://www.iso.org/standard/33656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16844-3:2004/Cor 1:2006,https://www.iso.org/standard/43938.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16844-4:2015,https://www.iso.org/standard/57314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16844-5:2004,https://www.iso.org/standard/38890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16844-6:2015,https://www.iso.org/standard/59683.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16844-7:2015,https://www.iso.org/standard/57315.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 19072-1:2014,https://www.iso.org/standard/59606.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 19072-1:2014/CD Amd 1,https://www.iso.org/standard/71301.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/CD 19072-1,https://www.iso.org/standard/71992.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 19072-2:2013,https://www.iso.org/standard/59607.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/CD 19072-2,https://www.iso.org/standard/74391.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19072-4,https://www.iso.org/standard/71946.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/TS 19072-4:2012,https://www.iso.org/standard/51413.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/PAS 19451-1:2016,https://www.iso.org/standard/64929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/PAS 19451-2:2016,https://www.iso.org/standard/68574.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/FDIS 19453-1,https://www.iso.org/standard/64930.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/FDIS 19453-3,https://www.iso.org/standard/65931.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/FDIS 19453-4,https://www.iso.org/standard/65932.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/FDIS 19453-5,https://www.iso.org/standard/67019.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-1,https://www.iso.org/standard/65619.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-2,https://www.iso.org/standard/66299.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-3,https://www.iso.org/standard/66301.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-4,https://www.iso.org/standard/66302.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-5,https://www.iso.org/standard/66303.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-6,https://www.iso.org/standard/66304.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-7,https://www.iso.org/standard/66305.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-8,https://www.iso.org/standard/66306.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-9,https://www.iso.org/standard/66307.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 19642-10,https://www.iso.org/standard/66308.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 19813:2006,https://www.iso.org/standard/39149.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/CD 20076,https://www.iso.org/standard/66974.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 20653:2013,https://www.iso.org/standard/58048.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 20860-1:2008,https://www.iso.org/standard/39787.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 20860-2:2009,https://www.iso.org/standard/46471.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 20934,https://www.iso.org/standard/69509.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/TS 21609:2014,https://www.iso.org/standard/62793.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 21848:2005,https://www.iso.org/standard/34742.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 25981:2008,https://www.iso.org/standard/43354.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 25981:2008/Cor 1:2008,https://www.iso.org/standard/52918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 25981,https://www.iso.org/standard/71994.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-1:2011,https://www.iso.org/standard/43464.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-1,https://www.iso.org/standard/68383.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-2:2011,https://www.iso.org/standard/51356.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-2,https://www.iso.org/standard/68384.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-3:2011,https://www.iso.org/standard/51358.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-3,https://www.iso.org/standard/68385.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-4:2011,https://www.iso.org/standard/51359.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-4,https://www.iso.org/standard/68386.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-5:2011,https://www.iso.org/standard/51360.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-5,https://www.iso.org/standard/68387.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-6:2011,https://www.iso.org/standard/51362.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-6,https://www.iso.org/standard/68388.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-7:2011,https://www.iso.org/standard/51363.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-7,https://www.iso.org/standard/68389.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-8:2011,https://www.iso.org/standard/51364.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-8,https://www.iso.org/standard/68390.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-9:2011,https://www.iso.org/standard/51365.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-9,https://www.iso.org/standard/68391.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 26262-10:2012,https://www.iso.org/standard/54591.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-10.2,https://www.iso.org/standard/68392.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-11,https://www.iso.org/standard/69604.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 26262-12,https://www.iso.org/standard/69605.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 27145-1:2012,https://www.iso.org/standard/46273.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-2:2012,https://www.iso.org/standard/46276.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-3:2012,https://www.iso.org/standard/46277.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-4:2016,https://www.iso.org/standard/68571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-6:2015,https://www.iso.org/standard/62445.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 7736:1984,https://www.iso.org/standard/14574.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10486:1992,https://www.iso.org/standard/18555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10487-1:1992,https://www.iso.org/standard/18556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10487-2:1995,https://www.iso.org/standard/21094.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10599-1:1992,https://www.iso.org/standard/18681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10599-2:1997,https://www.iso.org/standard/18682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10599-2:1997/Cor 1:2005,https://www.iso.org/standard/43207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10681-1:2010,https://www.iso.org/standard/46046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 10681-2:2010,https://www.iso.org/standard/46047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TR 10992:2011,https://www.iso.org/standard/46550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 10992-2:2017,https://www.iso.org/standard/69694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 11519-1:1994,https://www.iso.org/standard/19469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11519-3:1994,https://www.iso.org/standard/19471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11519-3:1994/Amd 1:1995,https://www.iso.org/standard/22647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11898-1:2015,https://www.iso.org/standard/63648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11898-2:2016,https://www.iso.org/standard/67244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11898-3:2006,https://www.iso.org/standard/36055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11898-3:2006/Cor 1:2006,https://www.iso.org/standard/45280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11898-4:2004,https://www.iso.org/standard/36306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11992-1:2003,https://www.iso.org/standard/33467.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DIS 11992-1,https://www.iso.org/standard/68376.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11992-2:2014,https://www.iso.org/standard/55046.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11992-3:2003,https://www.iso.org/standard/33470.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11992-3:2003/Amd 1:2008,https://www.iso.org/standard/42935.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/AWI 11992-3,https://www.iso.org/standard/68377.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 11992-4:2014,https://www.iso.org/standard/55043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TR 12204:2012,https://www.iso.org/standard/51275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/NP TS 14198,https://www.iso.org/standard/71509.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TS 14198:2012,https://www.iso.org/standard/54496.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 14823:2017,https://www.iso.org/standard/61546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 14907-1:2015,https://www.iso.org/standard/67917.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TS 14907-2:2016,https://www.iso.org/standard/69781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 15005:2017,https://www.iso.org/standard/69238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15006:2011,https://www.iso.org/standard/55322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15007-1:2014,https://www.iso.org/standard/56621.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/TS 15007-2:2014,https://www.iso.org/standard/56622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15008:2017,https://www.iso.org/standard/62784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 15075:2003,https://www.iso.org/standard/38478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/TR 15497:2000,https://www.iso.org/standard/27393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 15765-1:2011,https://www.iso.org/standard/54498.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/NP 15765-1,https://www.iso.org/standard/73794.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15765-2:2016,https://www.iso.org/standard/66574.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15765-4:2016,https://www.iso.org/standard/67245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TR 16352:2005,https://www.iso.org/standard/37859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 16673:2017,https://www.iso.org/standard/71508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 16845-1:2016,https://www.iso.org/standard/59166.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 16845-2:2014,https://www.iso.org/standard/59504.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/FDIS 16845-2,https://www.iso.org/standard/69841.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TS 16951:2004,https://www.iso.org/standard/29024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 17215-1:2014,https://www.iso.org/standard/59433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17215-2:2014,https://www.iso.org/standard/59546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17215-3:2014,https://www.iso.org/standard/59547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17215-4:2014,https://www.iso.org/standard/59548.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17287:2003,https://www.iso.org/standard/30597.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 17356-1:2005,https://www.iso.org/standard/33006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17356-2:2005,https://www.iso.org/standard/33007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17356-3:2005,https://www.iso.org/standard/40079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17356-4:2005,https://www.iso.org/standard/40118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17356-5:2006,https://www.iso.org/standard/40184.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17356-6:2006,https://www.iso.org/standard/40080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17386:2010,https://www.iso.org/standard/51448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 17458-1:2013,https://www.iso.org/standard/59804.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17458-2:2013,https://www.iso.org/standard/59806.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17458-3:2013,https://www.iso.org/standard/59807.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17458-4:2013,https://www.iso.org/standard/59808.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17458-5:2013,https://www.iso.org/standard/59809.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17488:2016,https://www.iso.org/standard/59887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 17987-1:2016,https://www.iso.org/standard/61222.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17987-2:2016,https://www.iso.org/standard/61223.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17987-3:2016,https://www.iso.org/standard/61224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17987-4:2016,https://www.iso.org/standard/61225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TR 17987-5:2016,https://www.iso.org/standard/69116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17987-6:2016,https://www.iso.org/standard/61227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 17987-7:2016,https://www.iso.org/standard/61229.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TR 18317:2017,https://www.iso.org/standard/62124.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 18541-1:2014,https://www.iso.org/standard/53964.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18541-2:2014,https://www.iso.org/standard/53965.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18541-3:2014,https://www.iso.org/standard/53966.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18541-4:2015,https://www.iso.org/standard/57544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/FDIS 18541-5,https://www.iso.org/standard/68659.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18541-6:2018,https://www.iso.org/standard/67459.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18542-1:2012,https://www.iso.org/standard/53967.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18542-2:2014,https://www.iso.org/standard/58101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TS 19321:2015,https://www.iso.org/standard/64606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 20035,https://www.iso.org/standard/66879.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/DIS 20078-1,https://www.iso.org/standard/66978.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DIS 20078-2,https://www.iso.org/standard/67578.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DIS 20078-3,https://www.iso.org/standard/67579.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DIS 20078-4,https://www.iso.org/standard/67580.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/CD 21956,https://www.iso.org/standard/72290.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 22178:2009,https://www.iso.org/standard/40752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22179:2009,https://www.iso.org/standard/40753.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO/CD 22179,https://www.iso.org/standard/66880.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22840:2010,https://www.iso.org/standard/36521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22900-1:2008,https://www.iso.org/standard/41275.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22900-2:2017,https://www.iso.org/standard/62490.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22900-3:2012,https://www.iso.org/standard/56615.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22902-1:2006,https://www.iso.org/standard/41208.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22902-2:2006,https://www.iso.org/standard/42134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22902-3:2006,https://www.iso.org/standard/41286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22902-4:2006,https://www.iso.org/standard/41287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22902-5:2006,https://www.iso.org/standard/41288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22902-6:2006,https://www.iso.org/standard/41285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22902-7:2006,https://www.iso.org/standard/42135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 26022:2010,https://www.iso.org/standard/43361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 4082:1981,https://www.iso.org/standard/9813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 4148:2004,https://www.iso.org/standard/40429.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 6797:1982,https://www.iso.org/standard/13295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 6969:2004,https://www.iso.org/standard/38164.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7588-1:1998,https://www.iso.org/standard/24782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7588-2:1998,https://www.iso.org/standard/14376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7591:1982,https://www.iso.org/standard/14380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/TR 9819:1991,https://www.iso.org/standard/17689.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/TR 10603:1992,https://www.iso.org/standard/18686.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/TR 11842:1997,https://www.iso.org/standard/1225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 13207-1:2012,https://www.iso.org/standard/53505.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 15763:2002,https://www.iso.org/standard/28892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/CD 20901,https://www.iso.org/standard/69407.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 2575:2010,https://www.iso.org/standard/54513.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 1:2011,https://www.iso.org/standard/55224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 3:2014,https://www.iso.org/standard/57913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 5:2016,https://www.iso.org/standard/65518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 6:2017,https://www.iso.org/standard/71504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2575:2010/Amd 7:2017,https://www.iso.org/standard/71505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO/DIS 2575,https://www.iso.org/standard/68409.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 3409:1975,https://www.iso.org/standard/8718.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 3958:1996,https://www.iso.org/standard/9613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 4040:2009,https://www.iso.org/standard/44856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 13207-1:2012,https://www.iso.org/standard/53505.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 16154:2005,https://www.iso.org/standard/32129.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 611:2003,https://www.iso.org/standard/28733.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 1728:2006,https://www.iso.org/standard/44103.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3583:1984,https://www.iso.org/standard/8991.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3803:1984,https://www.iso.org/standard/9338.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3871:2000,https://www.iso.org/standard/9466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3996:1995,https://www.iso.org/standard/9663.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4038:1996,https://www.iso.org/standard/9737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4039-1:1998,https://www.iso.org/standard/9739.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4039-2:1998,https://www.iso.org/standard/23980.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4925:2005,https://www.iso.org/standard/38513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4926:2006,https://www.iso.org/standard/43023.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4927:2005,https://www.iso.org/standard/38512.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4928:2006,https://www.iso.org/standard/40421.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4929:1978,https://www.iso.org/standard/10946.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4930:2006,https://www.iso.org/standard/41831.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6117:2005,https://www.iso.org/standard/38511.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6118:2006,https://www.iso.org/standard/40420.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6119:2006,https://www.iso.org/standard/41832.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6120:1995,https://www.iso.org/standard/12340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6310:2009,https://www.iso.org/standard/46271.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 6310,https://www.iso.org/standard/72696.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6311:1980,https://www.iso.org/standard/12598.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6312:2010,https://www.iso.org/standard/46272.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6313:1980,https://www.iso.org/standard/12600.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6314:1980,https://www.iso.org/standard/12601.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6315:1980,https://www.iso.org/standard/12602.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6597:2005,https://www.iso.org/standard/36969.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6786:1980,https://www.iso.org/standard/13283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7308:1987,https://www.iso.org/standard/13971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7309:1985,https://www.iso.org/standard/13972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7375-1:1986,https://www.iso.org/standard/14067.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7375-2:1998,https://www.iso.org/standard/14068.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7628:2010,https://www.iso.org/standard/50497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7629:1987,https://www.iso.org/standard/14437.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7630:1985,https://www.iso.org/standard/14438.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7631:1985,https://www.iso.org/standard/14439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7632:1985,https://www.iso.org/standard/14440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7633:1985,https://www.iso.org/standard/14441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7634:2007,https://www.iso.org/standard/44051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7635:2006,https://www.iso.org/standard/36970.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7638-1:2003,https://www.iso.org/standard/30209.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/FDIS 7638-1,https://www.iso.org/standard/70639.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7638-2:2003,https://www.iso.org/standard/30208.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/FDIS 7638-2,https://www.iso.org/standard/70640.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7642:1991,https://www.iso.org/standard/14458.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7643:1991,https://www.iso.org/standard/14460.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 9128:2006,https://www.iso.org/standard/40459.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 11157:2005,https://www.iso.org/standard/36952.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 12158,https://www.iso.org/standard/71228.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/PAS 12158:2002,https://www.iso.org/standard/33466.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 12161:2006,https://www.iso.org/standard/33465.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 12364:2001,https://www.iso.org/standard/1680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13486-1:1999,https://www.iso.org/standard/22099.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/TR 13487:1997,https://www.iso.org/standard/22100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 15484:2008,https://www.iso.org/standard/37538.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 15484,https://www.iso.org/standard/72695.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/CD 20901,https://www.iso.org/standard/69407.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 20918:2007,https://www.iso.org/standard/39819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 21069-1:2004,https://www.iso.org/standard/41338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 21069-2:2008,https://www.iso.org/standard/41339.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 21994:2007,https://www.iso.org/standard/40588.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 21995:2008,https://www.iso.org/standard/40589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/PAS 22574:2007,https://www.iso.org/standard/41018.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 26865:2009,https://www.iso.org/standard/43846.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/AWI 26865,https://www.iso.org/standard/70165.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 26866:2009,https://www.iso.org/standard/43847.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/AWI 26866,https://www.iso.org/standard/70166.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 26867:2009,https://www.iso.org/standard/43848.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 26867,https://www.iso.org/standard/72694.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 27667:2011,https://www.iso.org/standard/58001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3006:2015,https://www.iso.org/standard/60208.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3894:2015,https://www.iso.org/standard/60209.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 3894,https://www.iso.org/standard/72673.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3911:2004,https://www.iso.org/standard/36320.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/CD 3911,https://www.iso.org/standard/72662.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4000-2:2013,https://www.iso.org/standard/61085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO 4107:2010,https://www.iso.org/standard/51392.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 4107,https://www.iso.org/standard/72674.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4209-2:2012,https://www.iso.org/standard/51503.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 4,https://www.iso.org/contents/data/committee/04/77/47712/x/catalogue/ -ISO/CD 4209-2,https://www.iso.org/standard/73865.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 31/SC 4,https://www.iso.org/contents/data/committee/04/77/47712/x/catalogue/ -ISO 7141:2005,https://www.iso.org/standard/39422.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 7141,https://www.iso.org/standard/72677.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7575:1993,https://www.iso.org/standard/14362.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7646:1986,https://www.iso.org/standard/14463.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7647:1986,https://www.iso.org/standard/14464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7649:1991,https://www.iso.org/standard/14466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7653:1985,https://www.iso.org/standard/14472.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7707:1986,https://www.iso.org/standard/14532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7803:1987,https://www.iso.org/standard/14697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7804:1985,https://www.iso.org/standard/14700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 8667:1992,https://www.iso.org/standard/16055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 10597:2012,https://www.iso.org/standard/60393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 11425:1996,https://www.iso.org/standard/19365.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 12667:1993,https://www.iso.org/standard/19694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 13988:2008,https://www.iso.org/standard/51261.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 13988,https://www.iso.org/standard/72675.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 14400:2005,https://www.iso.org/standard/40021.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 14400,https://www.iso.org/standard/72676.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 15172:2005,https://www.iso.org/standard/38574.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 16833:2006,https://www.iso.org/standard/32451.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/CD 16833,https://www.iso.org/standard/72672.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3208:1974,https://www.iso.org/standard/8408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3832:2002,https://www.iso.org/standard/32995.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 6452:2007,https://www.iso.org/standard/43716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8066-2:2001,https://www.iso.org/standard/32087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/AWI 11154,https://www.iso.org/standard/74148.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/PAS 11154:2006,https://www.iso.org/standard/43941.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/TS 11155-1:2001,https://www.iso.org/standard/34308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 11155-2:2009,https://www.iso.org/standard/46274.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 13043:2011,https://www.iso.org/standard/52449.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 13837:2008,https://www.iso.org/standard/40670.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/CD 20724,https://www.iso.org/standard/68922.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 3468:2014,https://www.iso.org/standard/56701.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3469:1989,https://www.iso.org/standard/8816.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3469:1989/Amd 1:2006,https://www.iso.org/standard/42487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/NP 3469,https://www.iso.org/standard/72724.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3536:2016,https://www.iso.org/standard/59694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3537:2015,https://www.iso.org/standard/56215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3538:1997,https://www.iso.org/standard/8928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3917:2016,https://www.iso.org/standard/57636.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 5740:1982,https://www.iso.org/standard/11851.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 5898:1997,https://www.iso.org/standard/21534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 6255:1997,https://www.iso.org/standard/21536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 9258:1989,https://www.iso.org/standard/16908.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 9259:1991,https://www.iso.org/standard/16909.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 9259:1991/Amd 1:2001,https://www.iso.org/standard/33805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 9619:1992,https://www.iso.org/standard/17432.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 9619:1992/Amd 1:2002,https://www.iso.org/standard/34973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/NP 9619,https://www.iso.org/standard/72725.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 9704:1990,https://www.iso.org/standard/17560.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 15082:2016,https://www.iso.org/standard/68489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 17449:2015,https://www.iso.org/standard/59799.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 23013:2016,https://www.iso.org/standard/60485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 337:1981,https://www.iso.org/standard/4283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 337:1981/Cor 1:1990,https://www.iso.org/standard/4284.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 1102:2001,https://www.iso.org/standard/30354.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 1103:2007,https://www.iso.org/standard/40254.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 1726-1:2000/Cor 1:2007,https://www.iso.org/standard/45802.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 1726-1:2000,https://www.iso.org/standard/22850.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 1726-2:2007,https://www.iso.org/standard/36420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 1726-3:2010,https://www.iso.org/standard/46105.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 1726-3:2010/NP Amd 1,https://www.iso.org/standard/74381.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 3584:2001,https://www.iso.org/standard/30352.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/NP 3584,https://www.iso.org/standard/74383.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 3842:2006,https://www.iso.org/standard/36949.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 3853:1994,https://www.iso.org/standard/9418.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 4086:2001,https://www.iso.org/standard/34021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 5422:1982,https://www.iso.org/standard/11465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7641:2012,https://www.iso.org/standard/51861.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 8035:1991,https://www.iso.org/standard/15046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 8716:2001,https://www.iso.org/standard/34024.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 8717:2000,https://www.iso.org/standard/23028.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 8718:2001,https://www.iso.org/standard/34025.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 8755:2001,https://www.iso.org/standard/30353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 9367-1:1989,https://www.iso.org/standard/17052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 9367-2:1994,https://www.iso.org/standard/17053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 11406:2001,https://www.iso.org/standard/31117.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 11406:2001/Cor 1:2005,https://www.iso.org/standard/41376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 11407:2004,https://www.iso.org/standard/31118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 12357-1:1999/Cor 1:2007,https://www.iso.org/standard/45803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 12357-1:1999,https://www.iso.org/standard/1212.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 12357-2:2007,https://www.iso.org/standard/34026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 13044-1:2012,https://www.iso.org/standard/52450.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 13044-2:2013,https://www.iso.org/standard/52451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 18207:2006,https://www.iso.org/standard/44365.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 18868:2013,https://www.iso.org/standard/63639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 18868:2013/NP Amd 1,https://www.iso.org/standard/74382.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/TS 20825:2003,https://www.iso.org/standard/35550.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 2958:1973,https://www.iso.org/standard/8006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3208:1974,https://www.iso.org/standard/8408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 7862:2004,https://www.iso.org/standard/31904.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 8853:1989,https://www.iso.org/standard/16330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 12097-1:2002,https://www.iso.org/standard/35951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 12097-2:1996,https://www.iso.org/standard/23797.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/NP 12097-2,https://www.iso.org/standard/68088.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 12097-3:2002,https://www.iso.org/standard/36047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 12353-1:2002,https://www.iso.org/standard/34353.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/NP 12353-1,https://www.iso.org/standard/68075.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 12353-2:2003,https://www.iso.org/standard/25945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 12353-3:2013,https://www.iso.org/standard/57100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13215-1:2006,https://www.iso.org/standard/33479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13215-2:1999,https://www.iso.org/standard/23261.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/NP 13215-2,https://www.iso.org/standard/75355.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13215-3:1999,https://www.iso.org/standard/23262.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/NP 13215-3,https://www.iso.org/standard/75356.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13216-1:1999,https://www.iso.org/standard/30437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13216-1:1999/Amd 1:2006,https://www.iso.org/standard/36592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13216-1:1999/Amd 3:2006,https://www.iso.org/standard/38293.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13216-2:2004,https://www.iso.org/standard/36058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13216-3:2006,https://www.iso.org/standard/37419.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13216-3:2006/NP Amd 1,https://www.iso.org/standard/72719.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DIS 13216-3,https://www.iso.org/standard/67976.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13218:1998,https://www.iso.org/standard/20961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 13219:1995,https://www.iso.org/standard/21420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/NP TS 13396,https://www.iso.org/standard/72718.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/PAS 13396:2009,https://www.iso.org/standard/53764.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-1:2013,https://www.iso.org/standard/54762.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-2:2013,https://www.iso.org/standard/54763.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-3:2013,https://www.iso.org/standard/54764.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-4:2013,https://www.iso.org/standard/54765.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-5:2013,https://www.iso.org/standard/54766.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-6:2013,https://www.iso.org/standard/54767.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-7:2013,https://www.iso.org/standard/54769.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-8:2013,https://www.iso.org/standard/54770.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-9:2013,https://www.iso.org/standard/54772.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14451-10:2013,https://www.iso.org/standard/54774.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 14513:2016,https://www.iso.org/standard/69504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 14645:2015,https://www.iso.org/standard/64712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 14646:2007,https://www.iso.org/standard/44931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 17242:2014,https://www.iso.org/standard/59469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 17242:2014/Amd 1:2017,https://www.iso.org/standard/67218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 19237:2017,https://www.iso.org/standard/64111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 21750:2006,https://www.iso.org/standard/35983.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 21750,https://www.iso.org/standard/71230.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/PRF TS 22239-1,https://www.iso.org/standard/64158.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 22239-1:2009,https://www.iso.org/standard/40791.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/PRF TS 22239-2,https://www.iso.org/standard/64159.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 22239-2:2009,https://www.iso.org/standard/44905.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 22239-3:2017,https://www.iso.org/standard/64160.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 22240:2008,https://www.iso.org/standard/40792.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 22896:2006,https://www.iso.org/standard/41205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 26021-1:2008,https://www.iso.org/standard/45456.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/AWI 26021-1,https://www.iso.org/standard/74786.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 26021-2:2008,https://www.iso.org/standard/45457.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 26021-2:2008/Cor 1:2009,https://www.iso.org/standard/52986.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/AWI 26021-2,https://www.iso.org/standard/74787.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DIS 26021-2,https://www.iso.org/standard/65108.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 26021-3:2009,https://www.iso.org/standard/45458.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/AWI 26021-3,https://www.iso.org/standard/74788.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 26021-4:2009,https://www.iso.org/standard/45459.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/AWI 26021-4,https://www.iso.org/standard/74789.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 26021-5:2009,https://www.iso.org/standard/45460.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/AWI 26021-5,https://www.iso.org/standard/74790.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 29061-1:2010,https://www.iso.org/standard/52640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 29061-3:2017,https://www.iso.org/standard/64042.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 29061-4:2017,https://www.iso.org/standard/64043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 29061-5:2017,https://www.iso.org/standard/64044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TS 29062:2009,https://www.iso.org/standard/45301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 15623:2013,https://www.iso.org/standard/56655.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 22839:2013,https://www.iso.org/standard/45339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 1585:1992,https://www.iso.org/standard/6179.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/AWI 1585,https://www.iso.org/standard/70078.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 2534:1998,https://www.iso.org/standard/7476.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/AWI 2534,https://www.iso.org/standard/70654.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16185:2000,https://www.iso.org/standard/32154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 2790:2004,https://www.iso.org/standard/37879.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO/CD 2790,https://www.iso.org/standard/70614.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 5287:2003,https://www.iso.org/standard/38221.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 6621-1:2007,https://www.iso.org/standard/44467.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/PRF 6621-1,https://www.iso.org/standard/67903.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6621-2:2003,https://www.iso.org/standard/38437.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 6621-2,https://www.iso.org/standard/70227.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6621-3:2000,https://www.iso.org/standard/26893.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/NP 6621-3,https://www.iso.org/standard/75122.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6621-4:2015,https://www.iso.org/standard/59170.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6621-5:2013,https://www.iso.org/standard/55412.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 6621-5,https://www.iso.org/standard/68942.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6622-2:2013,https://www.iso.org/standard/55413.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6623:2013,https://www.iso.org/standard/57114.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6624-1:2017,https://www.iso.org/standard/67904.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6624-2:2016,https://www.iso.org/standard/59242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6624-3:2017,https://www.iso.org/standard/67905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6624-4:2016,https://www.iso.org/standard/59243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6625:1986,https://www.iso.org/standard/13043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6626:1989,https://www.iso.org/standard/13044.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 6626-1,https://www.iso.org/standard/68370.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6626-2:2013,https://www.iso.org/standard/55414.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 6626-2,https://www.iso.org/standard/67906.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6626-3:2008,https://www.iso.org/standard/42961.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 6626-3.2,https://www.iso.org/standard/67907.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6627:2011,https://www.iso.org/standard/51311.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7648:1987,https://www.iso.org/standard/14465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 9010:1997,https://www.iso.org/standard/21431.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 9011:1997,https://www.iso.org/standard/21432.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 9981:1998,https://www.iso.org/standard/27602.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO/NP 9981,https://www.iso.org/standard/70616.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 11055:1996,https://www.iso.org/standard/19034.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 11749:2014,https://www.iso.org/standard/55528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 12046:2012,https://www.iso.org/standard/41585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 18669-1:2013,https://www.iso.org/standard/55369.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/NP 18669-1,https://www.iso.org/standard/75123.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 18669-2:2004,https://www.iso.org/standard/35698.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 18669-2,https://www.iso.org/standard/63636.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/CD 21342,https://www.iso.org/standard/74775.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 41/SC 4,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO/WD 21342,https://www.iso.org/standard/70628.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/84/48418/x/catalogue/ -ISO 3929:2003,https://www.iso.org/standard/36351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 5011:2014,https://www.iso.org/standard/64762.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 5011:2014/FDAmd 1,https://www.iso.org/standard/68573.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/CD 5011,https://www.iso.org/standard/72490.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 11841-1:2000,https://www.iso.org/standard/32455.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 11841-2:2000,https://www.iso.org/standard/26750.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12103-1:2016,https://www.iso.org/standard/63386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12103-2:1997,https://www.iso.org/standard/27060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 12103-3,https://www.iso.org/standard/65249.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 13556:1998,https://www.iso.org/standard/22214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16183:2002,https://www.iso.org/standard/32152.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16247:2004,https://www.iso.org/standard/38609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 17536-1:2015,https://www.iso.org/standard/59980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 17536-1:2015/DAmd 1,https://www.iso.org/standard/72480.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/TS 17536-2:2017,https://www.iso.org/standard/59981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/TS 17536-3:2014,https://www.iso.org/standard/59982.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/CD 17536-4,https://www.iso.org/standard/66976.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DTS 17536-5,https://www.iso.org/standard/66977.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/TS 19713-1:2010,https://www.iso.org/standard/55620.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/TS 19713-2:2010,https://www.iso.org/standard/55621.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/CD 20724,https://www.iso.org/standard/68922.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6415:2005,https://www.iso.org/standard/35017.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 7747:1983,https://www.iso.org/standard/14591.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 70/SC 7,https://www.iso.org/contents/data/committee/04/98/49880/x/catalogue/ -ISO 9817:1991,https://www.iso.org/standard/17687.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 9818:1991,https://www.iso.org/standard/17688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 11841-1:2000,https://www.iso.org/standard/32455.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 11841-2:2000,https://www.iso.org/standard/26750.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/CD 21441,https://www.iso.org/standard/70923.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 2697:1999,https://www.iso.org/standard/30214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 2698:2016,https://www.iso.org/standard/69499.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 2699:1994,https://www.iso.org/standard/22735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 2974:2016,https://www.iso.org/standard/69500.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/FDIS 2974,https://www.iso.org/standard/74897.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 3539:1975,https://www.iso.org/standard/8929.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 4008-1:1980,https://www.iso.org/standard/9684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 4008-2:1983,https://www.iso.org/standard/9685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 4008-3:1987,https://www.iso.org/standard/9686.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 4008-3:1987/Amd 1:2002,https://www.iso.org/standard/34825.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 4020:2001,https://www.iso.org/standard/35468.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 4093:1999,https://www.iso.org/standard/28852.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 6519:2015,https://www.iso.org/standard/64048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7026:1997,https://www.iso.org/standard/26745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7030:1987,https://www.iso.org/standard/13590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7299-1:2007,https://www.iso.org/standard/41465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7299-2:2009,https://www.iso.org/standard/41467.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7310:1993,https://www.iso.org/standard/13974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7311:1993,https://www.iso.org/standard/13976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7440-1:1991,https://www.iso.org/standard/14177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7440-2:1991,https://www.iso.org/standard/14179.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7612:2009,https://www.iso.org/standard/51565.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7654:1998,https://www.iso.org/standard/28565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-1:1990,https://www.iso.org/standard/14811.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-1:1990/Amd 1:1999,https://www.iso.org/standard/26744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-2:1991,https://www.iso.org/standard/14813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-2:1991/Amd 1:1999,https://www.iso.org/standard/31123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-3:1993,https://www.iso.org/standard/14814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-4:2004,https://www.iso.org/standard/30503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7876-5:2004,https://www.iso.org/standard/34828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7879:1997,https://www.iso.org/standard/26749.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 8356:1984,https://www.iso.org/standard/15502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 8535-1:2016,https://www.iso.org/standard/70228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 8535-2:2003,https://www.iso.org/standard/33774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 8789:2009,https://www.iso.org/standard/43706.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/DIS 8789,https://www.iso.org/standard/68037.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8984-2:1993,https://www.iso.org/standard/16513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 9102:1997,https://www.iso.org/standard/26746.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 9103:1987,https://www.iso.org/standard/16698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 9534:1989,https://www.iso.org/standard/17270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11439:2013,https://www.iso.org/standard/44755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11841-1:2000,https://www.iso.org/standard/32455.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 11841-2:2000,https://www.iso.org/standard/26750.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12103-1:2016,https://www.iso.org/standard/63386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12103-2:1997,https://www.iso.org/standard/27060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 12103-3,https://www.iso.org/standard/65249.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12251:2017,https://www.iso.org/standard/70132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12345:2013,https://www.iso.org/standard/52966.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12614-1:2014,https://www.iso.org/standard/57661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-2:2014,https://www.iso.org/standard/57662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-3:2014,https://www.iso.org/standard/57663.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-4:2014,https://www.iso.org/standard/57664.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-5:2014,https://www.iso.org/standard/57667.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-6:2014,https://www.iso.org/standard/57668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-7:2014,https://www.iso.org/standard/57671.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-8:2014,https://www.iso.org/standard/57673.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-9:2014,https://www.iso.org/standard/57674.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-10:2014,https://www.iso.org/standard/57675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-11:2014,https://www.iso.org/standard/57678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-12:2014,https://www.iso.org/standard/57679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-13:2014,https://www.iso.org/standard/57680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-14:2014,https://www.iso.org/standard/57681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-15:2014,https://www.iso.org/standard/57682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-16:2014,https://www.iso.org/standard/57683.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-17:2014,https://www.iso.org/standard/57684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-18:2014,https://www.iso.org/standard/57685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12614-19:2017,https://www.iso.org/standard/68462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12617:2015,https://www.iso.org/standard/51568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-1:2014,https://www.iso.org/standard/51569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-2:2014,https://www.iso.org/standard/51570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-2:2014/Amd 1:2016,https://www.iso.org/standard/67835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-2:2014/DAmd 2,https://www.iso.org/standard/73243.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-3:2014,https://www.iso.org/standard/51571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-3:2014/Amd 1:2016,https://www.iso.org/standard/67836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-4:2016,https://www.iso.org/standard/68146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-5:2016,https://www.iso.org/standard/68147.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-6:2017,https://www.iso.org/standard/68132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-7:2017,https://www.iso.org/standard/70683.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-8:2017,https://www.iso.org/standard/70684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-9:2017,https://www.iso.org/standard/70685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-10:2017,https://www.iso.org/standard/70686.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-11:2017,https://www.iso.org/standard/70687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-12:2017,https://www.iso.org/standard/70688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-13:2017,https://www.iso.org/standard/70689.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-14:2017,https://www.iso.org/standard/70690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-15:2017,https://www.iso.org/standard/70691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 12619-16:2017,https://www.iso.org/standard/70692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 13296:2016,https://www.iso.org/standard/69501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 13331:1995,https://www.iso.org/standard/21727.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 13775-2:2016,https://www.iso.org/standard/43708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13948-1:2015,https://www.iso.org/standard/63979.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 13948-2:2016,https://www.iso.org/standard/69502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 13984:1999,https://www.iso.org/standard/23570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 13985:2006,https://www.iso.org/standard/39892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 14469:2017,https://www.iso.org/standard/65064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 14681:1998,https://www.iso.org/standard/25229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 14687-2:2012,https://www.iso.org/standard/55083.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 15500-1:2015,https://www.iso.org/standard/60255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-2:2016,https://www.iso.org/standard/69110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-3:2012,https://www.iso.org/standard/51564.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-3:2012/Amd 1:2016,https://www.iso.org/standard/67822.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-4:2012,https://www.iso.org/standard/51563.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-4:2012/Amd 1:2016,https://www.iso.org/standard/67823.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-5:2012,https://www.iso.org/standard/55423.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-5:2012/Amd 1:2016,https://www.iso.org/standard/67824.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-6:2012,https://www.iso.org/standard/51562.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-6:2012/Amd 1:2016,https://www.iso.org/standard/67825.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-7:2015,https://www.iso.org/standard/60256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-8:2015,https://www.iso.org/standard/60283.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-9:2012,https://www.iso.org/standard/51561.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-9:2012/Amd 1:2016,https://www.iso.org/standard/67826.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-10:2015,https://www.iso.org/standard/60284.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-11:2015,https://www.iso.org/standard/60285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-12:2015,https://www.iso.org/standard/60286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-13:2012,https://www.iso.org/standard/55424.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-13:2012/Amd 1:2016,https://www.iso.org/standard/67827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-14:2012,https://www.iso.org/standard/51560.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-14:2012/Amd 1:2016,https://www.iso.org/standard/67828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-15:2015,https://www.iso.org/standard/67708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-16:2012,https://www.iso.org/standard/51559.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-16:2012/Amd 1:2016,https://www.iso.org/standard/67829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-17:2012,https://www.iso.org/standard/51558.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-17:2012/Amd 1:2016,https://www.iso.org/standard/67830.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-18:2012,https://www.iso.org/standard/51557.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-18:2012/Amd 1:2016,https://www.iso.org/standard/67831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-19:2012,https://www.iso.org/standard/51556.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-19:2012/Amd 1:2016,https://www.iso.org/standard/67832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15500-20:2015,https://www.iso.org/standard/60259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15501-1:2016,https://www.iso.org/standard/68375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 15501-2:2016,https://www.iso.org/standard/68369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/TS 15869:2009,https://www.iso.org/standard/52871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/PRF 16332,https://www.iso.org/standard/44294.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/TS 16332:2006,https://www.iso.org/standard/37856.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 18418-1:2016,https://www.iso.org/standard/69503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 18418-2:2014,https://www.iso.org/standard/62434.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 19078:2013,https://www.iso.org/standard/51026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO 19438:2003,https://www.iso.org/standard/33831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 19723-1.2,https://www.iso.org/standard/66120.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/DIS 19723-2.2,https://www.iso.org/standard/66121.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 19724:2016,https://www.iso.org/standard/66122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 19825,https://www.iso.org/standard/66279.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/DIS 19880-1,https://www.iso.org/standard/71940.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/TS 19880-1:2016,https://www.iso.org/standard/65003.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19880-2,https://www.iso.org/standard/64753.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/FDIS 19880-3,https://www.iso.org/standard/64754.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/CD 19880-5,https://www.iso.org/standard/64785.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/CD 19880-5,https://www.iso.org/standard/73787.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19880-8,https://www.iso.org/standard/69540.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19881,https://www.iso.org/standard/65029.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19882,https://www.iso.org/standard/64655.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 20766-1,https://www.iso.org/standard/69003.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/DIS 20766-2,https://www.iso.org/standard/69016.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/DIS 20766-3,https://www.iso.org/standard/71565.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/DIS 20766-4,https://www.iso.org/standard/71566.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/CD 20766-6,https://www.iso.org/standard/71568.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/CD 20766-9,https://www.iso.org/standard/71569.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 20826:2006,https://www.iso.org/standard/35551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/DIS 21042,https://www.iso.org/standard/69730.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 21266-1,https://www.iso.org/standard/70340.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO/DIS 21266-2,https://www.iso.org/standard/70341.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 22241-1:2006,https://www.iso.org/standard/40793.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 22241-1,https://www.iso.org/standard/66408.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 22241-2:2006,https://www.iso.org/standard/40794.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 22241-2:2006/Cor 1:2008,https://www.iso.org/standard/50927.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 22241-2,https://www.iso.org/standard/66409.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 22241-3:2017,https://www.iso.org/standard/66410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 22241-4:2009,https://www.iso.org/standard/42941.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 22241-4,https://www.iso.org/standard/66411.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 22241-5:2012,https://www.iso.org/standard/54542.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 22241-5,https://www.iso.org/standard/70266.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 3412:1992,https://www.iso.org/standard/8726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 3553-1:1987,https://www.iso.org/standard/8954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 3553-2:1997,https://www.iso.org/standard/23387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 3808:2002,https://www.iso.org/standard/26261.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 3895:1986,https://www.iso.org/standard/9503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 3896:1986,https://www.iso.org/standard/9505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 4024:1992,https://www.iso.org/standard/9712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 6518-1:2002,https://www.iso.org/standard/35016.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 6518-2:1995,https://www.iso.org/standard/20096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 6518-2:1995/Cor 1:1997,https://www.iso.org/standard/27839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 6856:2005,https://www.iso.org/standard/39884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7650:1987,https://www.iso.org/standard/14467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7650:1987/Amd 1:2001,https://www.iso.org/standard/33880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7651:1991,https://www.iso.org/standard/14468.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 8123:1991,https://www.iso.org/standard/15183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 8854:2012,https://www.iso.org/standard/55075.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 8856:2014,https://www.iso.org/standard/61337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 9457-1:1991,https://www.iso.org/standard/17184.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 9457-2:1994,https://www.iso.org/standard/1180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 9534:1989,https://www.iso.org/standard/17270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10455:1992,https://www.iso.org/standard/18518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11565:2006,https://www.iso.org/standard/35092.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11565:2006/Cor 1:2007,https://www.iso.org/standard/50036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/NP 11565-1,https://www.iso.org/standard/71944.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/NP 11565-2,https://www.iso.org/standard/71945.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11748-1:2001,https://www.iso.org/standard/31871.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11748-2:2001,https://www.iso.org/standard/31872.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 11748-3:2002,https://www.iso.org/standard/31873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 13476:1997,https://www.iso.org/standard/22075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 13476:1997/Cor 1:1999,https://www.iso.org/standard/31499.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/TR 15409:2002,https://www.iso.org/standard/27636.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 17447-1:2015,https://www.iso.org/standard/59789.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 17447-2:2015,https://www.iso.org/standard/59790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 17447-3:2015,https://www.iso.org/standard/63265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/DIS 20574,https://www.iso.org/standard/68433.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/CD 21956,https://www.iso.org/standard/72290.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 28741:2013,https://www.iso.org/standard/56857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 7656:1993,https://www.iso.org/standard/14475.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 11012:2009,https://www.iso.org/standard/46582.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 11026:2010,https://www.iso.org/standard/46583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 14791:2000,https://www.iso.org/standard/25560.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/AWI 14791,https://www.iso.org/standard/70169.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 14792:2011,https://www.iso.org/standard/57254.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/AWI 14792,https://www.iso.org/standard/72705.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 14793:2011,https://www.iso.org/standard/57255.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 15037-2:2002,https://www.iso.org/standard/28824.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 16234:2006,https://www.iso.org/standard/37788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 16333:2011,https://www.iso.org/standard/57252.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 16552:2014,https://www.iso.org/standard/57090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 18375:2016,https://www.iso.org/standard/62291.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 19377:2017,https://www.iso.org/standard/64760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/CD 19380,https://www.iso.org/standard/64761.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/CD 19585,https://www.iso.org/standard/65403.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/PAS 21308-1:2007,https://www.iso.org/standard/37808.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/PRF 21308-1,https://www.iso.org/standard/65656.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 21308-2:2006,https://www.iso.org/standard/37809.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/NP 21308-2,https://www.iso.org/standard/70351.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 21308-3:2007,https://www.iso.org/standard/37810.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/NP 21308-3,https://www.iso.org/standard/70352.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/TS 21308-4:2007,https://www.iso.org/standard/37812.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 21308-5:2014,https://www.iso.org/standard/37813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/DIS 21308-6,https://www.iso.org/standard/68972.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO/DIS 21308-7,https://www.iso.org/standard/68970.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 16121-1:2012,https://www.iso.org/standard/56173.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 16121-2:2011,https://www.iso.org/standard/56532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 16121-3:2011,https://www.iso.org/standard/59367.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 16121-4:2011,https://www.iso.org/standard/56533.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 39,https://www.iso.org/contents/data/committee/53/91/5391225/x/catalogue/ -ISO 2416:1992,https://www.iso.org/standard/7318.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 3888-1:1999,https://www.iso.org/standard/31317.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/DIS 3888-1.2,https://www.iso.org/standard/67973.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3888-2:2011,https://www.iso.org/standard/57253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3984:2004,https://www.iso.org/standard/34005.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 4131:1979,https://www.iso.org/standard/9887.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 4138:2012,https://www.iso.org/standard/54143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7237:1993,https://www.iso.org/standard/13881.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7237:1993/Amd 1:2001,https://www.iso.org/standard/25940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 7397-1:1993,https://www.iso.org/standard/14113.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 7397-2:1993,https://www.iso.org/standard/14114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 7975:2006,https://www.iso.org/standard/37217.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/PRF 7975,https://www.iso.org/standard/67974.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 8936:2017,https://www.iso.org/standard/63114.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 9815:2010,https://www.iso.org/standard/54152.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 9816:2006,https://www.iso.org/standard/42037.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/PRF 9816,https://www.iso.org/standard/67975.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 10865-1:2012,https://www.iso.org/standard/46214.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO 10865-2:2015,https://www.iso.org/standard/46215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 1,https://www.iso.org/contents/data/committee/05/37/53792/x/catalogue/ -ISO/TR 10982:2013,https://www.iso.org/standard/63781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 11555-1:2003,https://www.iso.org/standard/37770.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 13052:2013,https://www.iso.org/standard/52452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 15037-1:2006,https://www.iso.org/standard/38887.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/DIS 15037-1,https://www.iso.org/standard/70164.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 17288-1:2011,https://www.iso.org/standard/53603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 17288-2:2011,https://www.iso.org/standard/53604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 18207:2006,https://www.iso.org/standard/44365.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 40,https://www.iso.org/contents/data/committee/53/84/5384059/x/catalogue/ -ISO 19364:2016,https://www.iso.org/standard/64701.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 19365:2016,https://www.iso.org/standard/64702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6469-1:2009,https://www.iso.org/standard/45477.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/NP 6469-1,https://www.iso.org/standard/68665.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 6469-2:2018,https://www.iso.org/standard/68666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 6469-3:2011,https://www.iso.org/standard/45479.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/DIS 6469-3,https://www.iso.org/standard/68667.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 6469-4:2015,https://www.iso.org/standard/60584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/NP TR 8713,https://www.iso.org/standard/71402.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/TR 8713:2012,https://www.iso.org/standard/55745.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 8714:2002,https://www.iso.org/standard/34087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 8715:2001,https://www.iso.org/standard/16118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/TR 11954:2008,https://www.iso.org/standard/51064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/TR 11955:2008,https://www.iso.org/standard/51066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 12405-1:2011,https://www.iso.org/standard/51414.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 12405-2:2012,https://www.iso.org/standard/55854.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 12405-3:2014,https://www.iso.org/standard/59224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/FDIS 12405-4,https://www.iso.org/standard/71407.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 15118-1:2013,https://www.iso.org/standard/55365.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DIS 15118-1,https://www.iso.org/standard/69113.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15118-2:2014,https://www.iso.org/standard/55366.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/CD 15118-2,https://www.iso.org/standard/69114.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15118-3:2015,https://www.iso.org/standard/59675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/FDIS 15118-4,https://www.iso.org/standard/61724.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/FDIS 15118-5,https://www.iso.org/standard/61725.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15118-8,https://www.iso.org/standard/62984.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/PAS 16898:2012,https://www.iso.org/standard/57871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 17409:2015,https://www.iso.org/standard/68491.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/AWI 17409,https://www.iso.org/standard/72880.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 18300:2016,https://www.iso.org/standard/62043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/PAS 19295:2016,https://www.iso.org/standard/64454.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/CD 19363,https://www.iso.org/standard/73547.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/PAS 19363:2017,https://www.iso.org/standard/64700.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/DIS 20762,https://www.iso.org/standard/68993.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/CD 21498,https://www.iso.org/standard/71021.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/CD 21782-1,https://www.iso.org/standard/72335.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/CD 21782-2,https://www.iso.org/standard/72336.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/CD 21782-3,https://www.iso.org/standard/72337.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO/CD 21782-6,https://www.iso.org/standard/72338.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 23273:2013,https://www.iso.org/standard/64047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 23274-1:2013,https://www.iso.org/standard/57048.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 23274-2:2012,https://www.iso.org/standard/54848.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 23828:2013,https://www.iso.org/standard/61031.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -IEC 62752:2016,https://www.iso.org/standard/62682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 37,https://www.iso.org/contents/data/committee/53/91/5391154/x/catalogue/ -ISO 4106:2012,https://www.iso.org/standard/55363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 4129:2012,https://www.iso.org/standard/45395.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 4151:1987,https://www.iso.org/standard/9916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 4164:2012,https://www.iso.org/standard/55398.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 4249-3:2010,https://www.iso.org/standard/51733.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 5751-1:2010,https://www.iso.org/standard/51734.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 5751-2:2010,https://www.iso.org/standard/51735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 5751-3:2010,https://www.iso.org/standard/51736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 6054-2:1990,https://www.iso.org/standard/12251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 6460-1:2007,https://www.iso.org/standard/43294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6460-1:2007/Amd 1:2015,https://www.iso.org/standard/65507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6460-2:2014,https://www.iso.org/standard/62685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6460-3:2007,https://www.iso.org/standard/43296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6460-3:2007/Amd 1:2015,https://www.iso.org/standard/65478.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6725:1981,https://www.iso.org/standard/13181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6726:1988,https://www.iso.org/standard/13183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6727:2012,https://www.iso.org/standard/41874.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6855-1:2012,https://www.iso.org/standard/55400.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6855-2:2012,https://www.iso.org/standard/55401.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 6855-3:2012,https://www.iso.org/standard/55402.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 7116:2011,https://www.iso.org/standard/45397.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 7117:2010,https://www.iso.org/standard/50631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 7398:1990,https://www.iso.org/standard/14116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 7399:1990,https://www.iso.org/standard/14118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 7400:1990,https://www.iso.org/standard/14120.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 8052:1990,https://www.iso.org/standard/15068.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 8644:2006,https://www.iso.org/standard/40674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 8645:1988,https://www.iso.org/standard/16008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 8705:2005,https://www.iso.org/standard/36705.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 8706:1990,https://www.iso.org/standard/16110.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 8709:2010,https://www.iso.org/standard/45868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 8710:2010,https://www.iso.org/standard/50875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 9021:1988,https://www.iso.org/standard/16565.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 9043:2008,https://www.iso.org/standard/45396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 9129:2008,https://www.iso.org/standard/42939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 9130:2005,https://www.iso.org/standard/33494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 9131:1993,https://www.iso.org/standard/16727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 9132:1990,https://www.iso.org/standard/16728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 9565:1990,https://www.iso.org/standard/17311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 9645:1990,https://www.iso.org/standard/17471.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9987:1990,https://www.iso.org/standard/17895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 10190:2008,https://www.iso.org/standard/40893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 10355:2004,https://www.iso.org/standard/33456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11460:2007,https://www.iso.org/standard/41873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11486:2006,https://www.iso.org/standard/38683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11486:2006/Amd 1:2012,https://www.iso.org/standard/61444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11838:1997,https://www.iso.org/standard/1518.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11838:1997/Amd 1:2011,https://www.iso.org/standard/57746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 11838:1997/NP Amd 2,https://www.iso.org/standard/71557.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 12364:2001,https://www.iso.org/standard/1680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 12366:2001,https://www.iso.org/standard/1194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO/TR 13062:2015,https://www.iso.org/standard/52521.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13063:2012,https://www.iso.org/standard/52522.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13064-1:2012,https://www.iso.org/standard/52523.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13064-2:2012,https://www.iso.org/standard/52524.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-1:2005,https://www.iso.org/standard/37421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-1:2005/Amd 1:2012,https://www.iso.org/standard/57246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-2:2005,https://www.iso.org/standard/37422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-3:2005,https://www.iso.org/standard/37423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-3:2005/Amd 1:2012,https://www.iso.org/standard/57247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-4:2005,https://www.iso.org/standard/37424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-5:2005,https://www.iso.org/standard/37425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-5:2005/Amd 1:2012,https://www.iso.org/standard/57248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-6:2005,https://www.iso.org/standard/37426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-6:2005/Amd 1:2012,https://www.iso.org/standard/57249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-7:2005,https://www.iso.org/standard/37427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-7:2005/Amd 1:2012,https://www.iso.org/standard/57250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-8:2005,https://www.iso.org/standard/37428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 13232-8:2005/Amd 1:2012,https://www.iso.org/standard/57251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 14722:1998,https://www.iso.org/standard/25358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 14722:1998/Amd 1:2011,https://www.iso.org/standard/57747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 17479:2013,https://www.iso.org/standard/59880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 18243:2017,https://www.iso.org/standard/61857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 18246:2015,https://www.iso.org/standard/61859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 18580:2015,https://www.iso.org/standard/62949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 19449:2015,https://www.iso.org/standard/64928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO/TS 19466:2017,https://www.iso.org/standard/71552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 19689:2016,https://www.iso.org/standard/66030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO/PAS 19695:2015,https://www.iso.org/standard/66044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO/DIS 21755-1,https://www.iso.org/standard/71555.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 28981:2009,https://www.iso.org/standard/45119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 28981:2009/Amd 1:2015,https://www.iso.org/standard/65508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO 4210-1:2014,https://www.iso.org/standard/59908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 4210-2:2015,https://www.iso.org/standard/68260.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 4210-3:2014,https://www.iso.org/standard/59910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 4210-4:2014,https://www.iso.org/standard/59911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 4210-5:2014,https://www.iso.org/standard/59912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 4210-6:2015,https://www.iso.org/standard/68261.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 4210-7:2014,https://www.iso.org/standard/59914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 4210-8:2014,https://www.iso.org/standard/59915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 4210-9:2014,https://www.iso.org/standard/59916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO/CD 4210-10,https://www.iso.org/standard/70038.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 5775-2:2015,https://www.iso.org/standard/56560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 6692:1981,https://www.iso.org/standard/13127.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 6695:2015,https://www.iso.org/standard/65002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 6696:1989,https://www.iso.org/standard/13131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 6697:1994,https://www.iso.org/standard/13132.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 6698:1989,https://www.iso.org/standard/13134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 6699:2016,https://www.iso.org/standard/65004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 6701:1991,https://www.iso.org/standard/13137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 6742-1:2015,https://www.iso.org/standard/55231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 6742-2:2015,https://www.iso.org/standard/55232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 6742-2:2015/DAmd 1,https://www.iso.org/standard/74441.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 6742-3:2015,https://www.iso.org/standard/59905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 6742-4:2015,https://www.iso.org/standard/59906.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 6742-5:2015,https://www.iso.org/standard/59907.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 8090:1990,https://www.iso.org/standard/15126.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO/NP 8090,https://www.iso.org/standard/70618.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 8098:2014,https://www.iso.org/standard/54815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 8488:1986,https://www.iso.org/standard/15698.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 8562:1990,https://www.iso.org/standard/15824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 9633:2001,https://www.iso.org/standard/23532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 10230:1990,https://www.iso.org/standard/18266.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 149,https://www.iso.org/contents/data/committee/05/30/53030/x/catalogue/ -ISO 11243:2016,https://www.iso.org/standard/61238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 14878:2015,https://www.iso.org/standard/55230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 8437:1989,https://www.iso.org/standard/15623.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 8437:1989/Amd 1:1997,https://www.iso.org/standard/25395.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO/FDIS 8437-1,https://www.iso.org/standard/66190.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO/FDIS 8437-2,https://www.iso.org/standard/66205.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO/FDIS 8437-3,https://www.iso.org/standard/66206.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO/FDIS 8437-4,https://www.iso.org/standard/66207.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 9666:1993,https://www.iso.org/standard/17512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 3888-1:1999,https://www.iso.org/standard/31317.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/DIS 3888-1.2,https://www.iso.org/standard/67973.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 3888-2:2011,https://www.iso.org/standard/57253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4010:1998,https://www.iso.org/standard/25131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 4113:2010,https://www.iso.org/standard/50636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7440-1:1991,https://www.iso.org/standard/14177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 7639:1985,https://www.iso.org/standard/14454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 8720:1991,https://www.iso.org/standard/16123.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 8984-1:1993,https://www.iso.org/standard/16511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 9141:1989,https://www.iso.org/standard/16737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 9141-2:1994,https://www.iso.org/standard/16738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 9141-2:1994/Amd 1:1996,https://www.iso.org/standard/24607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 9141-3:1998,https://www.iso.org/standard/28621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TR 9790:1999,https://www.iso.org/standard/29828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 10054:1998,https://www.iso.org/standard/18019.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/TR 10305-1:2003,https://www.iso.org/standard/36575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO/TR 10305-2:2003,https://www.iso.org/standard/37229.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 32,https://www.iso.org/contents/data/committee/53/83/5383636/x/catalogue/ -ISO 10604:1993,https://www.iso.org/standard/18687.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 11530:1993,https://www.iso.org/standard/19484.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 11614:1999,https://www.iso.org/standard/19551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 70/SC 8,https://www.iso.org/contents/data/committee/04/98/49884/x/catalogue/ -ISO/TR 12349-1:2015,https://www.iso.org/standard/65082.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 12349-2:2015,https://www.iso.org/standard/65083.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 13400-1:2011,https://www.iso.org/standard/53765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/NP 13400-1,https://www.iso.org/standard/73793.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13400-2:2012,https://www.iso.org/standard/53766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/AWI 13400-2,https://www.iso.org/standard/74785.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13400-3:2016,https://www.iso.org/standard/68424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 13400-4:2016,https://www.iso.org/standard/57317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14229-1:2013,https://www.iso.org/standard/55283.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/NP 14229-1,https://www.iso.org/standard/72439.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14229-2:2013,https://www.iso.org/standard/45763.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14229-3:2012,https://www.iso.org/standard/55284.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14229-4:2012,https://www.iso.org/standard/55285.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14229-5:2013,https://www.iso.org/standard/55287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14229-6:2013,https://www.iso.org/standard/55288.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14229-7:2015,https://www.iso.org/standard/61221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/CD 14229-8,https://www.iso.org/standard/72527.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14230-1:2012,https://www.iso.org/standard/55591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14230-2:2016,https://www.iso.org/standard/69115.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14230-3:1999,https://www.iso.org/standard/23921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 14230-4:2000,https://www.iso.org/standard/28826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-3:2016,https://www.iso.org/standard/64636.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15031-4:2014,https://www.iso.org/standard/55047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 15764:2004,https://www.iso.org/standard/28775.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/TR 15766:2000,https://www.iso.org/standard/28895.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DIS 16232,https://www.iso.org/standard/70267.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-1:2007,https://www.iso.org/standard/39230.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-2:2007,https://www.iso.org/standard/39231.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-3:2007,https://www.iso.org/standard/39232.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-4:2007,https://www.iso.org/standard/39233.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-5:2007,https://www.iso.org/standard/39234.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-6:2007,https://www.iso.org/standard/39235.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-7:2007,https://www.iso.org/standard/39236.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-8:2007,https://www.iso.org/standard/39237.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-9:2007,https://www.iso.org/standard/39238.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 16232-10:2007,https://www.iso.org/standard/39239.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/TR 16250:2013,https://www.iso.org/standard/56015.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 17268:2012,https://www.iso.org/standard/51194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 17268,https://www.iso.org/standard/68442.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 17949:2013,https://www.iso.org/standard/61082.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 17949:2013/Amd 1:2017,https://www.iso.org/standard/70641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 17949:2013/DAmd 2,https://www.iso.org/standard/72707.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 17950:2016,https://www.iso.org/standard/64714.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 18541-1:2014,https://www.iso.org/standard/53964.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18541-2:2014,https://www.iso.org/standard/53965.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18541-3:2014,https://www.iso.org/standard/53966.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18541-4:2015,https://www.iso.org/standard/57544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/FDIS 18541-5,https://www.iso.org/standard/68659.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18541-6:2018,https://www.iso.org/standard/67459.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18542-1:2012,https://www.iso.org/standard/53967.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 18542-2:2014,https://www.iso.org/standard/58101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 19689:2016,https://www.iso.org/standard/66030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 38,https://www.iso.org/contents/data/committee/53/84/5384008/x/catalogue/ -ISO/DIS 20080,https://www.iso.org/standard/66979.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/CD 20730-1,https://www.iso.org/standard/73801.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/NP 20730-3,https://www.iso.org/standard/73803.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22901-1:2008,https://www.iso.org/standard/41207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22901-2:2011,https://www.iso.org/standard/52669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 22901-3,https://www.iso.org/standard/60264.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-1:2012,https://www.iso.org/standard/46273.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-2:2012,https://www.iso.org/standard/46276.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-3:2012,https://www.iso.org/standard/46277.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-4:2016,https://www.iso.org/standard/68571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO 27145-6:2015,https://www.iso.org/standard/62445.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 31,https://www.iso.org/contents/data/committee/53/83/5383568/x/catalogue/ -ISO/DTR 27957,https://www.iso.org/standard/74315.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 27957:2008,https://www.iso.org/standard/44444.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/TR 27957:2008/CD Amd 1,https://www.iso.org/standard/74163.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO 3095:2013,https://www.iso.org/standard/55726.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 3381:2005,https://www.iso.org/standard/41668.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/FDIS 20138-1,https://www.iso.org/standard/67120.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 269/SC 2,https://www.iso.org/contents/data/committee/60/86/6086580/x/catalogue/ -ISO/TR 21245-1:2016,https://www.iso.org/standard/70230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 269,https://www.iso.org/contents/data/committee/66/16/661629/x/catalogue/ -ISO/TR 21245-2:2016,https://www.iso.org/standard/70251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 269,https://www.iso.org/contents/data/committee/66/16/661629/x/catalogue/ -ISO/PRF TR 22131,https://www.iso.org/standard/72645.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 269/SC 2,https://www.iso.org/contents/data/committee/60/86/6086580/x/catalogue/ -ISO/AWI 22163,https://www.iso.org/standard/74035.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 269,https://www.iso.org/contents/data/committee/66/16/661629/x/catalogue/ -ISO/TS 22163:2017,https://www.iso.org/standard/72712.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 269,https://www.iso.org/contents/data/committee/66/16/661629/x/catalogue/ -ISO 1005-1:1994,https://www.iso.org/standard/1201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-2:1986,https://www.iso.org/standard/5460.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-3:1982,https://www.iso.org/standard/5461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-4:1986,https://www.iso.org/standard/5463.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-6:1994,https://www.iso.org/standard/5466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-7:1982,https://www.iso.org/standard/5467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-8:1986,https://www.iso.org/standard/5468.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-9:1986,https://www.iso.org/standard/5469.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 5948:1994,https://www.iso.org/standard/1165.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO/DIS 5948,https://www.iso.org/standard/68532.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 6933:1986,https://www.iso.org/standard/13452.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 10326-2:2001,https://www.iso.org/standard/33066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 19659-1:2017,https://www.iso.org/standard/65762.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 269/SC 2,https://www.iso.org/contents/data/committee/60/86/6086580/x/catalogue/ -ISO/DIS 21106,https://www.iso.org/standard/69920.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 269/SC 2,https://www.iso.org/contents/data/committee/60/86/6086580/x/catalogue/ -ISO 5003:2016,https://www.iso.org/standard/57132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 6305-2:2007,https://www.iso.org/standard/41975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 6305-3:1983,https://www.iso.org/standard/12592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 6305-4:1985,https://www.iso.org/standard/12593.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 12856-1:2014,https://www.iso.org/standard/52034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 269/SC 1,https://www.iso.org/contents/data/committee/60/86/6086504/x/catalogue/ -ISO 14837-1:2005,https://www.iso.org/standard/31447.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TS 14837-31:2017,https://www.iso.org/standard/62186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TS 14837-32:2015,https://www.iso.org/standard/62187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 128-25:1999,https://www.iso.org/standard/29096.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 1964:1987,https://www.iso.org/standard/6692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 2923:1996,https://www.iso.org/standard/1098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 2923:1996/Cor 1:1997,https://www.iso.org/standard/29224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5572:1987,https://www.iso.org/standard/11640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 7462:1985,https://www.iso.org/standard/14197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 10055:1996,https://www.iso.org/standard/18020.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TR 14564:1995,https://www.iso.org/standard/24796.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 15016:2015,https://www.iso.org/standard/61902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 15583:2005,https://www.iso.org/standard/36696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 16437:2012,https://www.iso.org/standard/56746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 16548:2012,https://www.iso.org/standard/57078.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 16706:2016,https://www.iso.org/standard/57468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 16707:2016,https://www.iso.org/standard/61460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 17338:2009,https://www.iso.org/standard/50231.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 17631:2002,https://www.iso.org/standard/30775.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 17631:2002/Amd 1:2010,https://www.iso.org/standard/44458.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 17631:2002/Cor 1:2002,https://www.iso.org/standard/37228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/AWI 17631,https://www.iso.org/standard/73477.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 17907:2014,https://www.iso.org/standard/60956.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 18215:2015,https://www.iso.org/standard/61775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 19018:2004,https://www.iso.org/standard/33730.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/NP 19018,https://www.iso.org/standard/65692.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 19019:2005,https://www.iso.org/standard/33732.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 19891-1:2017,https://www.iso.org/standard/71641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/DIS 19897,https://www.iso.org/standard/66526.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/CD 19898,https://www.iso.org/standard/66527.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 20154:2017,https://www.iso.org/standard/67164.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 20155:2017,https://www.iso.org/standard/67165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 20283-2:2008,https://www.iso.org/standard/37398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20283-3:2006,https://www.iso.org/standard/37399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20283-3:2006/Amd 1:2016,https://www.iso.org/standard/68126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20283-4:2012,https://www.iso.org/standard/38978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 20283-4:2012/Amd 1:2014,https://www.iso.org/standard/62123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/PAS 21195:2018,https://www.iso.org/standard/70067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 21984,https://www.iso.org/standard/72304.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO/DIS 23048,https://www.iso.org/standard/74395.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 24408:2005,https://www.iso.org/standard/40732.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 24409-1:2010,https://www.iso.org/standard/50240.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/NP 24409-1,https://www.iso.org/standard/69088.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 24409-2:2014,https://www.iso.org/standard/50247.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/PRF 24409-2,https://www.iso.org/standard/73963.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 24409-3:2014,https://www.iso.org/standard/50248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 27991:2008,https://www.iso.org/standard/44450.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 29404:2015,https://www.iso.org/standard/60909.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 30000:2009,https://www.iso.org/standard/51244.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 30002:2012,https://www.iso.org/standard/61204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 30003:2009,https://www.iso.org/standard/52000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 30004:2012,https://www.iso.org/standard/59495.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 30005:2012,https://www.iso.org/standard/55907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 30006:2010,https://www.iso.org/standard/45676.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO/NP 30006,https://www.iso.org/standard/68104.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 30007:2010,https://www.iso.org/standard/45677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 657-18:1980,https://www.iso.org/standard/4808.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 7824:1986,https://www.iso.org/standard/14746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 9083:2001,https://www.iso.org/standard/16669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 60/SC 2,https://www.iso.org/contents/data/committee/04/92/49242/x/catalogue/ -ISO 17941:2015,https://www.iso.org/standard/61074.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 21005:2018,https://www.iso.org/standard/69966.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO/DIS 21635,https://www.iso.org/standard/71299.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 614:2012,https://www.iso.org/standard/54514.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 1751:2012,https://www.iso.org/standard/54515.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 3434:2012,https://www.iso.org/standard/54517.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 3796:1999,https://www.iso.org/standard/26572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 3902:1990,https://www.iso.org/standard/9517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 3903:2012,https://www.iso.org/standard/54518.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 3904:1990,https://www.iso.org/standard/9521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 5480:1979,https://www.iso.org/standard/11522.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO/AWI 5480,https://www.iso.org/standard/74627.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 5778:1998,https://www.iso.org/standard/23725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 5779:1987,https://www.iso.org/standard/11915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 5780:1987,https://www.iso.org/standard/11916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 5797:2004,https://www.iso.org/standard/36422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 5894:1999,https://www.iso.org/standard/26573.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO/DIS 5894,https://www.iso.org/standard/72095.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 6042:2015,https://www.iso.org/standard/63771.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 6050:1987,https://www.iso.org/standard/12242.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 6345:1990,https://www.iso.org/standard/12646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 6812:1983,https://www.iso.org/standard/13320.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 7461:1984,https://www.iso.org/standard/14196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 8468:2007,https://www.iso.org/standard/43040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 9203-1:1989,https://www.iso.org/standard/16829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 9203-2:1989,https://www.iso.org/standard/16830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 9203-3:1989,https://www.iso.org/standard/16831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 15401:2000,https://www.iso.org/standard/27540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 15402:2000,https://www.iso.org/standard/27541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 17683:2014,https://www.iso.org/standard/60261.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 17939:2015,https://www.iso.org/standard/63770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 17940:2015,https://www.iso.org/standard/61073.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 17941:2015,https://www.iso.org/standard/61074.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 20313:2018,https://www.iso.org/standard/67645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 484-1:2015,https://www.iso.org/standard/68083.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 484-2:2015,https://www.iso.org/standard/68084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 3715-1:2002,https://www.iso.org/standard/28765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/DIS 3715-1,https://www.iso.org/standard/73950.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 3715-2:2001,https://www.iso.org/standard/28764.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 13613:2011,https://www.iso.org/standard/54090.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 18770:2005,https://www.iso.org/standard/33633.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 18854:2015,https://www.iso.org/standard/63594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 20233-1,https://www.iso.org/standard/71998.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 5483:2003,https://www.iso.org/standard/36755.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 5620-1:1992,https://www.iso.org/standard/11694.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 5620-2:1992,https://www.iso.org/standard/11695.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 5621:1984,https://www.iso.org/standard/11696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 5625:1978,https://www.iso.org/standard/11698.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 6454:1984,https://www.iso.org/standard/12810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 8277:2013,https://www.iso.org/standard/60118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 14726:2008,https://www.iso.org/standard/44744.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15364:2016,https://www.iso.org/standard/62241.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/NP 15364,https://www.iso.org/standard/74708.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15540:2016,https://www.iso.org/standard/67285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15541:2016,https://www.iso.org/standard/67286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15748-1:2002,https://www.iso.org/standard/28859.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15748-2:2002,https://www.iso.org/standard/28860.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15749-1:2004,https://www.iso.org/standard/28861.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15749-2:2004,https://www.iso.org/standard/28862.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15749-3:2004,https://www.iso.org/standard/28863.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15749-4:2004,https://www.iso.org/standard/28864.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15749-5:2004,https://www.iso.org/standard/28865.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15837:2004,https://www.iso.org/standard/28662.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15838:2003,https://www.iso.org/standard/29193.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15840:2004,https://www.iso.org/standard/28661.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 17602:2014,https://www.iso.org/standard/60117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 18139:2017,https://www.iso.org/standard/61591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 18154:2017,https://www.iso.org/standard/61632.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/DIS 19037,https://www.iso.org/standard/68500.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 19921:2005,https://www.iso.org/standard/33991.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 19922:2005,https://www.iso.org/standard/33992.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/DIS 20602,https://www.iso.org/standard/68501.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/DIS 21157,https://www.iso.org/standard/69991.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/DIS 21159,https://www.iso.org/standard/69992.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/CD 21562,https://www.iso.org/standard/71087.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 3078:2016,https://www.iso.org/standard/65511.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 6043:1985,https://www.iso.org/standard/12237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 6044:1985,https://www.iso.org/standard/12238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 6045:1987,https://www.iso.org/standard/12239.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 8146:1985,https://www.iso.org/standard/15230.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 8147:1995,https://www.iso.org/standard/15231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 8148:1985,https://www.iso.org/standard/15232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 8314:1987,https://www.iso.org/standard/15437.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 8383:1985,https://www.iso.org/standard/15548.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 8431:1988,https://www.iso.org/standard/15612.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16855:2013,https://www.iso.org/standard/57818.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16856:2013,https://www.iso.org/standard/57819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16857:2013,https://www.iso.org/standard/57820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16858:2013,https://www.iso.org/standard/57821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 19354:2016,https://www.iso.org/standard/64691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 19355:2016,https://www.iso.org/standard/64692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 19356:2016,https://www.iso.org/standard/64693.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 19357:2016,https://www.iso.org/standard/64694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/DIS 19359.2,https://www.iso.org/standard/64695.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 19360:2016,https://www.iso.org/standard/64696.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/DIS 21125,https://www.iso.org/standard/69953.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/DIS 21131,https://www.iso.org/standard/69958.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/DIS 21132,https://www.iso.org/standard/69959.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 799:2004,https://www.iso.org/standard/28374.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/DIS 799-1,https://www.iso.org/standard/68808.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 1704:2008,https://www.iso.org/standard/37151.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 3730:2012,https://www.iso.org/standard/54581.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 3797:1976,https://www.iso.org/standard/9330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 3828:2008,https://www.iso.org/standard/37152.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 5488:2015,https://www.iso.org/standard/61452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 5489:2008,https://www.iso.org/standard/50230.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 6115:1988,https://www.iso.org/standard/12331.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 6325:1987,https://www.iso.org/standard/12616.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 6482:2017,https://www.iso.org/standard/67862.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 6555:1988,https://www.iso.org/standard/12954.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 7364:2016,https://www.iso.org/standard/61449.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 7365:2012,https://www.iso.org/standard/54580.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 7825:2017,https://www.iso.org/standard/67861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 9089:1989,https://www.iso.org/standard/16677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/DIS 9089,https://www.iso.org/standard/71444.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 9519:1990,https://www.iso.org/standard/17252.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 13122:2011,https://www.iso.org/standard/52979.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13713:2012,https://www.iso.org/standard/54288.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13713,https://www.iso.org/standard/74614.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13728:2012,https://www.iso.org/standard/54289.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13728,https://www.iso.org/standard/74611.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13729:2012,https://www.iso.org/standard/54290.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13729,https://www.iso.org/standard/74615.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13733:2012,https://www.iso.org/standard/54291.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13733,https://www.iso.org/standard/74613.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13742:2012,https://www.iso.org/standard/54292.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13742,https://www.iso.org/standard/74616.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13755:2012,https://www.iso.org/standard/54293.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13755,https://www.iso.org/standard/74609.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13767:2012,https://www.iso.org/standard/54294.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13767,https://www.iso.org/standard/74610.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13776:2012,https://www.iso.org/standard/54295.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13776,https://www.iso.org/standard/74612.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13795:2012,https://www.iso.org/standard/54296.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13795,https://www.iso.org/standard/74618.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13797:2012,https://www.iso.org/standard/54297.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13797,https://www.iso.org/standard/74617.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13798:2012,https://www.iso.org/standard/54298.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13798,https://www.iso.org/standard/74619.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 13799:2012,https://www.iso.org/standard/54299.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13799,https://www.iso.org/standard/74621.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 15516:2006,https://www.iso.org/standard/43845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16855:2013,https://www.iso.org/standard/57818.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16856:2013,https://www.iso.org/standard/57819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16857:2013,https://www.iso.org/standard/57820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16858:2013,https://www.iso.org/standard/57821.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 17899:2004,https://www.iso.org/standard/31625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 17905:2015,https://www.iso.org/standard/60954.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 18289:2014,https://www.iso.org/standard/61998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 18296:2014,https://www.iso.org/standard/62031.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/CD 19470,https://www.iso.org/standard/65023.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO/DIS 21130,https://www.iso.org/standard/69955.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 22673:2008,https://www.iso.org/standard/41042.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 29400:2015,https://www.iso.org/standard/60906.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO/AWI 29400,https://www.iso.org/standard/71100.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -IEC/IEEE DIS 80005-1,https://www.iso.org/standard/64717.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO/IEC/IEEE 80005-1:2012,https://www.iso.org/standard/53588.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -IEC/IEEE 80005-2:2016,https://www.iso.org/standard/59133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -IEC/IEEE DIS 80005-3,https://www.iso.org/standard/72114.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -IEC/PAS 80005-3:2014,https://www.iso.org/standard/64718.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 1069:1973,https://www.iso.org/standard/5562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 2412:1982,https://www.iso.org/standard/7314.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 7255:1985,https://www.iso.org/standard/13909.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO 8728:2014,https://www.iso.org/standard/62176.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 8729-1:2010,https://www.iso.org/standard/51331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 8729-2:2009,https://www.iso.org/standard/51332.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 9875:2000,https://www.iso.org/standard/30977.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 9875:2000/Cor 1:2006,https://www.iso.org/standard/43877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 9875,https://www.iso.org/standard/74751.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 9876:2015,https://www.iso.org/standard/66059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 10596:2009,https://www.iso.org/standard/46020.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 11606:2000,https://www.iso.org/standard/30555.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 11606:2000/Cor 1:2005,https://www.iso.org/standard/41654.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 11606,https://www.iso.org/standard/74752.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 11674:2006,https://www.iso.org/standard/44047.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/NP 11674,https://www.iso.org/standard/68748.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 13643-1:2017,https://www.iso.org/standard/71481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 13643-2:2017,https://www.iso.org/standard/71482.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 13643-3:2017,https://www.iso.org/standard/71483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 13643-4:2017,https://www.iso.org/standard/71484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 13643-5:2017,https://www.iso.org/standard/71485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 13643-6:2017,https://www.iso.org/standard/71486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 14859:2012,https://www.iso.org/standard/55195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 16273:2003,https://www.iso.org/standard/30922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/AWI 16273,https://www.iso.org/standard/68100.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 16328:2014,https://www.iso.org/standard/62177.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 16329:2003,https://www.iso.org/standard/30256.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/NP 16329,https://www.iso.org/standard/68014.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 16425:2013,https://www.iso.org/standard/56739.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 17884:2004,https://www.iso.org/standard/33268.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 19379:2003,https://www.iso.org/standard/33801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 19636,https://www.iso.org/standard/65575.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 19697:2016,https://www.iso.org/standard/68196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 19847,https://www.iso.org/standard/66405.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 19848,https://www.iso.org/standard/66406.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 20672:2007,https://www.iso.org/standard/39582.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 20672:2007/Cor 1:2008,https://www.iso.org/standard/52281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 20672,https://www.iso.org/standard/74753.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 20673:2007,https://www.iso.org/standard/39583.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 20673,https://www.iso.org/standard/74755.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 22090-1:2014,https://www.iso.org/standard/62178.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 22090-2:2014,https://www.iso.org/standard/62179.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 22090-3:2014,https://www.iso.org/standard/62180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 22554:2015,https://www.iso.org/standard/66060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 22555:2007,https://www.iso.org/standard/41016.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 22555,https://www.iso.org/standard/74756.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 25861:2007,https://www.iso.org/standard/43298.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 25862:2009,https://www.iso.org/standard/43301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO/DIS 25862,https://www.iso.org/standard/68015.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -IEC 62065:2002,https://www.iso.org/standard/34776.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 7547:2002,https://www.iso.org/standard/27017.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 7547:2002/Cor 1:2008,https://www.iso.org/standard/52280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 20283-5:2016,https://www.iso.org/standard/68125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 3434:2012,https://www.iso.org/standard/54517.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 5797:2004,https://www.iso.org/standard/36422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 7547:2002,https://www.iso.org/standard/27017.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 7547:2002/Cor 1:2008,https://www.iso.org/standard/52280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 8861:1998,https://www.iso.org/standard/25519.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 8862:1987,https://www.iso.org/standard/16353.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 8863:1987,https://www.iso.org/standard/16354.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 8864:1987,https://www.iso.org/standard/16355.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 9099:1987,https://www.iso.org/standard/16694.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 9785:2002,https://www.iso.org/standard/27018.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 9943:2009,https://www.iso.org/standard/43036.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 3500:2005,https://www.iso.org/standard/35829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 3500:2005/Amd 1:2010,https://www.iso.org/standard/51576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 11711-1:2013,https://www.iso.org/standard/57295.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO/DIS 11711-1,https://www.iso.org/standard/72334.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 13073-1:2012,https://www.iso.org/standard/52601.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 13073-2:2013,https://www.iso.org/standard/56668.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 13073-3:2016,https://www.iso.org/standard/65517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 13174:2012,https://www.iso.org/standard/53660.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 13617:2001,https://www.iso.org/standard/31725.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/DIS 13617,https://www.iso.org/standard/66932.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 14409:2011,https://www.iso.org/standard/54715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 15370:2010,https://www.iso.org/standard/44457.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/AWI 15370,https://www.iso.org/standard/71938.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 15371:2015,https://www.iso.org/standard/68559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 15734:2001,https://www.iso.org/standard/28827.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/AWI 15734,https://www.iso.org/standard/73847.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 15738:2002,https://www.iso.org/standard/28831.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/AWI 15738,https://www.iso.org/standard/68363.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 15849:2001,https://www.iso.org/standard/28737.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 15849:2001/Amd 1:2003,https://www.iso.org/standard/36886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 16145-1:2012,https://www.iso.org/standard/55730.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 16145-2:2012,https://www.iso.org/standard/55731.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 16145-3:2012,https://www.iso.org/standard/55732.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 16145-4:2013,https://www.iso.org/standard/57120.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 16145-5:2014,https://www.iso.org/standard/59925.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 16155:2006,https://www.iso.org/standard/40898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 16165:2013,https://www.iso.org/standard/59294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 17325-1:2014,https://www.iso.org/standard/59583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 17325-2:2014,https://www.iso.org/standard/59584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/DIS 17325-3,https://www.iso.org/standard/65228.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/DIS 17325-4,https://www.iso.org/standard/65229.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 17357-1:2014,https://www.iso.org/standard/59873.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 17357-2:2014,https://www.iso.org/standard/59874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 17682:2013,https://www.iso.org/standard/60260.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 17894:2005,https://www.iso.org/standard/31619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 18079-1,https://www.iso.org/standard/61307.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-2,https://www.iso.org/standard/61308.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-3,https://www.iso.org/standard/61309.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-4,https://www.iso.org/standard/61310.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-5,https://www.iso.org/standard/61311.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18309:2014,https://www.iso.org/standard/62100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 18611-1:2014,https://www.iso.org/standard/63000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 18611-2:2014,https://www.iso.org/standard/63001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 18611-3:2014,https://www.iso.org/standard/63002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 19030-1:2016,https://www.iso.org/standard/63774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 19030-2:2016,https://www.iso.org/standard/63775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 19030-3:2016,https://www.iso.org/standard/63776.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 19292:2014,https://www.iso.org/standard/59127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/DIS 19738,https://www.iso.org/standard/66198.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 19921:2005,https://www.iso.org/standard/33991.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 19922:2005,https://www.iso.org/standard/33992.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 20053:2017,https://www.iso.org/standard/66909.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 20519:2017,https://www.iso.org/standard/68227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO/DIS 20661,https://www.iso.org/standard/68773.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO/DIS 20662,https://www.iso.org/standard/68774.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO/DIS 20663,https://www.iso.org/standard/68775.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 20858:2007,https://www.iso.org/standard/46051.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO 21070:2017,https://www.iso.org/standard/66930.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 21072-1:2009,https://www.iso.org/standard/40269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 21072-2:2009,https://www.iso.org/standard/42307.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO 21072-3:2010,https://www.iso.org/standard/44983.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 2,https://www.iso.org/contents/data/committee/04/58/45816/x/catalogue/ -ISO/CD 21593,https://www.iso.org/standard/71167.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 22488:2011,https://www.iso.org/standard/50232.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/PAS 22853:2005,https://www.iso.org/standard/41172.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 23269-1:2008,https://www.iso.org/standard/50245.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 23269-2:2011,https://www.iso.org/standard/50233.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 23269-3:2011,https://www.iso.org/standard/50234.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 23269-4:2010,https://www.iso.org/standard/50235.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 28004-1:2007/Cor 1:2012,https://www.iso.org/standard/62352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 28005-1:2013,https://www.iso.org/standard/54105.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO 28005-2:2011,https://www.iso.org/standard/42144.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO/CD 28005-2,https://www.iso.org/standard/74059.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 8/SC 11,https://www.iso.org/contents/data/committee/04/59/45906/x/catalogue/ -ISO 28520:2009,https://www.iso.org/standard/44743.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 28521:2009,https://www.iso.org/standard/44745.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 28522:2009,https://www.iso.org/standard/44746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 28523:2009,https://www.iso.org/standard/44747.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 4568:2006,https://www.iso.org/standard/37153.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 7061:2015,https://www.iso.org/standard/61453.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 10303-218:2004,https://www.iso.org/standard/35602.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 11209:2012,https://www.iso.org/standard/50250.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO 11336-1:2012,https://www.iso.org/standard/50390.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO/DIS 11336-2,https://www.iso.org/standard/69709.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO/DIS 11336-3,https://www.iso.org/standard/69710.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO 11347:2012,https://www.iso.org/standard/50391.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO 13795:2012,https://www.iso.org/standard/54296.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO/NP 13795,https://www.iso.org/standard/74618.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 14884:2015,https://www.iso.org/standard/55258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO 14885:2014,https://www.iso.org/standard/55259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO 14886:2014,https://www.iso.org/standard/55260.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO 15516:2006,https://www.iso.org/standard/43845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 16556:2014,https://www.iso.org/standard/57102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 12,https://www.iso.org/contents/data/committee/53/53/535372/x/catalogue/ -ISO 17884:2004,https://www.iso.org/standard/33268.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 19019:2005,https://www.iso.org/standard/33732.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 20438:2017,https://www.iso.org/standard/68030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 22472:2016,https://www.iso.org/standard/66209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 6,https://www.iso.org/contents/data/committee/04/58/45854/x/catalogue/ -ISO 28007-1:2015,https://www.iso.org/standard/63166.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8,https://www.iso.org/contents/data/committee/04/57/45776/x/catalogue/ -ISO 3652:1975,https://www.iso.org/standard/9099.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 3674:1976,https://www.iso.org/standard/9133.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 3786:1975,https://www.iso.org/standard/9312.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 3876:1986,https://www.iso.org/standard/9475.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 3926:1980,https://www.iso.org/standard/9564.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 3935:1977,https://www.iso.org/standard/9578.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 3948:1977,https://www.iso.org/standard/9596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 3969:1979,https://www.iso.org/standard/9630.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 4050:1977,https://www.iso.org/standard/9753.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 4051:1977,https://www.iso.org/standard/9755.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 4089:1979,https://www.iso.org/standard/9820.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 4127-1:1979,https://www.iso.org/standard/9881.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 4127-2:1980,https://www.iso.org/standard/9882.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 4143:1981,https://www.iso.org/standard/9903.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 4175:1979,https://www.iso.org/standard/9946.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 5485:1986,https://www.iso.org/standard/11526.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 6216:1980,https://www.iso.org/standard/12491.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 6217:1982,https://www.iso.org/standard/12492.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 6218:2015,https://www.iso.org/standard/64592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 6764:1985,https://www.iso.org/standard/13257.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 6765:1985,https://www.iso.org/standard/13258.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 6766:1984,https://www.iso.org/standard/13259.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 7221:1984,https://www.iso.org/standard/13857.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 7222:1985,https://www.iso.org/standard/13858.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 7236:2014,https://www.iso.org/standard/65015.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 7545:1983,https://www.iso.org/standard/14329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 7606:1988,https://www.iso.org/standard/14394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 7607:1984,https://www.iso.org/standard/14395.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 7608:1985,https://www.iso.org/standard/14396.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 8303:1985,https://www.iso.org/standard/15423.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 8304:1984,https://www.iso.org/standard/15424.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 8384:2000,https://www.iso.org/standard/28262.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO/DIS 8384,https://www.iso.org/standard/70197.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 8385:1999,https://www.iso.org/standard/28242.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO/PRF 8385,https://www.iso.org/standard/70196.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 9382:1990,https://www.iso.org/standard/17074.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 9437:1986,https://www.iso.org/standard/17139.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 18421:2016,https://www.iso.org/standard/68672.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 18422:2014,https://www.iso.org/standard/62439.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 7,https://www.iso.org/contents/data/committee/04/58/45866/x/catalogue/ -ISO 4001:1977,https://www.iso.org/standard/9675.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 4566:1992,https://www.iso.org/standard/10485.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 6185-1:2001,https://www.iso.org/standard/34124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 6185-2:2001,https://www.iso.org/standard/34125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 6185-3:2014,https://www.iso.org/standard/60201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 6185-4:2011,https://www.iso.org/standard/38415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 7840:2013,https://www.iso.org/standard/59437.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 8099:2000,https://www.iso.org/standard/33458.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 8099-1,https://www.iso.org/standard/73216.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 8469:2013,https://www.iso.org/standard/59438.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 8665:2006,https://www.iso.org/standard/34511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 8666:2016,https://www.iso.org/standard/65424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 8845:1994,https://www.iso.org/standard/16322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 8845:1994/Cor 1:1995,https://www.iso.org/standard/26257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 8846:1990,https://www.iso.org/standard/16323.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 8847:2004,https://www.iso.org/standard/38439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 8848:1990,https://www.iso.org/standard/16325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 8849:2003,https://www.iso.org/standard/34174.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/NP 8849,https://www.iso.org/standard/72107.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/CD 9093,https://www.iso.org/standard/75179.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 9093-1:1994,https://www.iso.org/standard/16682.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 9093-2:2002,https://www.iso.org/standard/34494.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 9094:2015,https://www.iso.org/standard/61729.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 9097:1991,https://www.iso.org/standard/16691.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 9650-1:2005,https://www.iso.org/standard/37478.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 9650-2:2005,https://www.iso.org/standard/37479.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 9650-3:2009,https://www.iso.org/standard/45643.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 9775:1990,https://www.iso.org/standard/17637.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 10087:2006,https://www.iso.org/standard/37497.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/DIS 10087,https://www.iso.org/standard/67299.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 10088:2013,https://www.iso.org/standard/59435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 10133:2012,https://www.iso.org/standard/45867.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 10134:2003,https://www.iso.org/standard/34175.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 10239:2014,https://www.iso.org/standard/60148.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 10240:2004,https://www.iso.org/standard/33291.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 10240:2004/Amd 1:2015,https://www.iso.org/standard/64507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/AWI 10240,https://www.iso.org/standard/74205.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 10592:1994,https://www.iso.org/standard/18676.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 10862:2009,https://www.iso.org/standard/46202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 11105:1997,https://www.iso.org/standard/26651.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO/CD 11105,https://www.iso.org/standard/72109.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 11192:2005,https://www.iso.org/standard/41644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 11547:1994,https://www.iso.org/standard/19501.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 11591:2011,https://www.iso.org/standard/46211.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/DIS 11591,https://www.iso.org/standard/67210.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 11592-1:2016,https://www.iso.org/standard/67603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO/DIS 11592-2.2,https://www.iso.org/standard/67295.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 11812:2001,https://www.iso.org/standard/32251.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/DIS 11812,https://www.iso.org/standard/67204.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12133:2011,https://www.iso.org/standard/51225.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-1:2000,https://www.iso.org/standard/32511.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-2:2002,https://www.iso.org/standard/34466.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-3:2002,https://www.iso.org/standard/25270.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-4:2002,https://www.iso.org/standard/25271.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-5:2008,https://www.iso.org/standard/40210.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-5:2008/Amd 1:2014,https://www.iso.org/standard/61193.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/DIS 12215-5,https://www.iso.org/standard/69552.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-6:2008,https://www.iso.org/standard/42346.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/DIS 12215-7,https://www.iso.org/standard/73457.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-8:2009,https://www.iso.org/standard/37476.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-8:2009/Cor 1:2010,https://www.iso.org/standard/57245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12215-9:2012,https://www.iso.org/standard/55339.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12216:2002,https://www.iso.org/standard/33661.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/CD 12216,https://www.iso.org/standard/69553.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12217-1:2015,https://www.iso.org/standard/68140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12217-2:2015,https://www.iso.org/standard/68141.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12217-3:2015,https://www.iso.org/standard/68142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 12401:2009,https://www.iso.org/standard/46213.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 1,https://www.iso.org/contents/data/committee/61/53/615333/x/catalogue/ -ISO 13297:2014,https://www.iso.org/standard/66210.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/CD 13297,https://www.iso.org/standard/69551.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 13342:1995,https://www.iso.org/standard/21744.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 13363:2016,https://www.iso.org/standard/63963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13590:2003,https://www.iso.org/standard/35253.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 13591:1997,https://www.iso.org/standard/21701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 13592:1998,https://www.iso.org/standard/21688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 13929:2001,https://www.iso.org/standard/23347.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 14227:2001,https://www.iso.org/standard/35359.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 14509-1:2008,https://www.iso.org/standard/39532.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 14509-3:2009,https://www.iso.org/standard/44710.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 14895:2016,https://www.iso.org/standard/61102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 14945:2004,https://www.iso.org/standard/25641.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/CD 14945,https://www.iso.org/standard/69555.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 14946:2001,https://www.iso.org/standard/25642.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/CD 14946,https://www.iso.org/standard/71063.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 15083:2003,https://www.iso.org/standard/26406.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO/CD 15083,https://www.iso.org/standard/72972.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 15084:2003,https://www.iso.org/standard/26407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 15085:2003,https://www.iso.org/standard/26408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 15085:2003/Amd 1:2009,https://www.iso.org/standard/43905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 15085:2003/Amd 2:2017,https://www.iso.org/standard/69543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 15372:2000,https://www.iso.org/standard/27030.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 15584:2001,https://www.iso.org/standard/28272.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 15652:2003,https://www.iso.org/standard/28595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 15734:2001,https://www.iso.org/standard/28827.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/AWI 15734,https://www.iso.org/standard/73847.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 15736:2006,https://www.iso.org/standard/41360.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 16147:2002,https://www.iso.org/standard/30878.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 16147:2002/Amd 1:2013,https://www.iso.org/standard/61253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO/FDIS 16147,https://www.iso.org/standard/70391.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 16180:2013,https://www.iso.org/standard/57088.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 16315:2016,https://www.iso.org/standard/56158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 17339:2002,https://www.iso.org/standard/31346.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO/DIS 17339,https://www.iso.org/standard/68364.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-1,https://www.iso.org/standard/61307.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-2,https://www.iso.org/standard/61308.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-4,https://www.iso.org/standard/61310.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18079-5,https://www.iso.org/standard/61311.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18813:2006,https://www.iso.org/standard/38886.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 8/SC 1,https://www.iso.org/contents/data/committee/04/58/45800/x/catalogue/ -ISO 18854:2015,https://www.iso.org/standard/63594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 19009:2015,https://www.iso.org/standard/63709.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188,https://www.iso.org/contents/data/committee/05/42/54258/x/catalogue/ -ISO 21487:2012,https://www.iso.org/standard/57087.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 21487:2012/Amd 1:2014,https://www.iso.org/standard/64508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 21487:2012/Amd 2:2015,https://www.iso.org/standard/67404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 25197:2012,https://www.iso.org/standard/42796.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 25197:2012/Amd 1:2014,https://www.iso.org/standard/64509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO/CD 25197,https://www.iso.org/standard/71354.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 188/SC 2,https://www.iso.org/contents/data/committee/53/98/5398578/x/catalogue/ -ISO 1151-1:1988,https://www.iso.org/standard/5699.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-1,https://www.iso.org/standard/68994.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-2:1985,https://www.iso.org/standard/5703.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-2:1985/Add 1:1987,https://www.iso.org/standard/5704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-2,https://www.iso.org/standard/68995.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-3:1989,https://www.iso.org/standard/5707.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-3:1989/Cor 1:1996,https://www.iso.org/standard/26420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-3,https://www.iso.org/standard/68996.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-4:1994,https://www.iso.org/standard/5709.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-5:1987,https://www.iso.org/standard/5712.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-5,https://www.iso.org/standard/68997.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-6:1982,https://www.iso.org/standard/5713.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-6:1982/Amd 1:1984,https://www.iso.org/standard/5714.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-6,https://www.iso.org/standard/68998.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-7:1985,https://www.iso.org/standard/5715.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-7,https://www.iso.org/standard/69000.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-8:1992,https://www.iso.org/standard/5716.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-8,https://www.iso.org/standard/69001.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-9:1993,https://www.iso.org/standard/5717.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 1151-9:1993/Amd 1:1998,https://www.iso.org/standard/5718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 1151-9,https://www.iso.org/standard/69002.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/DTR 1151-13,https://www.iso.org/standard/72698.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/DTR 1151-14,https://www.iso.org/standard/72699.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 2533:1975,https://www.iso.org/standard/7472.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2533:1975/Add 1:1985,https://www.iso.org/standard/7473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2533:1975/Add 2:1997,https://www.iso.org/standard/7474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 2669:1995,https://www.iso.org/standard/7641.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 2671:1982,https://www.iso.org/standard/7642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 2685:1998,https://www.iso.org/standard/23569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 5129:2001,https://www.iso.org/standard/32344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5129:2001/Amd 1:2013,https://www.iso.org/standard/62648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 5843-4:1990,https://www.iso.org/standard/12030.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-4,https://www.iso.org/standard/69008.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-5:1990,https://www.iso.org/standard/12031.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-5,https://www.iso.org/standard/69010.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-6:1985,https://www.iso.org/standard/12032.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-6,https://www.iso.org/standard/69011.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-8:1988,https://www.iso.org/standard/12034.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-8,https://www.iso.org/standard/69012.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5843-9:1988,https://www.iso.org/standard/12035.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-9,https://www.iso.org/standard/69014.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5878:1982,https://www.iso.org/standard/12077.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 5878:1982/Add 1:1983,https://www.iso.org/standard/12078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 5878:1982/Add 2:1983,https://www.iso.org/standard/12079.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 5878:1982/Amd 1:1990,https://www.iso.org/standard/12081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 7137:1995,https://www.iso.org/standard/22551.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9662:1994,https://www.iso.org/standard/17508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 6,https://www.iso.org/contents/data/committee/04/65/46560/x/catalogue/ -ISO 16192:2017,https://www.iso.org/standard/70635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 20785-1:2012,https://www.iso.org/standard/55485.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 20785-2:2011,https://www.iso.org/standard/44177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 20785-3:2015,https://www.iso.org/standard/57348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/DIS 20785-4,https://www.iso.org/standard/66895.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO/CD 21384-1,https://www.iso.org/standard/70835.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 20/SC 16,https://www.iso.org/contents/data/committee/53/36/5336224/x/catalogue/ -ISO 21849:2006,https://www.iso.org/standard/38162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14624-1:2003,https://www.iso.org/standard/28953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-2:2003,https://www.iso.org/standard/28954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-3:2005,https://www.iso.org/standard/28955.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-4:2003,https://www.iso.org/standard/28956.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 14624-4,https://www.iso.org/standard/71598.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-5:2006,https://www.iso.org/standard/37194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-6:2006,https://www.iso.org/standard/37195.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-7:2006,https://www.iso.org/standard/37196.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16691:2014,https://www.iso.org/standard/57440.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/TS 16697:2012,https://www.iso.org/standard/57450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 8591-1:1989,https://www.iso.org/standard/15882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 3161:1999,https://www.iso.org/standard/30510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3353-1:2002,https://www.iso.org/standard/31057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3353-2:2002,https://www.iso.org/standard/31058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 5855-1:1999,https://www.iso.org/standard/30337.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 5855-2:1999,https://www.iso.org/standard/30338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 5855-3:1999,https://www.iso.org/standard/30339.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 10959:2016,https://www.iso.org/standard/66320.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 15872:2017,https://www.iso.org/standard/66312.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3185:2008,https://www.iso.org/standard/41823.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3186:2008,https://www.iso.org/standard/41822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3193:2008,https://www.iso.org/standard/41821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3202:1997,https://www.iso.org/standard/22609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3203:1993,https://www.iso.org/standard/8402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 4095:1998,https://www.iso.org/standard/9833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 5843-3:1997,https://www.iso.org/standard/12028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-3,https://www.iso.org/standard/69007.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5856:2008,https://www.iso.org/standard/41820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 5857:2008,https://www.iso.org/standard/41819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 7403:1998,https://www.iso.org/standard/27754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 7689:2008,https://www.iso.org/standard/41818.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 7913:1994,https://www.iso.org/standard/14875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 7961:1994,https://www.iso.org/standard/14938.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO/NP 7961,https://www.iso.org/standard/74757.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 8168:2016,https://www.iso.org/standard/66313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9152:1998,https://www.iso.org/standard/16749.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9154:2016,https://www.iso.org/standard/68579.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9219:2002,https://www.iso.org/standard/16847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9254:1993,https://www.iso.org/standard/16904.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9255:2008,https://www.iso.org/standard/41815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9256:1993,https://www.iso.org/standard/16906.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12256:2002,https://www.iso.org/standard/33395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12256:2002/Cor 1:2009,https://www.iso.org/standard/55355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12257:2008,https://www.iso.org/standard/40391.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12260:2016,https://www.iso.org/standard/66321.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12261:2016,https://www.iso.org/standard/66322.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 13921:2008,https://www.iso.org/standard/41824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 14275:2002,https://www.iso.org/standard/36526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 14276:2002,https://www.iso.org/standard/36527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 14277:2002,https://www.iso.org/standard/36528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 14278:2002,https://www.iso.org/standard/36529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 14279:2002,https://www.iso.org/standard/36530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 14280:2002,https://www.iso.org/standard/36531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 14281:2002,https://www.iso.org/standard/36532.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 16130:2015,https://www.iso.org/standard/55728.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3168:1998,https://www.iso.org/standard/27430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3191:1998,https://www.iso.org/standard/8386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3209:2016,https://www.iso.org/standard/66316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3221:1998,https://www.iso.org/standard/27433.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3222:1998,https://www.iso.org/standard/27434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3223:1998,https://www.iso.org/standard/27435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3224:1998,https://www.iso.org/standard/27505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 3225:1998,https://www.iso.org/standard/27506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 4147:1997,https://www.iso.org/standard/9909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 5843-3:1997,https://www.iso.org/standard/12028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-3,https://www.iso.org/standard/69007.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5858:1999,https://www.iso.org/standard/29281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 7332:1998,https://www.iso.org/standard/14010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 7481:2000,https://www.iso.org/standard/14223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 7995:2002,https://www.iso.org/standard/31736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 8279:2008,https://www.iso.org/standard/41816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 8538:1999,https://www.iso.org/standard/27431.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 8641:2008,https://www.iso.org/standard/38543.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 8642:2008,https://www.iso.org/standard/38545.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 8788:2000,https://www.iso.org/standard/21423.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 8940:2002,https://www.iso.org/standard/31734.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9139:1998,https://www.iso.org/standard/16735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9140:1998,https://www.iso.org/standard/16736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9156:1998,https://www.iso.org/standard/27436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9157:2002,https://www.iso.org/standard/31733.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9199:1998,https://www.iso.org/standard/21421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9216:2002,https://www.iso.org/standard/16844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9609:2016,https://www.iso.org/standard/66318.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9618:2016,https://www.iso.org/standard/66319.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 10096:1997,https://www.iso.org/standard/18070.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12258:1998,https://www.iso.org/standard/2008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12268:1997,https://www.iso.org/standard/1297.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12272:1998,https://www.iso.org/standard/1873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12273:2010,https://www.iso.org/standard/55763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12274:1997,https://www.iso.org/standard/1378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12277:2000,https://www.iso.org/standard/30886.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12278:1999,https://www.iso.org/standard/30587.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 13589:1998,https://www.iso.org/standard/22347.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 245:1998,https://www.iso.org/standard/27751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9217:2002,https://www.iso.org/standard/16845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9218:2002,https://www.iso.org/standard/16846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 3230:1998,https://www.iso.org/standard/8439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 5843-2:1990,https://www.iso.org/standard/12026.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-2,https://www.iso.org/standard/69006.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5845-2:1995,https://www.iso.org/standard/12040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10/SC 6,https://www.iso.org/contents/data/committee/04/60/46064/x/catalogue/ -ISO 8280:1993,https://www.iso.org/standard/15396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 9418:1998,https://www.iso.org/standard/17119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 10299:2000,https://www.iso.org/standard/18344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO/TR 12198:1998,https://www.iso.org/standard/21176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12281:1999,https://www.iso.org/standard/2062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12288:2000,https://www.iso.org/standard/31054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12289:2016,https://www.iso.org/standard/66323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12290:2000,https://www.iso.org/standard/1810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 17057:1999,https://www.iso.org/standard/30540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 244:1979,https://www.iso.org/standard/4134.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 12280:1999,https://www.iso.org/standard/30588.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 12319:2006,https://www.iso.org/standard/37827.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 13595:2000,https://www.iso.org/standard/22361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 13596:2000,https://www.iso.org/standard/22362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 13597:2000,https://www.iso.org/standard/22363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 13598:2000,https://www.iso.org/standard/22364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 13599:2000,https://www.iso.org/standard/22365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 4,https://www.iso.org/contents/data/committee/04/65/46538/x/catalogue/ -ISO 413:1974,https://www.iso.org/standard/4420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 1002:1983,https://www.iso.org/standard/5452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 1971:1975,https://www.iso.org/standard/6701.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 2020-1:1997,https://www.iso.org/standard/6787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 2020-2:1997,https://www.iso.org/standard/6788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 7938:1986,https://www.iso.org/standard/14909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 7939:1988,https://www.iso.org/standard/14910.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 8399-1:1998,https://www.iso.org/standard/15566.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 8399-2:1998,https://www.iso.org/standard/15567.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9736:2000,https://www.iso.org/standard/17595.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9737:2000,https://www.iso.org/standard/17596.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9738:2000,https://www.iso.org/standard/17597.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9747:2000,https://www.iso.org/standard/17606.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9748:2000,https://www.iso.org/standard/17607.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9749:2000,https://www.iso.org/standard/17608.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9757:2000,https://www.iso.org/standard/17616.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9758:2000,https://www.iso.org/standard/17617.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9759:2000,https://www.iso.org/standard/17618.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9760:2000,https://www.iso.org/standard/17619.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9761:2000,https://www.iso.org/standard/17620.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9762:2000,https://www.iso.org/standard/17621.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 9763:1999,https://www.iso.org/standard/17622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 10792-1:1995,https://www.iso.org/standard/18862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 10792-2:1995,https://www.iso.org/standard/20522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 10792-3:1995,https://www.iso.org/standard/18863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 10955:1999,https://www.iso.org/standard/18929.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 13411:1997,https://www.iso.org/standard/21940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 13412:1997,https://www.iso.org/standard/21941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 13413:1997,https://www.iso.org/standard/21942.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 13414:1997,https://www.iso.org/standard/21943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 13415:1997,https://www.iso.org/standard/21944.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 13416:1997,https://www.iso.org/standard/21945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 13417:1997,https://www.iso.org/standard/21946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14190:1998,https://www.iso.org/standard/23876.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14191:1998,https://www.iso.org/standard/23877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14192:1998,https://www.iso.org/standard/23878.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14193:1998,https://www.iso.org/standard/23879.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14194:1998,https://www.iso.org/standard/23880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14195:1998,https://www.iso.org/standard/23881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14196:1998,https://www.iso.org/standard/23882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14197:1998,https://www.iso.org/standard/23883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14201:1998,https://www.iso.org/standard/23884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14202:1998,https://www.iso.org/standard/23885.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14203:1998,https://www.iso.org/standard/23886.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14204:1998,https://www.iso.org/standard/23887.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14206:1998,https://www.iso.org/standard/23889.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14207:1998,https://www.iso.org/standard/23890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14208:1998,https://www.iso.org/standard/23891.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14209:1998,https://www.iso.org/standard/23892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14210:1998,https://www.iso.org/standard/23893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14211:1998,https://www.iso.org/standard/23894.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14212:1998,https://www.iso.org/standard/23895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14213:1998,https://www.iso.org/standard/23896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14214:1998,https://www.iso.org/standard/23897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14215:1998,https://www.iso.org/standard/23898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14216:1998,https://www.iso.org/standard/23899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14217:1998,https://www.iso.org/standard/23900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14218:1998,https://www.iso.org/standard/23901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14219:1998,https://www.iso.org/standard/23902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14220:1998,https://www.iso.org/standard/23903.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 14221:1998,https://www.iso.org/standard/23904.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 8074:1985,https://www.iso.org/standard/15107.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 18,https://www.iso.org/contents/data/committee/62/07/6207117/x/catalogue/ -ISO 8075:1985,https://www.iso.org/standard/15108.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 18,https://www.iso.org/contents/data/committee/62/07/6207117/x/catalogue/ -ISO 8078:1984,https://www.iso.org/standard/15111.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 18,https://www.iso.org/contents/data/committee/62/07/6207117/x/catalogue/ -ISO 8079:1984,https://www.iso.org/standard/15112.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 18,https://www.iso.org/contents/data/committee/62/07/6207117/x/catalogue/ -ISO 8080:1985,https://www.iso.org/standard/15113.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 18,https://www.iso.org/contents/data/committee/62/07/6207117/x/catalogue/ -ISO 8081:1985,https://www.iso.org/standard/15114.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 18,https://www.iso.org/contents/data/committee/62/07/6207117/x/catalogue/ -ISO 5843-10:1988,https://www.iso.org/standard/12036.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-10,https://www.iso.org/standard/69015.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 10046:1996,https://www.iso.org/standard/18011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 45:1990,https://www.iso.org/standard/3678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 482:1977,https://www.iso.org/standard/4523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 4153:1981,https://www.iso.org/standard/9918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 44:1975,https://www.iso.org/standard/3676.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 461-1:2003,https://www.iso.org/standard/33310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 461-2:1985,https://www.iso.org/standard/4488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 493:1975,https://www.iso.org/standard/4544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 530:1975,https://www.iso.org/standard/4601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1033:1975,https://www.iso.org/standard/5505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1198:1972,https://www.iso.org/standard/5790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1466:1973,https://www.iso.org/standard/6063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1467:1973,https://www.iso.org/standard/6064.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1509:1973,https://www.iso.org/standard/6097.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1540:2006,https://www.iso.org/standard/42067.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1547:1975,https://www.iso.org/standard/6135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1548:1976,https://www.iso.org/standard/6136.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1549:1976,https://www.iso.org/standard/6137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1949:1987,https://www.iso.org/standard/6675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1965:1973,https://www.iso.org/standard/6693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1966:1973,https://www.iso.org/standard/6694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 1967:1974,https://www.iso.org/standard/6695.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2032:1973,https://www.iso.org/standard/6805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2042:1973,https://www.iso.org/standard/6819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2100:1987,https://www.iso.org/standard/6889.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-100,https://www.iso.org/standard/71718.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-101,https://www.iso.org/standard/71719.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-102,https://www.iso.org/standard/71720.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-201,https://www.iso.org/standard/71721.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-202,https://www.iso.org/standard/71722.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-203,https://www.iso.org/standard/71723.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-204,https://www.iso.org/standard/71724.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-205,https://www.iso.org/standard/71725.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-206,https://www.iso.org/standard/71726.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-207,https://www.iso.org/standard/71727.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-208,https://www.iso.org/standard/71728.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-209,https://www.iso.org/standard/71729.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-211,https://www.iso.org/standard/71730.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-212,https://www.iso.org/standard/71731.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-213,https://www.iso.org/standard/71732.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-216,https://www.iso.org/standard/71733.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-217,https://www.iso.org/standard/71734.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-218,https://www.iso.org/standard/71735.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-219,https://www.iso.org/standard/71736.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-301,https://www.iso.org/standard/71737.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-302,https://www.iso.org/standard/71738.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-303,https://www.iso.org/standard/71739.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-305,https://www.iso.org/standard/71740.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-306,https://www.iso.org/standard/71741.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-307,https://www.iso.org/standard/71742.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-308,https://www.iso.org/standard/71743.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-309,https://www.iso.org/standard/71744.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-310,https://www.iso.org/standard/71745.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-311,https://www.iso.org/standard/71746.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-312,https://www.iso.org/standard/71747.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-313,https://www.iso.org/standard/71748.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-314,https://www.iso.org/standard/71749.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-315,https://www.iso.org/standard/71750.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-317,https://www.iso.org/standard/71751.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-318,https://www.iso.org/standard/71752.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-319,https://www.iso.org/standard/71753.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-321,https://www.iso.org/standard/71754.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-323,https://www.iso.org/standard/71755.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-325,https://www.iso.org/standard/71756.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-401,https://www.iso.org/standard/71757.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-402,https://www.iso.org/standard/71758.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-403,https://www.iso.org/standard/71759.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-404,https://www.iso.org/standard/71760.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-405,https://www.iso.org/standard/71761.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-406,https://www.iso.org/standard/71762.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-407,https://www.iso.org/standard/71763.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-408,https://www.iso.org/standard/71764.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-409,https://www.iso.org/standard/71765.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-410,https://www.iso.org/standard/71766.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-411,https://www.iso.org/standard/71767.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-412,https://www.iso.org/standard/71768.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-413,https://www.iso.org/standard/71769.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-414,https://www.iso.org/standard/71770.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-415,https://www.iso.org/standard/71771.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-416,https://www.iso.org/standard/71772.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-417,https://www.iso.org/standard/71773.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-418,https://www.iso.org/standard/71774.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-419,https://www.iso.org/standard/71775.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-420,https://www.iso.org/standard/71776.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-421,https://www.iso.org/standard/71777.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-422,https://www.iso.org/standard/71778.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-424,https://www.iso.org/standard/71779.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-425,https://www.iso.org/standard/71780.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-426,https://www.iso.org/standard/71781.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-427,https://www.iso.org/standard/71782.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-428,https://www.iso.org/standard/71783.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-501,https://www.iso.org/standard/71784.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-502,https://www.iso.org/standard/71785.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-503,https://www.iso.org/standard/71786.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-505,https://www.iso.org/standard/71787.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-506,https://www.iso.org/standard/71788.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-507,https://www.iso.org/standard/71789.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-508,https://www.iso.org/standard/71790.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-509,https://www.iso.org/standard/71791.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-512,https://www.iso.org/standard/71792.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-513,https://www.iso.org/standard/71793.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-514,https://www.iso.org/standard/71794.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-601,https://www.iso.org/standard/71795.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-602,https://www.iso.org/standard/71796.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-603,https://www.iso.org/standard/71797.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-604,https://www.iso.org/standard/71798.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-605,https://www.iso.org/standard/71799.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-606,https://www.iso.org/standard/71800.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-607,https://www.iso.org/standard/71801.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-609,https://www.iso.org/standard/71802.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-610,https://www.iso.org/standard/71803.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-611,https://www.iso.org/standard/71804.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-612,https://www.iso.org/standard/71805.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-613,https://www.iso.org/standard/71806.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-614,https://www.iso.org/standard/71807.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-615,https://www.iso.org/standard/71808.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-617,https://www.iso.org/standard/71809.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6101,https://www.iso.org/standard/71810.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6301,https://www.iso.org/standard/71811.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6303,https://www.iso.org/standard/71812.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6305,https://www.iso.org/standard/71813.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6306,https://www.iso.org/standard/71814.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6307,https://www.iso.org/standard/71815.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6314,https://www.iso.org/standard/71816.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6315,https://www.iso.org/standard/71817.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6316,https://www.iso.org/standard/71818.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6317,https://www.iso.org/standard/71819.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6318,https://www.iso.org/standard/71820.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6321,https://www.iso.org/standard/71821.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6323,https://www.iso.org/standard/71822.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6324,https://www.iso.org/standard/71823.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6401,https://www.iso.org/standard/71824.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6402,https://www.iso.org/standard/71825.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6403,https://www.iso.org/standard/71826.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6404,https://www.iso.org/standard/71827.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6405,https://www.iso.org/standard/71828.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6406,https://www.iso.org/standard/71829.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6414,https://www.iso.org/standard/71830.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 2100-6415,https://www.iso.org/standard/71831.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2155:1974,https://www.iso.org/standard/6945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2156:1974,https://www.iso.org/standard/6946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2277:1973,https://www.iso.org/standard/7098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2315:1980,https://www.iso.org/standard/7147.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2436:1973,https://www.iso.org/standard/7347.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2574:1994,https://www.iso.org/standard/7536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2635:2003,https://www.iso.org/standard/37571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2635:2003/Amd 1:2017,https://www.iso.org/standard/67525.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 2678:1985,https://www.iso.org/standard/7645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 3282:1976,https://www.iso.org/standard/8518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 3456:1975,https://www.iso.org/standard/8791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 5066-1:1986,https://www.iso.org/standard/11088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 5066-2:1986,https://www.iso.org/standard/11089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 5843-1:1985,https://www.iso.org/standard/12024.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO/NP 5843-1,https://www.iso.org/standard/69005.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 8,https://www.iso.org/contents/data/committee/04/65/46562/x/catalogue/ -ISO 5866:1983,https://www.iso.org/standard/12066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 5867-1:1996,https://www.iso.org/standard/12068.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 6858:2017,https://www.iso.org/standard/64893.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 6859-1:1982,https://www.iso.org/standard/13368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8056-1:1985,https://www.iso.org/standard/15072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8056-2:1988,https://www.iso.org/standard/15073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8056-2:1988/Amd 1:2016,https://www.iso.org/standard/67523.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8056-3:1987,https://www.iso.org/standard/15074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8056-4:1987,https://www.iso.org/standard/15075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8668-1:1986,https://www.iso.org/standard/16056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8668-2:1986,https://www.iso.org/standard/16058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8668-3:1994,https://www.iso.org/standard/16060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8668-4:1993,https://www.iso.org/standard/16061.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8668-5:1992,https://www.iso.org/standard/16062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8668-6:1994,https://www.iso.org/standard/16063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8815:1994,https://www.iso.org/standard/16265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8816:1993,https://www.iso.org/standard/16266.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8816:1993/Amd 1:2012,https://www.iso.org/standard/61953.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8843:2005,https://www.iso.org/standard/37435.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 8843:2005/Amd 1:2012,https://www.iso.org/standard/61987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 10296:1992,https://www.iso.org/standard/18341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 12384:2010,https://www.iso.org/standard/51395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 13832:2013,https://www.iso.org/standard/54330.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 20894,https://www.iso.org/standard/69397.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/DIS 20949,https://www.iso.org/standard/69527.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/TR 21891:2017,https://www.iso.org/standard/72096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO/IEC TR 22560:2017,https://www.iso.org/standard/73441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 41,https://www.iso.org/contents/data/committee/64/83/6483279/x/catalogue/ -ISO 27027:2014,https://www.iso.org/standard/61032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 11:1987,https://www.iso.org/standard/3592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 12:1987,https://www.iso.org/standard/3594.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 45:1990,https://www.iso.org/standard/3678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 102:1990,https://www.iso.org/standard/3771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 451:1976,https://www.iso.org/standard/4472.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 485:1973,https://www.iso.org/standard/4529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 1023:1974,https://www.iso.org/standard/5494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 1034:1973,https://www.iso.org/standard/5506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 1465:1989,https://www.iso.org/standard/6062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 1749:1973,https://www.iso.org/standard/6369.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 2563:2009,https://www.iso.org/standard/51007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 2964:1985,https://www.iso.org/standard/8015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 3174:1994,https://www.iso.org/standard/8361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 3323:1987,https://www.iso.org/standard/8586.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 5859:2014,https://www.iso.org/standard/61634.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 5884:1987,https://www.iso.org/standard/12084.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 5884,https://www.iso.org/standard/66046.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 5887:1981,https://www.iso.org/standard/12087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 6771:2007,https://www.iso.org/standard/43220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 6772:2012,https://www.iso.org/standard/54516.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 6773:1994,https://www.iso.org/standard/13270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7169:2014,https://www.iso.org/standard/66050.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7257:2016,https://www.iso.org/standard/60681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7258:1984,https://www.iso.org/standard/13913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7313:1984,https://www.iso.org/standard/13979.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/NP 7313,https://www.iso.org/standard/68320.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7314:2002,https://www.iso.org/standard/27050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7315:1988,https://www.iso.org/standard/13984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7319:1992,https://www.iso.org/standard/13989.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7320:1992,https://www.iso.org/standard/13991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7661:1984,https://www.iso.org/standard/14480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8153-1:2009,https://www.iso.org/standard/51623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 8153-2,https://www.iso.org/standard/72423.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8177:2015,https://www.iso.org/standard/66051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8278:2016,https://www.iso.org/standard/61656.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8479:1986,https://www.iso.org/standard/15686.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8574:2004,https://www.iso.org/standard/37543.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8575:2016,https://www.iso.org/standard/54139.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8625-1:1993,https://www.iso.org/standard/15954.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/FDIS 8625-1,https://www.iso.org/standard/68319.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8625-2:1991,https://www.iso.org/standard/15955.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/FDIS 8625-2,https://www.iso.org/standard/66047.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8625-3:1991,https://www.iso.org/standard/15956.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/FDIS 8625-3,https://www.iso.org/standard/66048.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8625-4:2011,https://www.iso.org/standard/54950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8775:1988,https://www.iso.org/standard/16190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8829-1:2009,https://www.iso.org/standard/50107.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8829-2:2006,https://www.iso.org/standard/40693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8913:2006,https://www.iso.org/standard/40696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9206:2016,https://www.iso.org/standard/61655.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 9206,https://www.iso.org/standard/73155.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9528:1994,https://www.iso.org/standard/17261.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/CD 9528,https://www.iso.org/standard/75273.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 9528,https://www.iso.org/standard/68321.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9538:2017,https://www.iso.org/standard/66049.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9634:1994,https://www.iso.org/standard/17448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9679:2006,https://www.iso.org/standard/37828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9938:1994,https://www.iso.org/standard/17833.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/CD 9938,https://www.iso.org/standard/75274.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 9938,https://www.iso.org/standard/68322.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9939:1994,https://www.iso.org/standard/17834.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9940:2015,https://www.iso.org/standard/55751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 10502:2012,https://www.iso.org/standard/51714.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 10583:1993,https://www.iso.org/standard/18667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 11218:2017,https://www.iso.org/standard/68318.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 11639:2010,https://www.iso.org/standard/50647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 12573:2010,https://www.iso.org/standard/51529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 12584:2013,https://www.iso.org/standard/51530.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 14085-1:2015,https://www.iso.org/standard/54433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 14085-2:2015,https://www.iso.org/standard/54434.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 14085-3:2015,https://www.iso.org/standard/54435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 14085-4:2015,https://www.iso.org/standard/54436.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 14085-5:2015,https://www.iso.org/standard/54437.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 14085-6:2015,https://www.iso.org/standard/54438.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 14952-1:2003,https://www.iso.org/standard/36467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-2:2003,https://www.iso.org/standard/36468.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-3:2003,https://www.iso.org/standard/36469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-4:2003,https://www.iso.org/standard/36470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-5:2003,https://www.iso.org/standard/36471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-6:2003,https://www.iso.org/standard/36472.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16031-1:2002,https://www.iso.org/standard/33504.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 16031-2:2003,https://www.iso.org/standard/33505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 17775:2006,https://www.iso.org/standard/40698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 18170:2017,https://www.iso.org/standard/61687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/CD 18387,https://www.iso.org/standard/75202.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 18387,https://www.iso.org/standard/62357.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 18487-1:2017,https://www.iso.org/standard/62584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 19631:2015,https://www.iso.org/standard/54140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 19632:2015,https://www.iso.org/standard/54141.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 22072:2011,https://www.iso.org/standard/54442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 22089:2009,https://www.iso.org/standard/50560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/PRF 22431,https://www.iso.org/standard/73189.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/PRF 22433,https://www.iso.org/standard/73190.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/PRF 22436,https://www.iso.org/standard/73191.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/PRF 22437,https://www.iso.org/standard/73192.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/PRF 22438,https://www.iso.org/standard/73193.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 23748:2016,https://www.iso.org/standard/66061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 23933:2006,https://www.iso.org/standard/40699.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 23935:2006,https://www.iso.org/standard/40700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 27996:2009,https://www.iso.org/standard/44461.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 268:1980,https://www.iso.org/standard/4176.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 5065-1:1986,https://www.iso.org/standard/11085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 5065-2:1986,https://www.iso.org/standard/11086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 6702-1:1991,https://www.iso.org/standard/13139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6702-2:1991,https://www.iso.org/standard/13140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11:1987,https://www.iso.org/standard/3592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 43:2016,https://www.iso.org/standard/65980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 45:1990,https://www.iso.org/standard/3678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 46:1973,https://www.iso.org/standard/3679.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 102:1990,https://www.iso.org/standard/3771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 413:1974,https://www.iso.org/standard/4420.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 451:1976,https://www.iso.org/standard/4472.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 461-1:2003,https://www.iso.org/standard/33310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 461-2:1985,https://www.iso.org/standard/4488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 485:1973,https://www.iso.org/standard/4529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 1021:1980,https://www.iso.org/standard/5491.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 1023:1974,https://www.iso.org/standard/5494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 1034:1973,https://www.iso.org/standard/5506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 1464,https://www.iso.org/standard/70672.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 1464:1985,https://www.iso.org/standard/6060.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 1465:1989,https://www.iso.org/standard/6062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 1825:2017,https://www.iso.org/standard/70350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 2046:1973,https://www.iso.org/standard/6824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 2434:1973,https://www.iso.org/standard/7344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 2435:1973,https://www.iso.org/standard/7345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 3174:1994,https://www.iso.org/standard/8361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 4116:1986,https://www.iso.org/standard/9864.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 4153:1981,https://www.iso.org/standard/9918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20,https://www.iso.org/contents/data/committee/04/64/46484/x/catalogue/ -ISO 6858:2017,https://www.iso.org/standard/64893.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 1,https://www.iso.org/contents/data/committee/04/65/46506/x/catalogue/ -ISO 6966-1:2005,https://www.iso.org/standard/34829.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6966-2:2014,https://www.iso.org/standard/61101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6967:2006,https://www.iso.org/standard/38085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6968:2005,https://www.iso.org/standard/38086.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 7716:1985,https://www.iso.org/standard/14545.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 7717:1985,https://www.iso.org/standard/14546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 7718-1:2016,https://www.iso.org/standard/71422.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 7718-2:2016,https://www.iso.org/standard/71423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 8267-1:2015,https://www.iso.org/standard/67931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 8267-2:2015,https://www.iso.org/standard/67932.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/FDIS 8267-2,https://www.iso.org/standard/72134.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 8775:1988,https://www.iso.org/standard/16190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9666:1993,https://www.iso.org/standard/17512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 9667:2017,https://www.iso.org/standard/71493.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 9678:1991,https://www.iso.org/standard/17533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 9939:1994,https://www.iso.org/standard/17834.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 10254:2016,https://www.iso.org/standard/54747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 10841:1996,https://www.iso.org/standard/18879.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 10842:2017,https://www.iso.org/standard/70680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11075:2007,https://www.iso.org/standard/44185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11076:2012,https://www.iso.org/standard/54925.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/DIS 11076,https://www.iso.org/standard/74304.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11077:2014,https://www.iso.org/standard/60769.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11078:2007,https://www.iso.org/standard/44186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11241:1994,https://www.iso.org/standard/19222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11532,https://www.iso.org/standard/70671.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11532:2012,https://www.iso.org/standard/40066.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11995:1996,https://www.iso.org/standard/20648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 12056:1996,https://www.iso.org/standard/20833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 12604-1:2017,https://www.iso.org/standard/66360.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 14625:2007,https://www.iso.org/standard/43581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15845:2014,https://www.iso.org/standard/60767.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 16004:2017,https://www.iso.org/standard/71421.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 17775:2006,https://www.iso.org/standard/40698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 20683-1:2016,https://www.iso.org/standard/68258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 20683-2:2016,https://www.iso.org/standard/68259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 21100:2014,https://www.iso.org/standard/62839.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/DIS 21100,https://www.iso.org/standard/70674.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/DIS 21785,https://www.iso.org/standard/71634.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 23748:2016,https://www.iso.org/standard/66061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 27470:2011,https://www.iso.org/standard/44178.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 27471:2012,https://www.iso.org/standard/44179.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 4116:1986,https://www.iso.org/standard/9864.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6702-1:1991,https://www.iso.org/standard/13139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6702-2:1991,https://www.iso.org/standard/13140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6966-1:2005,https://www.iso.org/standard/34829.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6966-2:2014,https://www.iso.org/standard/61101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6967:2006,https://www.iso.org/standard/38085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6968:2005,https://www.iso.org/standard/38086.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 7166:1985,https://www.iso.org/standard/13763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 7715:1985,https://www.iso.org/standard/14544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 7716:1985,https://www.iso.org/standard/14545.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 8268:1987,https://www.iso.org/standard/15383.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/TR 8647:1990,https://www.iso.org/standard/16010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 9031:1987,https://www.iso.org/standard/16592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 9788:2017,https://www.iso.org/standard/70675.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 10254:2016,https://www.iso.org/standard/54747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11995:1996,https://www.iso.org/standard/20648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 14186:2013,https://www.iso.org/standard/54485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 16049-1:2013,https://www.iso.org/standard/53817.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/NP 16049-1,https://www.iso.org/standard/74303.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 16049-2:2013,https://www.iso.org/standard/54922.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/DIS 16049-2,https://www.iso.org/standard/70673.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 21100:2014,https://www.iso.org/standard/62839.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/DIS 21100,https://www.iso.org/standard/70674.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/DIS 21785,https://www.iso.org/standard/71634.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 10537:2016,https://www.iso.org/standard/71058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 10784-1:2011,https://www.iso.org/standard/46095.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10784-2:2011,https://www.iso.org/standard/46096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10784-3:2011,https://www.iso.org/standard/46097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10785:2011,https://www.iso.org/standard/46098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10786:2011,https://www.iso.org/standard/46099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10788:2014,https://www.iso.org/standard/57532.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10789:2011,https://www.iso.org/standard/46101.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 10789,https://www.iso.org/standard/74115.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10794:2011,https://www.iso.org/standard/56084.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/FDIS 10794,https://www.iso.org/standard/72935.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10795:2011,https://www.iso.org/standard/46103.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 10795,https://www.iso.org/standard/72936.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 10830:2011,https://www.iso.org/standard/46181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 11104:2011,https://www.iso.org/standard/59415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 11221:2011,https://www.iso.org/standard/50296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/TR 11225:2012,https://www.iso.org/standard/57533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 11227:2012,https://www.iso.org/standard/57535.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 11227:2012/NP Amd 1,https://www.iso.org/standard/75180.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 11231:2010,https://www.iso.org/standard/50302.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 11231,https://www.iso.org/standard/71599.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/TR 11233:2014,https://www.iso.org/standard/57531.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 11892:2012,https://www.iso.org/standard/57529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 11893:2011,https://www.iso.org/standard/50977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 12175:1994,https://www.iso.org/standard/21118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 12175:1994/Amd 1:2015,https://www.iso.org/standard/68746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 12208:2015,https://www.iso.org/standard/68152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 13526:2010,https://www.iso.org/standard/53984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 13526:2010/Amd 1:2015,https://www.iso.org/standard/68745.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 13527:2010,https://www.iso.org/standard/53985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 13537:2010,https://www.iso.org/standard/53986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 13541:2010,https://www.iso.org/standard/53987.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 13541,https://www.iso.org/standard/74559.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 13764:1996,https://www.iso.org/standard/22845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 14200:2012,https://www.iso.org/standard/54506.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14222:2013,https://www.iso.org/standard/54507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14300-1:2011,https://www.iso.org/standard/45342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14300-2:2011,https://www.iso.org/standard/57534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14302:2002,https://www.iso.org/standard/24176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14303:2002,https://www.iso.org/standard/35938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14619:2003,https://www.iso.org/standard/36672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14620-1:2002,https://www.iso.org/standard/29766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/FDIS 14620-1,https://www.iso.org/standard/67837.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14620-2:2011,https://www.iso.org/standard/46182.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 14620-2,https://www.iso.org/standard/74116.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14620-3:2005,https://www.iso.org/standard/34865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14621-1:2003,https://www.iso.org/standard/29306.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/NP 14621-1,https://www.iso.org/standard/71610.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14621-2:2003,https://www.iso.org/standard/29307.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/NP 14621-2,https://www.iso.org/standard/71611.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14622:2000,https://www.iso.org/standard/24677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14623:2003,https://www.iso.org/standard/36462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-1:2003,https://www.iso.org/standard/28953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-2:2003,https://www.iso.org/standard/28954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-3:2005,https://www.iso.org/standard/28955.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-4:2003,https://www.iso.org/standard/28956.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 14624-4,https://www.iso.org/standard/71598.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-5:2006,https://www.iso.org/standard/37194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-6:2006,https://www.iso.org/standard/37195.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14624-7:2006,https://www.iso.org/standard/37196.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14625:2007,https://www.iso.org/standard/43581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14711:2003,https://www.iso.org/standard/36217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14721:2012,https://www.iso.org/standard/57284.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 14950:2004,https://www.iso.org/standard/36466.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-1:2003,https://www.iso.org/standard/36467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-2:2003,https://www.iso.org/standard/36468.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-3:2003,https://www.iso.org/standard/36469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-4:2003,https://www.iso.org/standard/36470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-5:2003,https://www.iso.org/standard/36471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14952-6:2003,https://www.iso.org/standard/36472.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14953:2000,https://www.iso.org/standard/24678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14954:2005,https://www.iso.org/standard/39758.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 14961:2002,https://www.iso.org/standard/34701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 14962:1997,https://www.iso.org/standard/26096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 15387:2005,https://www.iso.org/standard/36464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15388:2012,https://www.iso.org/standard/57326.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15389:2001,https://www.iso.org/standard/27528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15389:2001/Amd 1:2005,https://www.iso.org/standard/37210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15389:2001/Cor 1:2006,https://www.iso.org/standard/43878.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15390:2004,https://www.iso.org/standard/37095.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15395:1998,https://www.iso.org/standard/27534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 15396:2007,https://www.iso.org/standard/43828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 15856:2010,https://www.iso.org/standard/45843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-1:2004,https://www.iso.org/standard/37276.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-2:2004,https://www.iso.org/standard/37277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-3:2004,https://www.iso.org/standard/37278.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-4:2004,https://www.iso.org/standard/37279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-5:2004,https://www.iso.org/standard/37280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-6:2004,https://www.iso.org/standard/37281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-7:2004,https://www.iso.org/standard/37282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-8:2004,https://www.iso.org/standard/37283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-9:2004,https://www.iso.org/standard/37284.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-10:2004,https://www.iso.org/standard/37285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-11:2004,https://www.iso.org/standard/37286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-12:2004,https://www.iso.org/standard/37287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15859-13:2004,https://www.iso.org/standard/37288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15860:2006,https://www.iso.org/standard/29309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15862:2009,https://www.iso.org/standard/42033.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15863:2003,https://www.iso.org/standard/29312.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15864:2004,https://www.iso.org/standard/29313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15865:2005,https://www.iso.org/standard/29314.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 15887:2013,https://www.iso.org/standard/62314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 15888:2000,https://www.iso.org/standard/29441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 15889:2011,https://www.iso.org/standard/57320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 15893:2010,https://www.iso.org/standard/45986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 16091:2002,https://www.iso.org/standard/30863.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/DIS 16091,https://www.iso.org/standard/72937.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16126:2014,https://www.iso.org/standard/55720.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16127:2014,https://www.iso.org/standard/55721.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/FDIS 16157,https://www.iso.org/standard/72864.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/TR 16158:2013,https://www.iso.org/standard/55739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16159:2012,https://www.iso.org/standard/55740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16164:2015,https://www.iso.org/standard/55741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16192:2017,https://www.iso.org/standard/70635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16290:2013,https://www.iso.org/standard/56064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16363:2012,https://www.iso.org/standard/56510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 16378:2013,https://www.iso.org/standard/56558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16404:2013,https://www.iso.org/standard/56691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16454:2007,https://www.iso.org/standard/41026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16457:2014,https://www.iso.org/standard/61556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16458:2004,https://www.iso.org/standard/30989.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16679:2015,https://www.iso.org/standard/57399.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16691:2014,https://www.iso.org/standard/57440.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16694:2015,https://www.iso.org/standard/57447.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16695:2014,https://www.iso.org/standard/57448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/TS 16697:2012,https://www.iso.org/standard/57450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16698:2013,https://www.iso.org/standard/57451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16699:2015,https://www.iso.org/standard/57452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/FDIS 16726,https://www.iso.org/standard/72865.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16781:2013,https://www.iso.org/standard/57702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 16919:2014,https://www.iso.org/standard/57950.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 17107:2011,https://www.iso.org/standard/59155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 17255:2014,https://www.iso.org/standard/59484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17355:2007,https://www.iso.org/standard/43829.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 17355,https://www.iso.org/standard/70700.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/NP TR 17400,https://www.iso.org/standard/74190.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/TR 17400:2003,https://www.iso.org/standard/33037.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17401:2004,https://www.iso.org/standard/33038.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17520:2016,https://www.iso.org/standard/59946.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17540:2016,https://www.iso.org/standard/59993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17546:2016,https://www.iso.org/standard/60028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17566:2011,https://www.iso.org/standard/57225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17666:2016,https://www.iso.org/standard/69239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17689:2015,https://www.iso.org/standard/60263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17761:2015,https://www.iso.org/standard/60493.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/FDIS 17763,https://www.iso.org/standard/72866.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17770:2017,https://www.iso.org/standard/60496.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17807:2013,https://www.iso.org/standard/60592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 17808:2014,https://www.iso.org/standard/60593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 17809:2014,https://www.iso.org/standard/60594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 17810:2014,https://www.iso.org/standard/60595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 17851:2016,https://www.iso.org/standard/60820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 17854:2013,https://www.iso.org/standard/60827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/TR 18146:2015,https://www.iso.org/standard/61602.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/TR 18147:2014,https://www.iso.org/standard/61603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 18197:2015,https://www.iso.org/standard/61735.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 18201:2013,https://www.iso.org/standard/61741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18202:2015,https://www.iso.org/standard/68558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18238:2015,https://www.iso.org/standard/61847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 18257:2016,https://www.iso.org/standard/61899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 18322:2017,https://www.iso.org/standard/62162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 18381:2013,https://www.iso.org/standard/62319.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18382:2013,https://www.iso.org/standard/62320.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18423:2015,https://www.iso.org/standard/67086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18424:2013,https://www.iso.org/standard/62448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18425:2013,https://www.iso.org/standard/62449.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18426:2013,https://www.iso.org/standard/62450.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18427:2013,https://www.iso.org/standard/62451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18428:2013,https://www.iso.org/standard/62452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18438:2013,https://www.iso.org/standard/62453.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18440:2016,https://www.iso.org/standard/70702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18441:2016,https://www.iso.org/standard/70703.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 18441,https://www.iso.org/standard/74560.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18442:2016,https://www.iso.org/standard/70704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18443:2016,https://www.iso.org/standard/70705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18444:2016,https://www.iso.org/standard/70706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18445:2016,https://www.iso.org/standard/70707.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 18446:2016,https://www.iso.org/standard/70708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/PRF TS 18667,https://www.iso.org/standard/71939.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 18676:2017,https://www.iso.org/standard/63173.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 19389:2014,https://www.iso.org/standard/64784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/TR 19473:2015,https://www.iso.org/standard/67355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 19683:2017,https://www.iso.org/standard/66008.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 19826:2017,https://www.iso.org/standard/66280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 19923:2017,https://www.iso.org/standard/66555.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 19924:2017,https://www.iso.org/standard/66556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 19933:2007,https://www.iso.org/standard/43418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 19971:2018,https://www.iso.org/standard/66775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 20104:2015,https://www.iso.org/standard/67056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20105:2015,https://www.iso.org/standard/67057.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20106:2015,https://www.iso.org/standard/67058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20188:2018,https://www.iso.org/standard/67225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 20205:2015,https://www.iso.org/standard/67300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20206:2015,https://www.iso.org/standard/67301.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20207:2015,https://www.iso.org/standard/67302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20208:2015,https://www.iso.org/standard/67303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20210:2015,https://www.iso.org/standard/67304.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20214:2015,https://www.iso.org/standard/67307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 20215:2015,https://www.iso.org/standard/67308.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/TR 20590:2017,https://www.iso.org/standard/68467.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 20652:2006,https://www.iso.org/standard/39577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/FDIS 20780,https://www.iso.org/standard/69067.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 20892,https://www.iso.org/standard/69376.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 20893,https://www.iso.org/standard/73023.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/FDIS 20930,https://www.iso.org/standard/69486.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 20991,https://www.iso.org/standard/69698.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/DTS 20991,https://www.iso.org/standard/74109.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21076:2016,https://www.iso.org/standard/69836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 21077:2016,https://www.iso.org/standard/69837.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 21077,https://www.iso.org/standard/74553.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 21080:2016,https://www.iso.org/standard/69839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 21082:2016,https://www.iso.org/standard/69842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 21095,https://www.iso.org/standard/69910.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21323:2016,https://www.iso.org/standard/70545.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 21324:2016,https://www.iso.org/standard/70546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 21347:2005,https://www.iso.org/standard/34482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21348:2007,https://www.iso.org/standard/39911.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21349:2007,https://www.iso.org/standard/40780.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21350:2007,https://www.iso.org/standard/43454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21351:2005,https://www.iso.org/standard/34486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 21442,https://www.iso.org/standard/70925.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21459:2015,https://www.iso.org/standard/67093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 21460:2015,https://www.iso.org/standard/67092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/DIS 21494,https://www.iso.org/standard/71006.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21648:2008,https://www.iso.org/standard/46090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 21886,https://www.iso.org/standard/72052.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 21961:2003,https://www.iso.org/standard/36036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 21962:2003,https://www.iso.org/standard/36037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/DTS 21979,https://www.iso.org/standard/71847.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22009:2009,https://www.iso.org/standard/51251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22010:2007,https://www.iso.org/standard/42441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22108:2008,https://www.iso.org/standard/46093.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 22137,https://www.iso.org/standard/72664.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22538-1:2007,https://www.iso.org/standard/45834.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22538-2:2007,https://www.iso.org/standard/45835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22538-3:2007,https://www.iso.org/standard/45836.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22538-4:2007,https://www.iso.org/standard/45837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22538-5:2010,https://www.iso.org/standard/45838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22538-6:2010,https://www.iso.org/standard/45839.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 22641:2012,https://www.iso.org/standard/60590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22642:2015,https://www.iso.org/standard/62446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22643:2003,https://www.iso.org/standard/36377.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22645:2016,https://www.iso.org/standard/70698.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22646:2005,https://www.iso.org/standard/36381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22646:2005/Amd 1:2015,https://www.iso.org/standard/68742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22663:2015,https://www.iso.org/standard/67091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22664:2016,https://www.iso.org/standard/70699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22666:2016,https://www.iso.org/standard/70701.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22667:2013,https://www.iso.org/standard/61747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22669:2013,https://www.iso.org/standard/61743.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 22669,https://www.iso.org/standard/74554.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22670:2013,https://www.iso.org/standard/61744.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 22670,https://www.iso.org/standard/74555.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22671:2011,https://www.iso.org/standard/58052.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 22671,https://www.iso.org/standard/74557.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 22672:2011,https://www.iso.org/standard/58053.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 22672,https://www.iso.org/standard/74558.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 23038,https://www.iso.org/standard/69495.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 23038:2006,https://www.iso.org/standard/36600.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 23041:2007,https://www.iso.org/standard/40367.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/PRF 23041,https://www.iso.org/standard/73170.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 23103,https://www.iso.org/standard/74561.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 23104,https://www.iso.org/standard/74562.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 23339:2010,https://www.iso.org/standard/55368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 23460:2011,https://www.iso.org/standard/57227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 23461:2010,https://www.iso.org/standard/53360.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 23462:2014,https://www.iso.org/standard/61848.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 24113:2011,https://www.iso.org/standard/57239.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/AWI 24113,https://www.iso.org/standard/72383.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 24637:2009,https://www.iso.org/standard/42344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 24638:2008,https://www.iso.org/standard/42345.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/NP 24638,https://www.iso.org/standard/74188.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 24917:2010,https://www.iso.org/standard/42633.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 24917,https://www.iso.org/standard/71612.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 26143:2013,https://www.iso.org/standard/61745.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO/CD 26143,https://www.iso.org/standard/74556.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 26868:2009,https://www.iso.org/standard/43849.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 13,https://www.iso.org/contents/data/committee/04/66/46612/x/catalogue/ -ISO 26869:2012,https://www.iso.org/standard/57530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 26870:2009,https://www.iso.org/standard/43851.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 26871:2012,https://www.iso.org/standard/57528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/NP 26871,https://www.iso.org/standard/74186.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 26872:2010,https://www.iso.org/standard/43853.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/CD 26872,https://www.iso.org/standard/74189.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 26900:2012,https://www.iso.org/standard/46135.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 27025:2010,https://www.iso.org/standard/43960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 27026:2011,https://www.iso.org/standard/43961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 27852:2016,https://www.iso.org/standard/68572.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 27875:2010,https://www.iso.org/standard/44393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 27875:2010/Amd 1:2016,https://www.iso.org/standard/69755.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO/DIS 27875,https://www.iso.org/standard/74251.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 20/SC 14,https://www.iso.org/contents/data/committee/04/66/46614/x/catalogue/ -ISO 2374:1983,https://www.iso.org/standard/7215.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 4301-1:1986,https://www.iso.org/standard/10151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO 7363:1986,https://www.iso.org/standard/14052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96,https://www.iso.org/contents/data/committee/05/06/50642/x/catalogue/ -ISO 7752-1:2010,https://www.iso.org/standard/46496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 7752-1:2010/Amd 1:2012,https://www.iso.org/standard/57366.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 4301-1:2016,https://www.iso.org/standard/63070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO 4301-2:2009,https://www.iso.org/standard/44187.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 4301-3:1993,https://www.iso.org/standard/10153.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 4301-4:1989,https://www.iso.org/standard/10154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 4301-5:1991,https://www.iso.org/standard/10155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 4302:2016,https://www.iso.org/standard/62566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO 4304:1987,https://www.iso.org/standard/10158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO 4305:2014,https://www.iso.org/standard/57220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 4305:2014/Amd 1:2016,https://www.iso.org/standard/69173.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 4306-1:2007,https://www.iso.org/standard/32457.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 4306-1:2007/AWI Amd 1,https://www.iso.org/standard/69314.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 4306-2:2012,https://www.iso.org/standard/55962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 4306-3:2016,https://www.iso.org/standard/64709.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 4306-5:2005,https://www.iso.org/standard/31809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 4310:2009,https://www.iso.org/standard/44279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 4,https://www.iso.org/contents/data/committee/05/06/50656/x/catalogue/ -ISO 7296-1:1991,https://www.iso.org/standard/13956.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 7296-1:1991/Amd 1:1996,https://www.iso.org/standard/23385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 7296-2:1996,https://www.iso.org/standard/24511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 7296-3:2006,https://www.iso.org/standard/44460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 7752-2:2011,https://www.iso.org/standard/54058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 7752-3:2013,https://www.iso.org/standard/62876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 7752-4:1989,https://www.iso.org/standard/14604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 7752-5:1985,https://www.iso.org/standard/14605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 8566-1:2010,https://www.iso.org/standard/46497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 8566-2:2016,https://www.iso.org/standard/69220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 8566-3:2010,https://www.iso.org/standard/46495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 8566-4:1998,https://www.iso.org/standard/20140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 8566-5:2017,https://www.iso.org/standard/68841.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 8686-1:2012,https://www.iso.org/standard/59417.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO 8686-2:2004,https://www.iso.org/standard/35970.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO/FDIS 8686-2,https://www.iso.org/standard/71572.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 8686-3:1998,https://www.iso.org/standard/2665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO/DIS 8686-3.2,https://www.iso.org/standard/66765.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 8686-4:2005,https://www.iso.org/standard/38566.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 8686-5:2017,https://www.iso.org/standard/68813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 9373:1989,https://www.iso.org/standard/17060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 4,https://www.iso.org/contents/data/committee/05/06/50656/x/catalogue/ -ISO 9374-1:1989,https://www.iso.org/standard/17061.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 9374-3:2014,https://www.iso.org/standard/60273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 9374-4:1989,https://www.iso.org/standard/17064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 9374-5:1991,https://www.iso.org/standard/17065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 9926-1:1990,https://www.iso.org/standard/17812.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 9926-3:2016,https://www.iso.org/standard/66764.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 9927-1:2013,https://www.iso.org/standard/51102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 9927-3:2005,https://www.iso.org/standard/38734.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO/DIS 9927-3,https://www.iso.org/standard/72670.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 9927-5:2017,https://www.iso.org/standard/62755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 9928-1:2015,https://www.iso.org/standard/67238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 9928-2:2014,https://www.iso.org/standard/67358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 9942-1:2015,https://www.iso.org/standard/67237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 9942-3:1999,https://www.iso.org/standard/21211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 10245-1:2008,https://www.iso.org/standard/43577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 10245-2:2014,https://www.iso.org/standard/60618.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 10245-2:2014/Amd 1:2015,https://www.iso.org/standard/67084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 10245-3:2008,https://www.iso.org/standard/41283.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO/DIS 10245-3,https://www.iso.org/standard/71573.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 10245-4:2004,https://www.iso.org/standard/38568.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 10245-4:2004/Cor 1:2006,https://www.iso.org/standard/44168.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 10245-5:1995,https://www.iso.org/standard/18286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 10571:2016,https://www.iso.org/standard/65217.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 6,https://www.iso.org/contents/data/committee/04/77/47740/x/catalogue/ -ISO 10972-1:1998,https://www.iso.org/standard/18943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 10972-2:2009,https://www.iso.org/standard/52562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 10972-3:2003,https://www.iso.org/standard/32430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 10972-4:2007,https://www.iso.org/standard/42903.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 10972-5:2006,https://www.iso.org/standard/41269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 10973:1995,https://www.iso.org/standard/18946.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 11031:2016,https://www.iso.org/standard/46588.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO 11629:2004,https://www.iso.org/standard/39533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 4,https://www.iso.org/contents/data/committee/05/06/50656/x/catalogue/ -ISO 11630:1997,https://www.iso.org/standard/19561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 4,https://www.iso.org/contents/data/committee/05/06/50656/x/catalogue/ -ISO 11660-1:2008,https://www.iso.org/standard/41280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 11660-2:2015,https://www.iso.org/standard/62768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 11660-3:2008,https://www.iso.org/standard/41282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 11660-4:2012,https://www.iso.org/standard/52131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 11660-5:2001,https://www.iso.org/standard/29233.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 11661:1998,https://www.iso.org/standard/19588.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 11662-1:1995,https://www.iso.org/standard/19589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 11662-2:2014,https://www.iso.org/standard/60998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 11994:1997,https://www.iso.org/standard/20622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 12210-1:1998,https://www.iso.org/standard/2636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 12210-4:1998,https://www.iso.org/standard/2640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 12210-4:1998/Cor 1:2000,https://www.iso.org/standard/34046.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 12478-1:1997,https://www.iso.org/standard/2498.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 12480-1:1997,https://www.iso.org/standard/2534.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 12480-3:2016,https://www.iso.org/standard/70316.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO/DIS 12480-3,https://www.iso.org/standard/72671.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 12480-4:2007,https://www.iso.org/standard/42902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 12482:2014,https://www.iso.org/standard/57481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 12485:1998,https://www.iso.org/standard/2664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 12488-1:2012,https://www.iso.org/standard/57300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 12488-4:2004,https://www.iso.org/standard/34548.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO 13200:1995,https://www.iso.org/standard/20498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 13202:2003,https://www.iso.org/standard/34464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 4,https://www.iso.org/contents/data/committee/05/06/50656/x/catalogue/ -ISO 14518:2005,https://www.iso.org/standard/38496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 4,https://www.iso.org/contents/data/committee/05/06/50656/x/catalogue/ -ISO 15442:2012,https://www.iso.org/standard/57221.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 15442:2012/Amd 1:2015,https://www.iso.org/standard/67134.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO 15513:2000,https://www.iso.org/standard/27038.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO/TS 15696:2012,https://www.iso.org/standard/50813.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 2,https://www.iso.org/contents/data/committee/05/06/50652/x/catalogue/ -ISO 16715:2014,https://www.iso.org/standard/57479.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO/TR 16880:2004,https://www.iso.org/standard/38150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 16881-1:2005,https://www.iso.org/standard/38151.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO 17096:2015,https://www.iso.org/standard/58103.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 17440:2014,https://www.iso.org/standard/59758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO/FDIS 19835,https://www.iso.org/standard/66330.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO/TR 19961:2010,https://www.iso.org/standard/55963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 6,https://www.iso.org/contents/data/committee/05/06/50660/x/catalogue/ -ISO/CD 20230-1,https://www.iso.org/standard/67330.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/06/50656/x/catalogue/ -ISO 20332:2016,https://www.iso.org/standard/62663.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 10,https://www.iso.org/contents/data/committee/34/46/344665/x/catalogue/ -ISO 22986:2007,https://www.iso.org/standard/41268.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 96/SC 9,https://www.iso.org/contents/data/committee/05/06/50672/x/catalogue/ -ISO 23813:2007,https://www.iso.org/standard/36990.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 23814:2009,https://www.iso.org/standard/36991.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 23815-1:2007,https://www.iso.org/standard/36992.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO 23853:2004,https://www.iso.org/standard/37002.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO/FDIS 23853,https://www.iso.org/standard/75171.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 96/SC 5,https://www.iso.org/contents/data/committee/05/06/50658/x/catalogue/ -ISO/TR 25599:2005,https://www.iso.org/standard/43035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 8,https://www.iso.org/contents/data/committee/05/06/50668/x/catalogue/ -ISO/TR 27245:2007,https://www.iso.org/standard/44078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 7,https://www.iso.org/contents/data/committee/05/06/50664/x/catalogue/ -ISO 1834:1999,https://www.iso.org/standard/6486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 1835:1980,https://www.iso.org/standard/6487.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO/DIS 1835,https://www.iso.org/standard/74249.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 1837:2003,https://www.iso.org/standard/37599.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 2262:1984,https://www.iso.org/standard/7079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 2308:1972,https://www.iso.org/standard/7139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 2415:2004,https://www.iso.org/standard/37525.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO/CD 2415,https://www.iso.org/standard/72736.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 3056:1986,https://www.iso.org/standard/8166.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 3076:2012,https://www.iso.org/standard/34498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 3077:2001,https://www.iso.org/standard/33229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 3266:2010,https://www.iso.org/standard/36657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 3266:2010/Amd 1:2015,https://www.iso.org/standard/65555.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 4309:2017,https://www.iso.org/standard/66759.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 96/SC 3,https://www.iso.org/contents/data/committee/05/06/50654/x/catalogue/ -ISO 4778:1981,https://www.iso.org/standard/10755.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 4779:1986,https://www.iso.org/standard/10757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 7592:1983,https://www.iso.org/standard/14381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 7593:1986,https://www.iso.org/standard/14382.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 7597:2013,https://www.iso.org/standard/57337.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 8539:2009,https://www.iso.org/standard/52349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 16625:2013,https://www.iso.org/standard/57301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 96/SC 3,https://www.iso.org/contents/data/committee/05/06/50654/x/catalogue/ -ISO 16798:2004,https://www.iso.org/standard/31074.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 111/SC 3,https://www.iso.org/contents/data/committee/05/16/51636/x/catalogue/ -ISO 16872:2015,https://www.iso.org/standard/61060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 16877:2015,https://www.iso.org/standard/61061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO/TR 21704:2017,https://www.iso.org/standard/71367.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO/TR 23602:2005,https://www.iso.org/standard/41688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 111/SC 1,https://www.iso.org/contents/data/committee/05/16/51628/x/catalogue/ -ISO 16368:2010,https://www.iso.org/standard/43055.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 16369:2007,https://www.iso.org/standard/39106.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 16653-1:2008,https://www.iso.org/standard/38029.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 16653-2:2009,https://www.iso.org/standard/39104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 16653-3:2011,https://www.iso.org/standard/46341.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 18878:2013,https://www.iso.org/standard/59512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 18893:2014,https://www.iso.org/standard/59976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 20381:2009,https://www.iso.org/standard/39745.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO/CD 21455,https://www.iso.org/standard/70943.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 214,https://www.iso.org/contents/data/committee/05/49/54954/x/catalogue/ -ISO 1819:1977,https://www.iso.org/standard/6466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 2148:1974,https://www.iso.org/standard/6941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 3435:1977,https://www.iso.org/standard/8754.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 3569:1976,https://www.iso.org/standard/8974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 5049-1:1994,https://www.iso.org/standard/11071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 7149:1982,https://www.iso.org/standard/13741.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 14617-14:2004,https://www.iso.org/standard/32822.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 284:2012,https://www.iso.org/standard/61044.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 1049:1975,https://www.iso.org/standard/5534.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 1050:1975,https://www.iso.org/standard/5535.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 1807:1975,https://www.iso.org/standard/6446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 1815:1975,https://www.iso.org/standard/6460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 2109:1975,https://www.iso.org/standard/6899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 2139:1975,https://www.iso.org/standard/6930.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 2140:1975,https://www.iso.org/standard/6931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 2406:1974,https://www.iso.org/standard/7303.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 5048:1989,https://www.iso.org/standard/11069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 7119:1981,https://www.iso.org/standard/13705.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 7189:1983,https://www.iso.org/standard/13806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO/TR 9172:1987,https://www.iso.org/standard/16774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 9851:1990,https://www.iso.org/standard/17729.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 21178:2013,https://www.iso.org/standard/61050.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 21179:2013,https://www.iso.org/standard/61051.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 21182:2013,https://www.iso.org/standard/61054.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 251:2012,https://www.iso.org/standard/61040.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 252:2007,https://www.iso.org/standard/38393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 282:1992,https://www.iso.org/standard/4196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 283:2015,https://www.iso.org/standard/61035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 340:2013,https://www.iso.org/standard/61039.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 433:2017,https://www.iso.org/standard/73518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 505:2017,https://www.iso.org/standard/73519.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 583:2007,https://www.iso.org/standard/38396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 610:1990,https://www.iso.org/standard/4726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 703:2017,https://www.iso.org/standard/71643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 1082:1990,https://www.iso.org/standard/5581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1120:2012,https://www.iso.org/standard/61045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 1275:2006,https://www.iso.org/standard/34516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 1535:1975,https://www.iso.org/standard/6123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 1536:1975,https://www.iso.org/standard/6124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 1537:1975,https://www.iso.org/standard/6125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 1816:1975,https://www.iso.org/standard/6461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 1977:2006,https://www.iso.org/standard/43971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 3684:1990,https://www.iso.org/standard/9149.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 3684:1990/Amd 1:2006,https://www.iso.org/standard/41738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 4123:1979,https://www.iso.org/standard/9874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 4195:2012,https://www.iso.org/standard/61043.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 5284:1986,https://www.iso.org/standard/11280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 5284:1986/Cor 1:2005,https://www.iso.org/standard/43382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 5285:2012,https://www.iso.org/standard/61041.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 5293:2004,https://www.iso.org/standard/39063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 5293:2004/Cor 1:2008,https://www.iso.org/standard/51715.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 5612:1990,https://www.iso.org/standard/11690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 5613:1984,https://www.iso.org/standard/11691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 6973:1986,https://www.iso.org/standard/13526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 100,https://www.iso.org/contents/data/committee/05/09/50982/x/catalogue/ -ISO 7590:2009,https://www.iso.org/standard/45313.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO/FDIS 7590,https://www.iso.org/standard/70498.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 7622-1:2013,https://www.iso.org/standard/61036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 7622-2:2015,https://www.iso.org/standard/61037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 7623:2015,https://www.iso.org/standard/65573.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 8094:2013,https://www.iso.org/standard/61038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO/TR 8865:1990,https://www.iso.org/standard/16356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 9856:2016,https://www.iso.org/standard/70275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 10247:1990,https://www.iso.org/standard/18288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 10247:1990/Amd 1:2006,https://www.iso.org/standard/41844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 14890:2013,https://www.iso.org/standard/61047.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 15147:2012,https://www.iso.org/standard/61048.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 15236-1:2016,https://www.iso.org/standard/70276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 15236-2:2017,https://www.iso.org/standard/70492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 15236-3:2017,https://www.iso.org/standard/71644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 15236-4:2004,https://www.iso.org/standard/31484.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 16851:2012,https://www.iso.org/standard/61049.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 18573:2012,https://www.iso.org/standard/61042.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 20238,https://www.iso.org/standard/67391.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 21180:2013,https://www.iso.org/standard/61052.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 21181:2013,https://www.iso.org/standard/61053.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 21183-1:2005,https://www.iso.org/standard/40048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 21183-2:2005,https://www.iso.org/standard/38438.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO/DIS 21183-2,https://www.iso.org/standard/70497.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 22721:2007,https://www.iso.org/standard/41082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 2327:1972,https://www.iso.org/standard/7161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 3284:1974,https://www.iso.org/standard/8520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 5031:1977,https://www.iso.org/standard/11052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 2326:1972,https://www.iso.org/standard/7160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 3265:1974,https://www.iso.org/standard/8490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 5050:1981,https://www.iso.org/standard/11073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 5051:1981,https://www.iso.org/standard/11074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 7190:1981,https://www.iso.org/standard/13807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 938:1975,https://www.iso.org/standard/5357.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 1756:1975,https://www.iso.org/standard/6387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 2328:2011,https://www.iso.org/standard/51106.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 2330:2002,https://www.iso.org/standard/36156.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 2331:1974,https://www.iso.org/standard/7166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3287:1999,https://www.iso.org/standard/1130.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3691-1:2011,https://www.iso.org/standard/52163.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3691-1:2011/Cor 1:2013,https://www.iso.org/standard/64231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3691-1:2011/NP Amd 2,https://www.iso.org/standard/70775.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3691-2:2016,https://www.iso.org/standard/64553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3691-3:2016,https://www.iso.org/standard/54508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/CD 3691-4,https://www.iso.org/standard/70660.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3691-5:2014,https://www.iso.org/standard/62807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3691-6:2013,https://www.iso.org/standard/37319.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/TS 3691-7:2011,https://www.iso.org/standard/50887.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/NP TS 3691-8,https://www.iso.org/standard/70777.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/TS 3691-8:2012,https://www.iso.org/standard/50888.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 3739-3:2008,https://www.iso.org/standard/39043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO 5053-1:2015,https://www.iso.org/standard/56429.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 1,https://www.iso.org/contents/data/committee/05/15/51590/x/catalogue/ -ISO/DIS 5053-1,https://www.iso.org/standard/75384.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 110/SC 1,https://www.iso.org/contents/data/committee/05/15/51590/x/catalogue/ -ISO/DIS 5053-2,https://www.iso.org/standard/71065.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 110/SC 1,https://www.iso.org/contents/data/committee/05/15/51590/x/catalogue/ -ISO 5057:1993,https://www.iso.org/standard/20080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 6055:2004,https://www.iso.org/standard/31505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/CD 6055,https://www.iso.org/standard/66844.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 6292:2008,https://www.iso.org/standard/40797.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/NP 6292,https://www.iso.org/standard/75277.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 10896-1:2012,https://www.iso.org/standard/50580.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 10896-1:2012/WD Amd 1,https://www.iso.org/standard/74729.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 10896-2:2016,https://www.iso.org/standard/46327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 10896-4:2015,https://www.iso.org/standard/51990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 10896-5:2015,https://www.iso.org/standard/51991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 10896-6:2015,https://www.iso.org/standard/64008.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 10896-6:2015/NP Amd 1,https://www.iso.org/standard/75133.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 10896-7:2016,https://www.iso.org/standard/64448.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 11525-1:2012,https://www.iso.org/standard/50581.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO/AWI 11525-1,https://www.iso.org/standard/74620.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 11525-2:2015,https://www.iso.org/standard/60661.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO/AWI 11525-2,https://www.iso.org/standard/74403.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 11525-4:2016,https://www.iso.org/standard/62555.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 11525-5:2015,https://www.iso.org/standard/62556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO/CD 11525-7,https://www.iso.org/standard/73031.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 13284:2003,https://www.iso.org/standard/34067.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 13563-2:2001,https://www.iso.org/standard/29055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 13564-1:2012,https://www.iso.org/standard/51092.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 15870:2000,https://www.iso.org/standard/29325.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/DIS 15870,https://www.iso.org/standard/75009.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 15871:2000,https://www.iso.org/standard/29326.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/CD 15871,https://www.iso.org/standard/73215.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 18063-1:2016,https://www.iso.org/standard/64009.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 18479-1:2015,https://www.iso.org/standard/62557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 18479-2:2016,https://www.iso.org/standard/62558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 20297-1:2017,https://www.iso.org/standard/67584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO/CD 20297-2,https://www.iso.org/standard/67585.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 20898:2008,https://www.iso.org/standard/51229.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 21281:2005,https://www.iso.org/standard/37308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22877:2004,https://www.iso.org/standard/36536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 22878:2004,https://www.iso.org/standard/36537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 22881:2004,https://www.iso.org/standard/36540.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 22883:2004,https://www.iso.org/standard/36542.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 22884:2004,https://www.iso.org/standard/36543.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 22915-1:2016,https://www.iso.org/standard/63068.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-2:2008,https://www.iso.org/standard/41211.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/DIS 22915-2,https://www.iso.org/standard/75012.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-3:2014,https://www.iso.org/standard/63069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-4:2009,https://www.iso.org/standard/41213.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-4:2009/Amd 1:2013,https://www.iso.org/standard/62677.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/DIS 22915-4,https://www.iso.org/standard/70779.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-5:2014,https://www.iso.org/standard/60406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-7:2016,https://www.iso.org/standard/70571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-8:2008,https://www.iso.org/standard/42348.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/DIS 22915-8,https://www.iso.org/standard/75011.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-9:2014,https://www.iso.org/standard/59940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-10:2008,https://www.iso.org/standard/42349.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-11:2011,https://www.iso.org/standard/44944.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-12:2015,https://www.iso.org/standard/59941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-13:2012,https://www.iso.org/standard/54418.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 22915-13:2012/Cor 1:2013,https://www.iso.org/standard/65065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO/AWI 22915-13,https://www.iso.org/standard/74402.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 22915-14:2010,https://www.iso.org/standard/44946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 22915-15:2013,https://www.iso.org/standard/59942.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-16:2014,https://www.iso.org/standard/59943.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-20:2008,https://www.iso.org/standard/42350.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-21:2009,https://www.iso.org/standard/35103.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/DIS 22915-21,https://www.iso.org/standard/70780.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-22:2014,https://www.iso.org/standard/53648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 22915-24:2015,https://www.iso.org/standard/64271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 4,https://www.iso.org/contents/data/committee/53/49/534959/x/catalogue/ -ISO 24134:2006,https://www.iso.org/standard/37093.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 24135-1:2006,https://www.iso.org/standard/44857.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO/TR 29944:2010,https://www.iso.org/standard/45751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110/SC 2,https://www.iso.org/contents/data/committee/05/16/51600/x/catalogue/ -ISO 8456:1985,https://www.iso.org/standard/15645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 101,https://www.iso.org/contents/data/committee/05/10/51006/x/catalogue/ -ISO 2860:1992,https://www.iso.org/standard/7870.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 2867:2006/Cor 1:2008,https://www.iso.org/standard/51688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 2867:2011,https://www.iso.org/standard/51279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 3164:2013,https://www.iso.org/standard/57232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 3411:2007,https://www.iso.org/standard/38911.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 3449:2005,https://www.iso.org/standard/32900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/WD 3449,https://www.iso.org/standard/66914.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 3450:2011,https://www.iso.org/standard/42076.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 3457:2003,https://www.iso.org/standard/32429.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 3471:2008,https://www.iso.org/standard/38084.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 4250-3:2011,https://www.iso.org/standard/54744.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 6,https://www.iso.org/contents/data/committee/04/77/47740/x/catalogue/ -ISO/CD 4250-3,https://www.iso.org/standard/65230.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/77/47740/x/catalogue/ -ISO 4510-1:1987,https://www.iso.org/standard/10406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 4510-2:1996,https://www.iso.org/standard/22996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 5005:1977,https://www.iso.org/standard/11017.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 5006:2017,https://www.iso.org/standard/45609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 5010:2007,https://www.iso.org/standard/45105.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/CD 5010,https://www.iso.org/standard/68453.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 5353:1995,https://www.iso.org/standard/11375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6011:2003,https://www.iso.org/standard/30309.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6012:1997,https://www.iso.org/standard/25919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6014:1986,https://www.iso.org/standard/12215.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 6015:2006,https://www.iso.org/standard/40689.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 6016:2008,https://www.iso.org/standard/42800.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 6165:2012,https://www.iso.org/standard/52639.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 6302:1993,https://www.iso.org/standard/21466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6392-1:1996,https://www.iso.org/standard/12727.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6392-2:1996,https://www.iso.org/standard/2125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6393:2008,https://www.iso.org/standard/38481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6394:2008,https://www.iso.org/standard/38482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6394:2008/Cor 1:2009,https://www.iso.org/standard/54026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6395:2008,https://www.iso.org/standard/38487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6396:2008,https://www.iso.org/standard/38488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6396:2008/Cor 1:2009,https://www.iso.org/standard/54025.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6405-1:2017,https://www.iso.org/standard/68551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6405-2:2017,https://www.iso.org/standard/68552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6483:1980,https://www.iso.org/standard/12847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 6483:1980/Cor 1:1994,https://www.iso.org/standard/22812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 6484:1986,https://www.iso.org/standard/12849.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 6485:1980,https://www.iso.org/standard/12850.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 6682:1986,https://www.iso.org/standard/13111.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6682:1986/Amd 1:1989,https://www.iso.org/standard/13112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6683:2005,https://www.iso.org/standard/30312.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 6746-1:2003,https://www.iso.org/standard/23688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 6746-2:2003,https://www.iso.org/standard/23689.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 6746-2:2003/Cor 1:2004,https://www.iso.org/standard/40281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 6747:2013,https://www.iso.org/standard/51830.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 6749:1984,https://www.iso.org/standard/13237.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 6750:2005,https://www.iso.org/standard/29209.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO/CD 6750,https://www.iso.org/standard/68900.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 7096:2000,https://www.iso.org/standard/25592.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 7129:1997,https://www.iso.org/standard/26932.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 7130:2013,https://www.iso.org/standard/55300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 7131:2009,https://www.iso.org/standard/42841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7131:2009/Amd 1:2017,https://www.iso.org/standard/70367.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7132:2003,https://www.iso.org/standard/26883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7132:2003/DAmd 1,https://www.iso.org/standard/66845.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7133:2013,https://www.iso.org/standard/51831.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7134:2013,https://www.iso.org/standard/51832.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7135:2009,https://www.iso.org/standard/42842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7135:2009/DAmd 1,https://www.iso.org/standard/73152.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7136:2006,https://www.iso.org/standard/37781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 7451:2007,https://www.iso.org/standard/39808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 7457:1997,https://www.iso.org/standard/23692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 7464:1983,https://www.iso.org/standard/14199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 7546:1983,https://www.iso.org/standard/14330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 7852:1983,https://www.iso.org/standard/14774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 8152:1984,https://www.iso.org/standard/15235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 8643:2017,https://www.iso.org/standard/59690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 8811:2000,https://www.iso.org/standard/33206.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 8811:2000/Cor 1:2002,https://www.iso.org/standard/35964.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 8812:2016,https://www.iso.org/standard/62355.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 8813:1992,https://www.iso.org/standard/16262.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 8925:1989,https://www.iso.org/standard/16455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 8925:1989/Amd 1:1997,https://www.iso.org/standard/25920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 8927:1991,https://www.iso.org/standard/16457.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 9244:2008,https://www.iso.org/standard/39256.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 9244:2008/Amd 1:2016,https://www.iso.org/standard/67236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 9245:1991,https://www.iso.org/standard/16895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 9246:1988,https://www.iso.org/standard/16896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 9247:1990,https://www.iso.org/standard/16897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 9247:1990/Amd 1:1998,https://www.iso.org/standard/29854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 9248:1992,https://www.iso.org/standard/16898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 9249:2007,https://www.iso.org/standard/38008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO/TS 9250-1:2012,https://www.iso.org/standard/62385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO/TS 9250-2:2012,https://www.iso.org/standard/62386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 9533:2010,https://www.iso.org/standard/42250.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10261:2002,https://www.iso.org/standard/32978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 10261:2002/Amd 1:2015,https://www.iso.org/standard/66111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10262:1998,https://www.iso.org/standard/18302.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10262:1998/Cor 1:2009,https://www.iso.org/standard/54723.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10263-1:2009,https://www.iso.org/standard/42453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10263-2:2009,https://www.iso.org/standard/42454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10263-3:2009,https://www.iso.org/standard/42455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10263-4:2009,https://www.iso.org/standard/42456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10263-5:2009,https://www.iso.org/standard/42457.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10263-6:2009,https://www.iso.org/standard/42458.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10264:1990,https://www.iso.org/standard/18304.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10265:2008,https://www.iso.org/standard/39809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10266:1992,https://www.iso.org/standard/18306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10268:1993,https://www.iso.org/standard/18308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10326-1:2016,https://www.iso.org/standard/67659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10532:1995,https://www.iso.org/standard/18601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10532:1995/Amd 1:2004,https://www.iso.org/standard/35065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10532:1995/Amd 1:2004/Cor 1:2006,https://www.iso.org/standard/45414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10532:1995/Cor 1:2006,https://www.iso.org/standard/45413.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10533:1993,https://www.iso.org/standard/18602.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10533:1993/Amd 1:2005,https://www.iso.org/standard/35066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10567:2007,https://www.iso.org/standard/32386.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10570:2004,https://www.iso.org/standard/37677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 10968:2004,https://www.iso.org/standard/31188.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/DIS 10968,https://www.iso.org/standard/66915.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 10987:2012,https://www.iso.org/standard/46485.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127,https://www.iso.org/contents/data/committee/05/21/52172/x/catalogue/ -ISO 10987-2:2017,https://www.iso.org/standard/67161.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127,https://www.iso.org/contents/data/committee/05/21/52172/x/catalogue/ -ISO 10987-3:2017,https://www.iso.org/standard/67163.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127,https://www.iso.org/contents/data/committee/05/21/52172/x/catalogue/ -ISO 11112:1995,https://www.iso.org/standard/2157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 11112:1995/Amd 1:2001,https://www.iso.org/standard/26318.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 11862:1993,https://www.iso.org/standard/1602.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 12117:1997,https://www.iso.org/standard/2149.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 12117:1997/Cor 1:2000,https://www.iso.org/standard/34723.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 12117-2:2008,https://www.iso.org/standard/43160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 12117-2:2008/Amd 1:2016,https://www.iso.org/standard/66917.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 12117-2:2008/Cor 1:2010,https://www.iso.org/standard/56070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 12508:1994,https://www.iso.org/standard/20776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 12509:2004,https://www.iso.org/standard/40330.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO/WD 12509,https://www.iso.org/standard/66905.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 12510:2004,https://www.iso.org/standard/32428.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 12511:1997,https://www.iso.org/standard/2133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 12511:1997/AWI Amd 1,https://www.iso.org/standard/72090.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 13031:2016,https://www.iso.org/standard/67669.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 13333:1994,https://www.iso.org/standard/21730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 13459:2012,https://www.iso.org/standard/51976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 13539:1998,https://www.iso.org/standard/21670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 13766:2006,https://www.iso.org/standard/38480.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 13766-1,https://www.iso.org/standard/67347.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 13766-2,https://www.iso.org/standard/67403.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 14397-1:2007,https://www.iso.org/standard/39806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 14397-1:2007/CD Amd 1,https://www.iso.org/standard/74659.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 14397-2:2007,https://www.iso.org/standard/39807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 14401-1:2009,https://www.iso.org/standard/44175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 14401-2:2009,https://www.iso.org/standard/44176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 14990-1:2016,https://www.iso.org/standard/63299.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 14990-2:2016,https://www.iso.org/standard/63301.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 14990-3:2016,https://www.iso.org/standard/63302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 15143-1:2010,https://www.iso.org/standard/37406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 15143-2:2010,https://www.iso.org/standard/37407.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO/TS 15143-3:2016,https://www.iso.org/standard/67556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 15219:2004,https://www.iso.org/standard/25957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 15817:2012,https://www.iso.org/standard/46237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 15818:2017,https://www.iso.org/standard/63067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 15998:2008,https://www.iso.org/standard/28559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO/TS 15998-2:2012,https://www.iso.org/standard/50612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 16001:2017,https://www.iso.org/standard/63688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 16714:2008,https://www.iso.org/standard/38055.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 16754:2008,https://www.iso.org/standard/38069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 17063:2003,https://www.iso.org/standard/31183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 17253:2014,https://www.iso.org/standard/59480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 17757:2017,https://www.iso.org/standard/60473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/DIS 18758-1,https://www.iso.org/standard/67706.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/DIS 18758-2,https://www.iso.org/standard/67707.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/FDIS 19014-1,https://www.iso.org/standard/70715.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/FDIS 19014-3,https://www.iso.org/standard/70717.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 19296,https://www.iso.org/standard/64455.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/TR 19948:2016,https://www.iso.org/standard/66681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127,https://www.iso.org/contents/data/committee/05/21/52172/x/catalogue/ -ISO 20474-1:2017,https://www.iso.org/standard/60734.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-2:2017,https://www.iso.org/standard/60737.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-3:2017,https://www.iso.org/standard/60735.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-4:2017,https://www.iso.org/standard/60736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-5:2017,https://www.iso.org/standard/60738.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-6:2017,https://www.iso.org/standard/60739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-7:2017,https://www.iso.org/standard/60740.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-8:2017,https://www.iso.org/standard/60741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-9:2017,https://www.iso.org/standard/60742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-10:2017,https://www.iso.org/standard/60743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-11:2017,https://www.iso.org/standard/60744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-12:2017,https://www.iso.org/standard/60745.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 20474-13:2017,https://www.iso.org/standard/60746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/DIS 20474-15,https://www.iso.org/standard/67671.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 21467:2004,https://www.iso.org/standard/34546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 4,https://www.iso.org/contents/data/committee/05/21/52192/x/catalogue/ -ISO 21507:2010,https://www.iso.org/standard/45468.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 1,https://www.iso.org/contents/data/committee/05/21/52176/x/catalogue/ -ISO 22448:2010,https://www.iso.org/standard/50566.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 23727:2009,https://www.iso.org/standard/41814.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 127/SC 3,https://www.iso.org/contents/data/committee/05/21/52188/x/catalogue/ -ISO 24410:2005,https://www.iso.org/standard/37202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/NP 24410,https://www.iso.org/standard/70043.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/TR 25398:2006,https://www.iso.org/standard/42905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO/IEC DGuide 41,https://www.iso.org/standard/64889.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 41:2003,https://www.iso.org/standard/33319.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO 780:2015,https://www.iso.org/standard/59933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 3394:2012,https://www.iso.org/standard/50990.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 3676:2012,https://www.iso.org/standard/50989.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 8317:2015,https://www.iso.org/standard/61650.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 11156:2011,https://www.iso.org/standard/50175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 11683:1997,https://www.iso.org/standard/26907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 13127:2012,https://www.iso.org/standard/53019.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 13127:2012/Cor 1:2012,https://www.iso.org/standard/63091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO/NP 13127,https://www.iso.org/standard/73454.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 13274:2013,https://www.iso.org/standard/53591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 13274:2013/Cor 1:2014,https://www.iso.org/standard/65663.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO/DIS 14375,https://www.iso.org/standard/72733.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 15394:2017,https://www.iso.org/standard/65013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 16103:2005,https://www.iso.org/standard/30133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 16106:2006,https://www.iso.org/standard/39762.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO/CD 16106,https://www.iso.org/standard/69053.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO/TR 16218:2013,https://www.iso.org/standard/55948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO 16495:2013,https://www.iso.org/standard/56877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO/TR 17098:2013,https://www.iso.org/standard/59137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO/TR 17350:2013,https://www.iso.org/standard/59615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17351:2013,https://www.iso.org/standard/59616.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17363:2013,https://www.iso.org/standard/57596.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17364:2013,https://www.iso.org/standard/55554.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17365:2013,https://www.iso.org/standard/55563.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17366:2013,https://www.iso.org/standard/55565.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17367:2013,https://www.iso.org/standard/55568.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/TR 17370:2013,https://www.iso.org/standard/59618.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17451-1:2016,https://www.iso.org/standard/63803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/TS 17451-2:2017,https://www.iso.org/standard/63804.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17480:2015,https://www.iso.org/standard/59881.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 18601:2013,https://www.iso.org/standard/55869.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO 18602:2013,https://www.iso.org/standard/55870.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO 18603:2013,https://www.iso.org/standard/55871.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO 18604:2013,https://www.iso.org/standard/55872.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO 18605:2013,https://www.iso.org/standard/55873.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO 18606:2013,https://www.iso.org/standard/55874.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO/TS 18614:2016,https://www.iso.org/standard/71043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 19709-1:2016,https://www.iso.org/standard/66100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/TS 19709-2:2016,https://www.iso.org/standard/66101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/TS 19709-3:2016,https://www.iso.org/standard/66102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 19809:2017,https://www.iso.org/standard/66239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 21067-1:2016,https://www.iso.org/standard/66981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 21067-2:2015,https://www.iso.org/standard/62932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 4,https://www.iso.org/contents/data/committee/05/20/52082/x/catalogue/ -ISO/DIS 21976,https://www.iso.org/standard/72331.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/CD 22015,https://www.iso.org/standard/72368.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/DTR 22251,https://www.iso.org/standard/72978.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 22742:2010,https://www.iso.org/standard/53004.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 28219:2017,https://www.iso.org/standard/65014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/DIS 28862,https://www.iso.org/standard/72722.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 6590-1:1983,https://www.iso.org/standard/12996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 6590-2:1986,https://www.iso.org/standard/12997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 6591-1:1984,https://www.iso.org/standard/12998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 6591-2:1985,https://www.iso.org/standard/12999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 6599-1:1983,https://www.iso.org/standard/13010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 7023:1983,https://www.iso.org/standard/13580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 7965-1:1984,https://www.iso.org/standard/14942.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 7965-2:1993,https://www.iso.org/standard/3080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 8351-1:1994,https://www.iso.org/standard/15496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 8351-2:1994,https://www.iso.org/standard/1818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 8367-1:1993,https://www.iso.org/standard/15523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 8367-2:1993,https://www.iso.org/standard/3116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 9884-1:1994,https://www.iso.org/standard/17764.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 9884-2:1999,https://www.iso.org/standard/17765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 11897:1999,https://www.iso.org/standard/3242.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 15119:2000,https://www.iso.org/standard/26435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 15867:2003,https://www.iso.org/standard/29323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 23560:2015,https://www.iso.org/standard/65221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4710:2000,https://www.iso.org/standard/23234.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 7348:1992,https://www.iso.org/standard/14032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 7458:2004,https://www.iso.org/standard/35606.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 7459:2004,https://www.iso.org/standard/35615.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 8106:2004,https://www.iso.org/standard/35616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 8113:2004,https://www.iso.org/standard/35617.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9008:1991,https://www.iso.org/standard/16550.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9009:1991,https://www.iso.org/standard/16551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9057:1991,https://www.iso.org/standard/16626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9057:1991/Cor 1:2006,https://www.iso.org/standard/44138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9058:2008,https://www.iso.org/standard/41965.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-1:2005,https://www.iso.org/standard/37703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-2:2005,https://www.iso.org/standard/37704.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-2:2005/Cor 1:2009,https://www.iso.org/standard/55364.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-3:2005,https://www.iso.org/standard/37705.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-3:2005/Cor 1:2009,https://www.iso.org/standard/54817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-4:2005,https://www.iso.org/standard/37706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-4:2005/Cor 1:2009,https://www.iso.org/standard/54818.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-5:2005,https://www.iso.org/standard/37707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-6:2005,https://www.iso.org/standard/37708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-7:2005,https://www.iso.org/standard/37709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-8:2005,https://www.iso.org/standard/37710.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-9:2005,https://www.iso.org/standard/37711.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-10:2005,https://www.iso.org/standard/37712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-11:2005,https://www.iso.org/standard/37713.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-12:2005,https://www.iso.org/standard/37714.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-13:2005,https://www.iso.org/standard/37715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-14:2005,https://www.iso.org/standard/37716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9100-14:2005/Cor 1:2008,https://www.iso.org/standard/52376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 9727-1:2007,https://www.iso.org/standard/36660.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-2:2007,https://www.iso.org/standard/36662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-3:2007,https://www.iso.org/standard/36663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-4:2007,https://www.iso.org/standard/36664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-5:2007,https://www.iso.org/standard/36666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-6:2007,https://www.iso.org/standard/36667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-7:2007,https://www.iso.org/standard/36668.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9885:1991,https://www.iso.org/standard/17766.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 10106:2003,https://www.iso.org/standard/34945.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/DIS 10106,https://www.iso.org/standard/69750.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 10718:2015,https://www.iso.org/standard/65028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 12818:2013,https://www.iso.org/standard/62019.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 12821:2013,https://www.iso.org/standard/62017.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO/CD 12821,https://www.iso.org/standard/74278.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 12822:2015,https://www.iso.org/standard/62018.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO/CD 12822,https://www.iso.org/standard/74279.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 63,https://www.iso.org/contents/data/committee/04/94/49492/x/catalogue/ -ISO 16419:2013,https://www.iso.org/standard/56717.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 16420:2013,https://www.iso.org/standard/56718.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 17727:2012,https://www.iso.org/standard/60315.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/NP 17727,https://www.iso.org/standard/69753.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 21128:2006,https://www.iso.org/standard/35672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 90-1:1997,https://www.iso.org/standard/23336.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO 90-2:1997,https://www.iso.org/standard/3743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO 1361:1997,https://www.iso.org/standard/22786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO 10193:2000,https://www.iso.org/standard/31448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO 10653:1993,https://www.iso.org/standard/18748.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO 10654:1993,https://www.iso.org/standard/18749.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO/TR 11761:1992,https://www.iso.org/standard/20081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO/TR 11762:1992,https://www.iso.org/standard/20082.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO 90-3:2000,https://www.iso.org/standard/25360.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO 10154:1991,https://www.iso.org/standard/18149.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 52,https://www.iso.org/contents/data/committee/04/89/48944/x/catalogue/ -ISO 13106:2014,https://www.iso.org/standard/52836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15750-1:2002,https://www.iso.org/standard/33303.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 15750-2:2002,https://www.iso.org/standard/33304.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 15750-3:2002,https://www.iso.org/standard/33305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 20848-1:2006,https://www.iso.org/standard/43933.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 20848-2:2006,https://www.iso.org/standard/43935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 20848-3:2006,https://www.iso.org/standard/43936.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/DIS 20848-3,https://www.iso.org/standard/70252.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO/TS 24533:2012,https://www.iso.org/standard/46422.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 26683-1:2013,https://www.iso.org/standard/61000.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 26683-2:2013,https://www.iso.org/standard/57600.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 204,https://www.iso.org/contents/data/committee/05/47/54706/x/catalogue/ -ISO 668:2013,https://www.iso.org/standard/59673.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 668:2013/Amd 1:2016,https://www.iso.org/standard/65916.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 668:2013/Amd 2:2016,https://www.iso.org/standard/67193.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 668:2013/DAmd 3,https://www.iso.org/standard/71633.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 830:1999,https://www.iso.org/standard/1238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104,https://www.iso.org/contents/data/committee/05/11/51156/x/catalogue/ -ISO 830:1999/Cor 1:2001,https://www.iso.org/standard/35234.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104,https://www.iso.org/contents/data/committee/05/11/51156/x/catalogue/ -ISO 1161:2016,https://www.iso.org/standard/65553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 1496-1:2013,https://www.iso.org/standard/59672.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 1496-1:2013/Amd 1:2016,https://www.iso.org/standard/65915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 1496-2:2008,https://www.iso.org/standard/45621.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO/DIS 1496-2,https://www.iso.org/standard/67458.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 1496-3:1995,https://www.iso.org/standard/3047.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 1496-3:1995/Amd 1:2006,https://www.iso.org/standard/40904.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO/DIS 1496-3,https://www.iso.org/standard/67457.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 1496-4:1991,https://www.iso.org/standard/6082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 1496-4:1991/Amd 1:1994,https://www.iso.org/standard/22489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 1496-4:1991/Cor 1:2006,https://www.iso.org/standard/43937.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 1496-5:1991,https://www.iso.org/standard/6084.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 1496-5:1991/Amd 1:1993,https://www.iso.org/standard/20443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 1496-5:1991/Amd 2:1994,https://www.iso.org/standard/20444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO/DIS 1496-5,https://www.iso.org/standard/67072.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 3874:2017,https://www.iso.org/standard/63826.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 6346:1995,https://www.iso.org/standard/20453.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 6346:1995/Amd 3:2012,https://www.iso.org/standard/59778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 6346:1995/CD Amd 1,https://www.iso.org/standard/65677.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 8323:1985,https://www.iso.org/standard/15457.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 9669:1990,https://www.iso.org/standard/17516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 9669:1990/Amd 1:1992,https://www.iso.org/standard/17517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 9711-1:1990,https://www.iso.org/standard/17568.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 9897:1997,https://www.iso.org/standard/20455.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 9897:1997/Cor 1:2001,https://www.iso.org/standard/35699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 9897-1,https://www.iso.org/standard/53417.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 9897-2,https://www.iso.org/standard/63720.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 9897-5,https://www.iso.org/standard/63723.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 9897-6,https://www.iso.org/standard/63724.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 10368:2006,https://www.iso.org/standard/36595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 10374:1991,https://www.iso.org/standard/18435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 10374:1991/Amd 1:1995,https://www.iso.org/standard/20452.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO/CD TS 10891,https://www.iso.org/standard/73777.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO/TS 10891:2009,https://www.iso.org/standard/46282.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO/TS 10891:2009/Cor 1:2009,https://www.iso.org/standard/54020.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 14829:2002,https://www.iso.org/standard/24771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO/AWI TR 15069,https://www.iso.org/standard/74299.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO/TR 15069:1997,https://www.iso.org/standard/26366.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO/NP TR 15070,https://www.iso.org/standard/66461.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO/TR 15070:1996,https://www.iso.org/standard/26367.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO/TR 15070:1996/Amd 1:2005,https://www.iso.org/standard/40777.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO/TR 15070:1996/Amd 2:2007,https://www.iso.org/standard/44087.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 1,https://www.iso.org/contents/data/committee/05/11/51166/x/catalogue/ -ISO 17363:2013,https://www.iso.org/standard/57596.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 17712:2013,https://www.iso.org/standard/62464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104,https://www.iso.org/contents/data/committee/05/11/51156/x/catalogue/ -ISO 18185-1:2007,https://www.iso.org/standard/41125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 18185-2:2007,https://www.iso.org/standard/40807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 18185-3:2015,https://www.iso.org/standard/62268.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 18185-4:2007,https://www.iso.org/standard/40809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 18185-5:2007,https://www.iso.org/standard/40810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO 18186:2011,https://www.iso.org/standard/54576.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO/TS 18625:2017,https://www.iso.org/standard/63052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 104/SC 4,https://www.iso.org/contents/data/committee/05/11/51188/x/catalogue/ -ISO/CD 20854,https://www.iso.org/standard/69361.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 104/SC 2,https://www.iso.org/contents/data/committee/05/11/51174/x/catalogue/ -ISO 445:2013,https://www.iso.org/standard/61915.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 6780:2003,https://www.iso.org/standard/30524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 8611-1:2011,https://www.iso.org/standard/50114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 8611-2:2011,https://www.iso.org/standard/50115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 8611-2:2011/Amd 1:2016,https://www.iso.org/standard/64800.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 8611-3:2011,https://www.iso.org/standard/50116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO/TS 8611-4:2013,https://www.iso.org/standard/57559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 12776:2008,https://www.iso.org/standard/45542.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 12777-1:1994,https://www.iso.org/standard/1717.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 12777-1:1994/Amd 1:2008,https://www.iso.org/standard/45720.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 12777-2:2000,https://www.iso.org/standard/33029.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 12777-3:2002,https://www.iso.org/standard/32073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 13194:2011,https://www.iso.org/standard/53478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 15629:2002,https://www.iso.org/standard/27924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 18333:2014,https://www.iso.org/standard/61430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 18334:2010,https://www.iso.org/standard/52147.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 18613:2014,https://www.iso.org/standard/62562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 51,https://www.iso.org/contents/data/committee/04/89/48928/x/catalogue/ -ISO 4115:1997,https://www.iso.org/standard/22885.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 4117:1993,https://www.iso.org/standard/9866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 4118:2016,https://www.iso.org/standard/62014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 4128:1985,https://www.iso.org/standard/9883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 4170:1995,https://www.iso.org/standard/20263.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 4171:1993,https://www.iso.org/standard/9941.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 6517:2013,https://www.iso.org/standard/54746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 8058:1999,https://www.iso.org/standard/1522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 8097:2001,https://www.iso.org/standard/32356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 9469:1991,https://www.iso.org/standard/17199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 10327:2014,https://www.iso.org/standard/62015.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 11242:1996,https://www.iso.org/standard/19223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 16412:2005,https://www.iso.org/standard/37870.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 19281:2016,https://www.iso.org/standard/64256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/CD 20291-1,https://www.iso.org/standard/72914.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/CD 20291-2,https://www.iso.org/standard/72915.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO/DIS 21894,https://www.iso.org/standard/72092.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 20/SC 9,https://www.iso.org/contents/data/committee/04/65/46564/x/catalogue/ -ISO 2206:1987,https://www.iso.org/standard/7010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 2233:2000,https://www.iso.org/standard/32409.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 2234:2000,https://www.iso.org/standard/32410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 2244:2000,https://www.iso.org/standard/32411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 2247:2000,https://www.iso.org/standard/32412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 2248:1985,https://www.iso.org/standard/7062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 2873:2000,https://www.iso.org/standard/32413.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 2875:2000,https://www.iso.org/standard/32414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 2876:1985,https://www.iso.org/standard/7898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 4178:1980,https://www.iso.org/standard/9948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 4180:2009,https://www.iso.org/standard/46598.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO/CD 4180,https://www.iso.org/standard/69054.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 8318:2000,https://www.iso.org/standard/32415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 8474:1986,https://www.iso.org/standard/15682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 8768:1987,https://www.iso.org/standard/16181.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 10531:1992,https://www.iso.org/standard/18600.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 12048:1994,https://www.iso.org/standard/20810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 13355:2016,https://www.iso.org/standard/62098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 18616-1:2016,https://www.iso.org/standard/63018.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -ISO 18616-2:2016,https://www.iso.org/standard/63025.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 122,https://www.iso.org/contents/data/committee/05/20/52040/x/catalogue/ -IWA 16:2015,https://www.iso.org/standard/67844.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 21898:2004,https://www.iso.org/standard/36804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 122/SC 3,https://www.iso.org/contents/data/committee/05/20/52068/x/catalogue/ -ISO 4921:2000,https://www.iso.org/standard/33711.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 10782-1:1998,https://www.iso.org/standard/24083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 10,https://www.iso.org/contents/data/committee/66/95/669565/x/catalogue/ -ISO 1130:1975,https://www.iso.org/standard/5663.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 1833-1:2006,https://www.iso.org/standard/40561.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-1:2006/Cor 1:2009,https://www.iso.org/standard/55506.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-1,https://www.iso.org/standard/74881.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-2:2006,https://www.iso.org/standard/40562.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-2,https://www.iso.org/standard/74882.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-3:2006,https://www.iso.org/standard/40557.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 1833-3,https://www.iso.org/standard/73901.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-4:2017,https://www.iso.org/standard/70173.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-5:2006,https://www.iso.org/standard/40564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-6:2007,https://www.iso.org/standard/40565.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 1833-6,https://www.iso.org/standard/71107.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-7:2017,https://www.iso.org/standard/70285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-8:2006,https://www.iso.org/standard/40569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-9:2006,https://www.iso.org/standard/40570.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-9,https://www.iso.org/standard/74876.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-10:2006,https://www.iso.org/standard/40571.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-10,https://www.iso.org/standard/74087.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-11:2017,https://www.iso.org/standard/70286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-12:2006,https://www.iso.org/standard/40573.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 1833-12,https://www.iso.org/standard/73570.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-13:2006,https://www.iso.org/standard/40574.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-13,https://www.iso.org/standard/74877.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-14:2006,https://www.iso.org/standard/40575.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-14,https://www.iso.org/standard/74878.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-15:2006,https://www.iso.org/standard/40576.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-15,https://www.iso.org/standard/74879.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-16:2006,https://www.iso.org/standard/40577.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 1833-16,https://www.iso.org/standard/73727.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-17:2006,https://www.iso.org/standard/40578.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-17,https://www.iso.org/standard/74880.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-18:2006,https://www.iso.org/standard/40579.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 1833-18,https://www.iso.org/standard/73730.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-19:2006,https://www.iso.org/standard/40580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-20:2009,https://www.iso.org/standard/42996.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 1833-20,https://www.iso.org/standard/70287.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-21:2006,https://www.iso.org/standard/40907.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 1833-21,https://www.iso.org/standard/74086.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-22:2013,https://www.iso.org/standard/42995.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-24:2010,https://www.iso.org/standard/44340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-25:2013,https://www.iso.org/standard/54128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1833-26:2013,https://www.iso.org/standard/56205.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 1833-27,https://www.iso.org/standard/66286.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1973:1995,https://www.iso.org/standard/6703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 5079:1995,https://www.iso.org/standard/11101.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6741-1:1989,https://www.iso.org/standard/13199.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6741-2:1987,https://www.iso.org/standard/13200.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6741-3:1987,https://www.iso.org/standard/13201.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6989:1981,https://www.iso.org/standard/13551.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 8159:1987,https://www.iso.org/standard/15243.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO/TR 11827:2012,https://www.iso.org/standard/50853.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 13029:2012,https://www.iso.org/standard/52393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 14362-1:2017,https://www.iso.org/standard/68330.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 14362-3:2017,https://www.iso.org/standard/68331.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 14389:2014,https://www.iso.org/standard/54711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 16549:2004,https://www.iso.org/standard/30371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO/FDIS 20418-1,https://www.iso.org/standard/67945.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 20418-2,https://www.iso.org/standard/68981.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 20418-3,https://www.iso.org/standard/72389.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 21084,https://www.iso.org/standard/69894.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 21915-1,https://www.iso.org/standard/73979.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 21915-2,https://www.iso.org/standard/73980.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 21915-3,https://www.iso.org/standard/73981.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 137:2015,https://www.iso.org/standard/61688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 920:1976,https://www.iso.org/standard/5331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 1136:2015,https://www.iso.org/standard/61689.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2370:1980,https://www.iso.org/standard/7209.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO/CD 2370,https://www.iso.org/standard/72856.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2403:2014,https://www.iso.org/standard/55556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2646:1974,https://www.iso.org/standard/7631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2647:1973,https://www.iso.org/standard/7632.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2648:1974,https://www.iso.org/standard/7633.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO/NP 2648,https://www.iso.org/standard/73541.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 3060:1974,https://www.iso.org/standard/8170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 4912:1981,https://www.iso.org/standard/10928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 4913:1981,https://www.iso.org/standard/10929.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6938:2012,https://www.iso.org/standard/57474.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 8115:1986,https://www.iso.org/standard/15165.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 8115-3:1995,https://www.iso.org/standard/1231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 10306:2014,https://www.iso.org/standard/55570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 12027:2012,https://www.iso.org/standard/51165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 17751-1:2016,https://www.iso.org/standard/62692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17751-2:2016,https://www.iso.org/standard/62693.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18068:2014,https://www.iso.org/standard/61286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 18596:2015,https://www.iso.org/standard/62981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO/CD 20921,https://www.iso.org/standard/69461.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 2076:2013,https://www.iso.org/standard/56206.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/FDIS 20754,https://www.iso.org/standard/68980.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO/DIS 20920,https://www.iso.org/standard/69460.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 105-A01:2010,https://www.iso.org/standard/45028.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A02:1993,https://www.iso.org/standard/3785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A02:1993/Cor 1:1997,https://www.iso.org/standard/27965.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A02:1993/Cor 2:2005,https://www.iso.org/standard/42126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A03:1993,https://www.iso.org/standard/3787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A03:1993/Cor 1:1997,https://www.iso.org/standard/27966.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A03:1993/Cor 2:2005,https://www.iso.org/standard/42127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A04:1989,https://www.iso.org/standard/3788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A05:1996,https://www.iso.org/standard/3789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A05:1996/Cor 1:1997,https://www.iso.org/standard/27987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A05:1996/Cor 2:2005,https://www.iso.org/standard/43344.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A06:1995,https://www.iso.org/standard/3790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A08:2001,https://www.iso.org/standard/31721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-A11:2012,https://www.iso.org/standard/42329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B01:2014,https://www.iso.org/standard/65210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B02:2014,https://www.iso.org/standard/65209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B03:2017,https://www.iso.org/standard/73660.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B04:1994,https://www.iso.org/standard/20025.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B05:1993,https://www.iso.org/standard/22232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B06:1998,https://www.iso.org/standard/26493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B06:1998/Amd 1:2002,https://www.iso.org/standard/33048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B07:2009,https://www.iso.org/standard/1868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B08:1995,https://www.iso.org/standard/21206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B08:1995/Amd 1:2009,https://www.iso.org/standard/51149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-B10:2011,https://www.iso.org/standard/38263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-C06:2010,https://www.iso.org/standard/51276.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-C07:1999,https://www.iso.org/standard/3901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-C08:2010,https://www.iso.org/standard/51574.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-C09:2001,https://www.iso.org/standard/33204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-C09:2001/Amd 1:2003,https://www.iso.org/standard/37417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-C10:2006,https://www.iso.org/standard/31775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-C12:2004,https://www.iso.org/standard/37645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-D01:2010,https://www.iso.org/standard/44688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-D02:2016,https://www.iso.org/standard/65211.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E01:2013,https://www.iso.org/standard/57962.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E02:2013,https://www.iso.org/standard/52231.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E03:2010,https://www.iso.org/standard/52252.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E04:2013,https://www.iso.org/standard/57973.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E05:2010,https://www.iso.org/standard/55898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E06:2006,https://www.iso.org/standard/40852.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E07:2010,https://www.iso.org/standard/52232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E08:1994,https://www.iso.org/standard/21299.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E09:2010,https://www.iso.org/standard/52233.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E10:1994,https://www.iso.org/standard/21300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E11:1994,https://www.iso.org/standard/21301.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E12:2010,https://www.iso.org/standard/52234.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E13:1994,https://www.iso.org/standard/21302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E13:1994/Cor 1:1999,https://www.iso.org/standard/31913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E14:1994,https://www.iso.org/standard/21303.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-E16:2006,https://www.iso.org/standard/40425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F01:2001,https://www.iso.org/standard/32944.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F02:2009,https://www.iso.org/standard/42323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F03:2001,https://www.iso.org/standard/32946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F04:2001,https://www.iso.org/standard/32947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F05:2001,https://www.iso.org/standard/32948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F06:2000,https://www.iso.org/standard/30382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F07:2001,https://www.iso.org/standard/32949.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F09:2009,https://www.iso.org/standard/42324.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F10:1989,https://www.iso.org/standard/3853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-F10:1989/Amd 1:2009,https://www.iso.org/standard/51361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-G01:2016,https://www.iso.org/standard/62599.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-G02:1993,https://www.iso.org/standard/20027.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-G02:1993/Cor 1:1995,https://www.iso.org/standard/26418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-G02:1993/Cor 2:2009,https://www.iso.org/standard/54934.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-G03:1993,https://www.iso.org/standard/20028.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-G04:2016,https://www.iso.org/standard/42547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-J01:1997,https://www.iso.org/standard/3862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-J02:1997,https://www.iso.org/standard/21984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-J02:1997/Cor 1:1998,https://www.iso.org/standard/30342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-J03:2009,https://www.iso.org/standard/51385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-J05:2007,https://www.iso.org/standard/41880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-N01:1993,https://www.iso.org/standard/3865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-N02:1993,https://www.iso.org/standard/3866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-N03:1993,https://www.iso.org/standard/3867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-N04:1993,https://www.iso.org/standard/3868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-N05:1993,https://www.iso.org/standard/3869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-P01:1993,https://www.iso.org/standard/3871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-P02:2002,https://www.iso.org/standard/36881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-S01:1993,https://www.iso.org/standard/3874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-S02:1993,https://www.iso.org/standard/3875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-S03:1993,https://www.iso.org/standard/3876.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X01:1993,https://www.iso.org/standard/22235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X02:1993,https://www.iso.org/standard/22236.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X04:1994,https://www.iso.org/standard/21297.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X05:1994,https://www.iso.org/standard/21298.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X06:1994,https://www.iso.org/standard/21304.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X07:1994,https://www.iso.org/standard/21305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X08:1994,https://www.iso.org/standard/21306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X09:1993,https://www.iso.org/standard/22237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X10:1993,https://www.iso.org/standard/22238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X11:1994,https://www.iso.org/standard/21307.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X12:2016,https://www.iso.org/standard/65207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X13:1994,https://www.iso.org/standard/21292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X14:1994,https://www.iso.org/standard/21294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X16:2016,https://www.iso.org/standard/65208.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-X18:2007,https://www.iso.org/standard/42097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z01:1993,https://www.iso.org/standard/3895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z02:1993,https://www.iso.org/standard/3896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z03:1996,https://www.iso.org/standard/3897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z04:1995,https://www.iso.org/standard/3898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z05:1996,https://www.iso.org/standard/3899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z06:1998,https://www.iso.org/standard/3900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z07:1995,https://www.iso.org/standard/3905.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z08:1995,https://www.iso.org/standard/3902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z09:1995,https://www.iso.org/standard/3903.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z10:1997,https://www.iso.org/standard/23683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 105-Z11:1998,https://www.iso.org/standard/22137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 139:2005,https://www.iso.org/standard/35179.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 139:2005/Amd 1:2011,https://www.iso.org/standard/45307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 1144:2016,https://www.iso.org/standard/70774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2913:1975,https://www.iso.org/standard/7956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2915:1975,https://www.iso.org/standard/7957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2916:1975,https://www.iso.org/standard/7958.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2947:1973,https://www.iso.org/standard/7996.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 3071:2005,https://www.iso.org/standard/35252.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 3071,https://www.iso.org/standard/74203.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 3072:1975,https://www.iso.org/standard/8194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 3073:1975,https://www.iso.org/standard/8195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 3074:2014,https://www.iso.org/standard/61784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 3175-1:2017,https://www.iso.org/standard/65153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 3175-2:2017,https://www.iso.org/standard/65154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 3175-3:2017,https://www.iso.org/standard/65155.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 3175-4:2003,https://www.iso.org/standard/28998.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 3175-4:2003/Cor 1:2009,https://www.iso.org/standard/54874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/FDIS 3175-4,https://www.iso.org/standard/65156.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/CD 3175-5,https://www.iso.org/standard/70812.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/CD 3175-6,https://www.iso.org/standard/70813.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 3758:2012,https://www.iso.org/standard/42918.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/AWI 3758,https://www.iso.org/standard/74401.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 3998:1977,https://www.iso.org/standard/9665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 4880:1997,https://www.iso.org/standard/24009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 4915:1991,https://www.iso.org/standard/10932.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 4916:1991,https://www.iso.org/standard/10934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 5077:2007,https://www.iso.org/standard/41877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 5085-1:1989,https://www.iso.org/standard/11106.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 5089:1977,https://www.iso.org/standard/11110.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 6330:2012,https://www.iso.org/standard/43044.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 6348:1980,https://www.iso.org/standard/12651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO/TR 9240:1992,https://www.iso.org/standard/16872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 10528:1995,https://www.iso.org/standard/18597.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 10617:2010,https://www.iso.org/standard/46021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 11092:2014,https://www.iso.org/standard/65962.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 11721-1:2001,https://www.iso.org/standard/33808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 11721-2:2003,https://www.iso.org/standard/38289.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/TR 12116:2008,https://www.iso.org/standard/51205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 12945-1:2000,https://www.iso.org/standard/33509.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 12945-2:2000,https://www.iso.org/standard/22776.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 12945-3:2014,https://www.iso.org/standard/55060.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13629-1:2012,https://www.iso.org/standard/54097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 13629-2:2014,https://www.iso.org/standard/57949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 14184-1:2011,https://www.iso.org/standard/55524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 14184-2:2011,https://www.iso.org/standard/55525.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 14419:2010,https://www.iso.org/standard/54877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 15487:2009,https://www.iso.org/standard/52638.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/DIS 15487,https://www.iso.org/standard/67602.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 15496:2004,https://www.iso.org/standard/27920.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 15496:2004/Cor 1:2006,https://www.iso.org/standard/43763.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/FDIS 15496,https://www.iso.org/standard/65150.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 15625:2014,https://www.iso.org/standard/55447.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 15797:2017,https://www.iso.org/standard/65152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 16322-1:2005,https://www.iso.org/standard/32187.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 16322-2:2005,https://www.iso.org/standard/32188.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 16322-2:2005/Cor 1:2007,https://www.iso.org/standard/46119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 16322-3:2005,https://www.iso.org/standard/34471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/TR 16323:2003,https://www.iso.org/standard/33140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 16373-1:2015,https://www.iso.org/standard/58022.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 16373-2:2014,https://www.iso.org/standard/57906.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 16373-3:2014,https://www.iso.org/standard/56535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 16533:2014,https://www.iso.org/standard/57061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17299-1:2014,https://www.iso.org/standard/59537.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17299-2:2014,https://www.iso.org/standard/59538.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17299-3:2014,https://www.iso.org/standard/59539.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17299-4:2015,https://www.iso.org/standard/59540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17299-5:2014,https://www.iso.org/standard/61711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17617:2014,https://www.iso.org/standard/60156.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17881-1:2016,https://www.iso.org/standard/63164.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 17881-2:2016,https://www.iso.org/standard/63165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/PRF TR 17881-3,https://www.iso.org/standard/70258.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18074:2015,https://www.iso.org/standard/61292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18184:2014,https://www.iso.org/standard/61722.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 18184,https://www.iso.org/standard/71292.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18254-1:2016,https://www.iso.org/standard/70906.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 18254-2,https://www.iso.org/standard/69536.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18264:2016,https://www.iso.org/standard/61909.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18695:2007,https://www.iso.org/standard/38806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 18696:2006,https://www.iso.org/standard/38807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 18696:2006/Cor 1:2009,https://www.iso.org/standard/55040.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 18782:2015,https://www.iso.org/standard/63358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 20645:2004,https://www.iso.org/standard/35499.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 20743:2013,https://www.iso.org/standard/59586.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 20852,https://www.iso.org/standard/69359.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 21046,https://www.iso.org/standard/69734.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO/DIS 21232,https://www.iso.org/standard/70163.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 21326,https://www.iso.org/standard/70550.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 21340:2017,https://www.iso.org/standard/70617.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/CD 21701,https://www.iso.org/standard/71364.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 22958:2005,https://www.iso.org/standard/36566.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 22958:2005/Cor 1:2009,https://www.iso.org/standard/55018.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 23232:2009,https://www.iso.org/standard/50923.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 30023:2010,https://www.iso.org/standard/45786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 2:1973,https://www.iso.org/standard/3563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 1139:1973,https://www.iso.org/standard/5677.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2060:1994,https://www.iso.org/standard/6837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2061:2015,https://www.iso.org/standard/65146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 2062:2009,https://www.iso.org/standard/45642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6741-1:1989,https://www.iso.org/standard/13199.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6741-2:1987,https://www.iso.org/standard/13200.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6741-3:1987,https://www.iso.org/standard/13201.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 6939:1988,https://www.iso.org/standard/13478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 8159:1987,https://www.iso.org/standard/15243.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 8160:1987,https://www.iso.org/standard/15244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 10132:1993,https://www.iso.org/standard/18120.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 10290:1993,https://www.iso.org/standard/18332.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO/DIS 10290,https://www.iso.org/standard/71879.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 17202:2002,https://www.iso.org/standard/30582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 18066:2015,https://www.iso.org/standard/61284.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 18067:2015,https://www.iso.org/standard/61285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 23733:2007,https://www.iso.org/standard/36961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 675:2014,https://www.iso.org/standard/65157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 811:1981,https://www.iso.org/standard/5156.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO/FDIS 811,https://www.iso.org/standard/65149.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 2313:1972,https://www.iso.org/standard/7144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 2959:2011,https://www.iso.org/standard/59544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 3005:1978,https://www.iso.org/standard/8077.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 3572:1976,https://www.iso.org/standard/8977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 3759:2011,https://www.iso.org/standard/57309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 3801:1977,https://www.iso.org/standard/9335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 4920:2012,https://www.iso.org/standard/50706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 5084:1996,https://www.iso.org/standard/23348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 6940:2004,https://www.iso.org/standard/35665.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 6941:2003,https://www.iso.org/standard/35667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 7211-1:1984,https://www.iso.org/standard/13841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 7211-2:1984,https://www.iso.org/standard/13842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 7211-3:1984,https://www.iso.org/standard/13843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 7211-4:1984,https://www.iso.org/standard/13844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 7211-5:1984,https://www.iso.org/standard/13845.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO/DIS 7211-5,https://www.iso.org/standard/74893.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 7211-6:1984,https://www.iso.org/standard/13846.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO/DIS 7211-6,https://www.iso.org/standard/74894.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 7768:2009,https://www.iso.org/standard/52694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 7769:2009,https://www.iso.org/standard/52693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 7770:2009,https://www.iso.org/standard/52692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 7771:1985,https://www.iso.org/standard/14639.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 8388:1998,https://www.iso.org/standard/15553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 8498:1990,https://www.iso.org/standard/15708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 8499:2003,https://www.iso.org/standard/37071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 9073-1:1989,https://www.iso.org/standard/16650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-2:1995,https://www.iso.org/standard/16652.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-2:1995/Cor 1:1998,https://www.iso.org/standard/30911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-3:1989,https://www.iso.org/standard/16653.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-4:1997,https://www.iso.org/standard/24985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-5:2008,https://www.iso.org/standard/44285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-6:2000,https://www.iso.org/standard/33748.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-7:1995,https://www.iso.org/standard/16657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-8:1995,https://www.iso.org/standard/16658.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-9:2008,https://www.iso.org/standard/41375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-10:2003,https://www.iso.org/standard/30167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-11:2002,https://www.iso.org/standard/30168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-12:2002,https://www.iso.org/standard/30169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-13:2006,https://www.iso.org/standard/39393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-14:2006,https://www.iso.org/standard/39394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-15:2007,https://www.iso.org/standard/42093.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-16:2007,https://www.iso.org/standard/42094.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-17:2008,https://www.iso.org/standard/42095.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9073-18:2007,https://www.iso.org/standard/42096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9092:2011,https://www.iso.org/standard/50397.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 9092,https://www.iso.org/standard/71369.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9237:1995,https://www.iso.org/standard/16869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 9354:1989,https://www.iso.org/standard/17038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 9354:1989/Cor 1:2000,https://www.iso.org/standard/34552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO 9865:1991,https://www.iso.org/standard/17742.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 9866-1:1991,https://www.iso.org/standard/17743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 9866-2:1991,https://www.iso.org/standard/17744.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 9867:2009,https://www.iso.org/standard/52983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 10047:1993,https://www.iso.org/standard/18012.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 11224:2003,https://www.iso.org/standard/23754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 12138:2017,https://www.iso.org/standard/65147.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 12947-1:1998,https://www.iso.org/standard/1931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 12947-1:1998/Cor 1:2002,https://www.iso.org/standard/37372.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 12947-2:2016,https://www.iso.org/standard/61058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 12947-3:1998,https://www.iso.org/standard/23620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 12947-3:1998/Cor 1:2002,https://www.iso.org/standard/37374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 12947-4:1998,https://www.iso.org/standard/23621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 12947-4:1998/Cor 1:2002,https://www.iso.org/standard/37375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13015:2013,https://www.iso.org/standard/52336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13934-1:2013,https://www.iso.org/standard/60676.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13934-2:2014,https://www.iso.org/standard/60677.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13935-1:2014,https://www.iso.org/standard/60678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13935-2:2014,https://www.iso.org/standard/60679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13936-1:2004,https://www.iso.org/standard/36416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13936-2:2004,https://www.iso.org/standard/36357.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13936-3:2005,https://www.iso.org/standard/37219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13937-1:2000,https://www.iso.org/standard/23369.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13937-1:2000/Cor 1:2004,https://www.iso.org/standard/40973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13937-2:2000,https://www.iso.org/standard/23370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13937-3:2000,https://www.iso.org/standard/23371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13937-4:2000,https://www.iso.org/standard/23373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13938-1:1999,https://www.iso.org/standard/23374.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO/DIS 13938-1,https://www.iso.org/standard/74895.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13938-2:1999,https://www.iso.org/standard/23375.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO/DIS 13938-2,https://www.iso.org/standard/74896.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 16847:2016,https://www.iso.org/standard/57817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 17608:2015,https://www.iso.org/standard/60145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 23,https://www.iso.org/contents/data/committee/04/83/48334/x/catalogue/ -ISO 18080-1:2015,https://www.iso.org/standard/61382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18080-2:2015,https://www.iso.org/standard/61383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18080-3:2015,https://www.iso.org/standard/61384.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18080-4:2015,https://www.iso.org/standard/61385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18103:2015,https://www.iso.org/standard/61439.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/FDIS 20158,https://www.iso.org/standard/69098.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 20932-1,https://www.iso.org/standard/69489.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO/DIS 20932-2,https://www.iso.org/standard/69490.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO/DIS 20932-3,https://www.iso.org/standard/69491.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 22198:2006,https://www.iso.org/standard/40768.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 23231:2008,https://www.iso.org/standard/41398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 23606:2009,https://www.iso.org/standard/41706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 20,https://www.iso.org/contents/data/committee/04/83/48314/x/catalogue/ -ISO/TR 24697:2011,https://www.iso.org/standard/42436.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 36:2017,https://www.iso.org/standard/72773.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/NP 36,https://www.iso.org/standard/74942.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1419:1995,https://www.iso.org/standard/6006.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 1419,https://www.iso.org/standard/70221.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 1420:2016,https://www.iso.org/standard/61707.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 1421:2016,https://www.iso.org/standard/65588.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2231:1989,https://www.iso.org/standard/7037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2286-1:2016,https://www.iso.org/standard/65589.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2286-2:2016,https://www.iso.org/standard/65590.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2286-3:2016,https://www.iso.org/standard/65591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2411:2017,https://www.iso.org/standard/70220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3011:1997,https://www.iso.org/standard/20150.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3303-1:2012,https://www.iso.org/standard/59656.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3303-2:2012,https://www.iso.org/standard/59657.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4637:1979,https://www.iso.org/standard/10594.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4646:1989,https://www.iso.org/standard/10608.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4674-1:2016,https://www.iso.org/standard/65592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4674-2:1998,https://www.iso.org/standard/21827.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4675:2017,https://www.iso.org/standard/70222.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 5470-1:2016,https://www.iso.org/standard/68002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 5470-2:2003,https://www.iso.org/standard/37847.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 5473:1997,https://www.iso.org/standard/2182.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 5978:1990,https://www.iso.org/standard/12171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 5979:1982,https://www.iso.org/standard/12172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 5981:2007,https://www.iso.org/standard/40111.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6179:2017,https://www.iso.org/standard/70356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6450:2005,https://www.iso.org/standard/37848.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6451:1982,https://www.iso.org/standard/12807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6452:2007,https://www.iso.org/standard/43716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7229:2015,https://www.iso.org/standard/65594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7617-1:2001,https://www.iso.org/standard/23794.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7617-2:2003,https://www.iso.org/standard/37012.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7617-3:1988,https://www.iso.org/standard/14409.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7854:1995,https://www.iso.org/standard/14777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8095:1990,https://www.iso.org/standard/15134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8096:2005,https://www.iso.org/standard/35281.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8096:2005/Cor 1:2005,https://www.iso.org/standard/42708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 32100:2010,https://www.iso.org/standard/52830.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 32100,https://www.iso.org/standard/71078.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 1140:2012,https://www.iso.org/standard/56630.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1141:2012,https://www.iso.org/standard/56631.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1181:2004,https://www.iso.org/standard/36582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1346:2012,https://www.iso.org/standard/56632.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1968:2004,https://www.iso.org/standard/23038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1969:2004,https://www.iso.org/standard/36584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 2307:2010,https://www.iso.org/standard/52347.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 2307,https://www.iso.org/standard/72076.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 3505:1975,https://www.iso.org/standard/8860.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 4167:2006,https://www.iso.org/standard/33975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 5080:1994,https://www.iso.org/standard/22502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9554:2010,https://www.iso.org/standard/52378.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/NP 9554,https://www.iso.org/standard/72077.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 10325:2009,https://www.iso.org/standard/45958.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 10325,https://www.iso.org/standard/68944.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 10547:2009,https://www.iso.org/standard/45997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 10554:2009,https://www.iso.org/standard/45998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 10556:2009,https://www.iso.org/standard/46002.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 10572:2009,https://www.iso.org/standard/46003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/TS 14909:2012,https://www.iso.org/standard/53635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/TS 17920:2015,https://www.iso.org/standard/61014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18692:2007,https://www.iso.org/standard/38805.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 18692-1,https://www.iso.org/standard/70289.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 18692-2,https://www.iso.org/standard/70290.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/TS 19336:2015,https://www.iso.org/standard/64644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO/DIS 20615,https://www.iso.org/standard/68563.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9862:2005,https://www.iso.org/standard/37443.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 9863-1:2016,https://www.iso.org/standard/59641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 9863-2:1996,https://www.iso.org/standard/23854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 9864:2005,https://www.iso.org/standard/37444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10318-1:2015,https://www.iso.org/standard/44885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10318-1:2015/FDAmd 1,https://www.iso.org/standard/68880.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10318-2:2015,https://www.iso.org/standard/44886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10318-2:2015/FDAmd 1,https://www.iso.org/standard/68881.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10319:2015,https://www.iso.org/standard/57696.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10320:1999,https://www.iso.org/standard/24661.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/CD 10320,https://www.iso.org/standard/68728.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10321:2008,https://www.iso.org/standard/36524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10722:2007,https://www.iso.org/standard/45502.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/CD 10722,https://www.iso.org/standard/70847.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10769:2011,https://www.iso.org/standard/46082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10772:2012,https://www.iso.org/standard/46083.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10773:2011,https://www.iso.org/standard/46084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 10776:2012,https://www.iso.org/standard/46085.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 11058:2010,https://www.iso.org/standard/54545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/DIS 11058,https://www.iso.org/standard/70845.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 12236:2006,https://www.iso.org/standard/40762.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 12956:2010,https://www.iso.org/standard/54544.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/NP 12956,https://www.iso.org/standard/68308.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 12957-1:2005,https://www.iso.org/standard/36939.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/DIS 12957-1,https://www.iso.org/standard/69498.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 12957-2:2005,https://www.iso.org/standard/37997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 12958:2010,https://www.iso.org/standard/54546.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/WD 12958,https://www.iso.org/standard/70846.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/AWI 12958-1,https://www.iso.org/standard/74632.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/AWI 12958-2,https://www.iso.org/standard/74633.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/CD 12960,https://www.iso.org/standard/71924.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/TR 12960:1998,https://www.iso.org/standard/1431.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 13426-1:2003,https://www.iso.org/standard/36937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/DIS 13426-1,https://www.iso.org/standard/69497.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 13426-2:2005,https://www.iso.org/standard/36938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 13427:2014,https://www.iso.org/standard/57244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 13428:2005,https://www.iso.org/standard/36713.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 13431:1999,https://www.iso.org/standard/21996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 13433:2006,https://www.iso.org/standard/36718.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/NP TS 13434,https://www.iso.org/standard/71032.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/TS 13434:2008,https://www.iso.org/standard/42713.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 13437:1998,https://www.iso.org/standard/25121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/CD 13437,https://www.iso.org/standard/72245.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 13438:2004,https://www.iso.org/standard/36898.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/DIS 13438,https://www.iso.org/standard/65541.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/WD TR 18198,https://www.iso.org/standard/61736.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/DTR 18228-1,https://www.iso.org/standard/61817.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/DTR 18228-2,https://www.iso.org/standard/65542.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 18325:2015,https://www.iso.org/standard/62171.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/TS 19708:2007,https://www.iso.org/standard/39116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/TR 20432:2007,https://www.iso.org/standard/39423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/TR 20432:2007/Cor 1:2008,https://www.iso.org/standard/52742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO/FDIS 24576,https://www.iso.org/standard/70661.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 25619-1:2008,https://www.iso.org/standard/43037.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 25619-2:2015,https://www.iso.org/standard/65540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 221,https://www.iso.org/contents/data/committee/27/05/270590/x/catalogue/ -ISO 1889:2009,https://www.iso.org/standard/52990.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1890:2009,https://www.iso.org/standard/52989.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 2113:1996,https://www.iso.org/standard/25209.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 2113:1996/Cor 1:2003,https://www.iso.org/standard/37858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3344:1997,https://www.iso.org/standard/23274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 4602:2010,https://www.iso.org/standard/52867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 10122:2014,https://www.iso.org/standard/59254.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 10371:1993,https://www.iso.org/standard/18432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 15100:2000,https://www.iso.org/standard/25977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1887:2014,https://www.iso.org/standard/59249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1888:2006,https://www.iso.org/standard/43619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 2078:1993,https://www.iso.org/standard/6865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 2078:1993/Amd 1:2015,https://www.iso.org/standard/66694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 2558:2010,https://www.iso.org/standard/55463.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 2559:2011,https://www.iso.org/standard/59250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 2797:1986/DAmd 1,https://www.iso.org/standard/67731.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 2797:2017,https://www.iso.org/standard/74001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3341:2000,https://www.iso.org/standard/1934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3342:2011,https://www.iso.org/standard/59251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3343:2010,https://www.iso.org/standard/55464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3374:2000,https://www.iso.org/standard/26877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3375:2009,https://www.iso.org/standard/52868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3597-1:2003,https://www.iso.org/standard/31284.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3597-2:2003,https://www.iso.org/standard/31285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3597-3:2003,https://www.iso.org/standard/31286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3597-4:2003,https://www.iso.org/standard/31287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3598:2011,https://www.iso.org/standard/55461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3616:2001,https://www.iso.org/standard/33314.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3616:2001/Amd 1:2017,https://www.iso.org/standard/67732.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 4603:1993,https://www.iso.org/standard/10537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 4603:1993/Amd 1:2010,https://www.iso.org/standard/52873.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 4604:2011,https://www.iso.org/standard/59252.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 4606:1995,https://www.iso.org/standard/10541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 4900:2011,https://www.iso.org/standard/59253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 5025:1997/DAmd 1,https://www.iso.org/standard/67733.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 5025:2017,https://www.iso.org/standard/74000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 8516:2011,https://www.iso.org/standard/55465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 9163:2005,https://www.iso.org/standard/36288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 15039:2003,https://www.iso.org/standard/38717.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 15039:2003/Amd 1:2015,https://www.iso.org/standard/66695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 10119:2002,https://www.iso.org/standard/29777.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/CD 10119,https://www.iso.org/standard/75240.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 10548:2002,https://www.iso.org/standard/33312.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 10548:2002/Cor 1:2008,https://www.iso.org/standard/52375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 10618:2004,https://www.iso.org/standard/33313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 11566:1996,https://www.iso.org/standard/19518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 11567:1995,https://www.iso.org/standard/19519.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/DIS 11567,https://www.iso.org/standard/70573.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 13002:1998,https://www.iso.org/standard/1294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 13931:2013,https://www.iso.org/standard/54349.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 30012:2016,https://www.iso.org/standard/45770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 30012:2016/DAmd 1,https://www.iso.org/standard/72445.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 5232:1998,https://www.iso.org/standard/26571.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 72/SC 10,https://www.iso.org/contents/data/committee/66/95/669565/x/catalogue/ -ISO 9902-1:2001,https://www.iso.org/standard/27844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-1:2001/Amd 1:2009,https://www.iso.org/standard/46506.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-1:2001/Amd 2:2014,https://www.iso.org/standard/62374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-1:2016,https://www.iso.org/standard/65561.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11659-1:1995,https://www.iso.org/standard/1285.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO/CD 22291,https://www.iso.org/standard/73047.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 23771:2015,https://www.iso.org/standard/61978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 92:1976,https://www.iso.org/standard/3751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 93-1:2006,https://www.iso.org/standard/40270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 93-1:2006/Amd 1:2015,https://www.iso.org/standard/64593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 93-2:2006,https://www.iso.org/standard/40271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 93-2:2006/Amd 1:2014,https://www.iso.org/standard/64594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 94:1982,https://www.iso.org/standard/3758.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 96-1:2016,https://www.iso.org/standard/67510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 96-2:2009,https://www.iso.org/standard/43451.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 98:2001,https://www.iso.org/standard/25719.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 368:2017,https://www.iso.org/standard/72872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 1809:1977,https://www.iso.org/standard/6447.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 2187:1990,https://www.iso.org/standard/6986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 2205:1975,https://www.iso.org/standard/7008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 2572:1982,https://www.iso.org/standard/7533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 4105:1978,https://www.iso.org/standard/9846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 5234:2005,https://www.iso.org/standard/38584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 6173:1982,https://www.iso.org/standard/12423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 8114:1990,https://www.iso.org/standard/15164.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 9902-2:2001,https://www.iso.org/standard/27845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-2:2001/Amd 1:2009,https://www.iso.org/standard/46507.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-2:2001/Amd 2:2014,https://www.iso.org/standard/62375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-4:2001,https://www.iso.org/standard/27847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-4:2001/Amd 1:2009,https://www.iso.org/standard/46509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-4:2001/Amd 2:2014,https://www.iso.org/standard/62377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9903-1:2003,https://www.iso.org/standard/27639.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 9903-2:2003,https://www.iso.org/standard/27640.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 9904:2000,https://www.iso.org/standard/26971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 9947:2005,https://www.iso.org/standard/38585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 11111-2:2005,https://www.iso.org/standard/29934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-2:2005/Amd 1:2009,https://www.iso.org/standard/46514.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-2:2005/Amd 2:2016,https://www.iso.org/standard/65562.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-4:2005,https://www.iso.org/standard/29936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-4:2005/Amd 1:2009,https://www.iso.org/standard/46516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-4:2005/Amd 2:2016,https://www.iso.org/standard/65564.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 16853:2010,https://www.iso.org/standard/44928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 16854:2004,https://www.iso.org/standard/32464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 16875:2004,https://www.iso.org/standard/30491.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 18599:2015,https://www.iso.org/standard/62989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 18600:2015,https://www.iso.org/standard/62994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 20725:2004,https://www.iso.org/standard/35518.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 20726:2004,https://www.iso.org/standard/35519.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 20727:2004,https://www.iso.org/standard/35520.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 21485:2013,https://www.iso.org/standard/60958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 26243:2007,https://www.iso.org/standard/43452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 28239:2008,https://www.iso.org/standard/44592.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 141:1976,https://www.iso.org/standard/3967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 344:1981,https://www.iso.org/standard/4293.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 476:1982,https://www.iso.org/standard/4517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 477:1982,https://www.iso.org/standard/4518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 3914-1:1994,https://www.iso.org/standard/21956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 3914-2:1994,https://www.iso.org/standard/21957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 3914-3:1994,https://www.iso.org/standard/21958.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 3914-7:1994,https://www.iso.org/standard/9546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 5238-1:1982,https://www.iso.org/standard/11236.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 5239:1980,https://www.iso.org/standard/11238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 5240:1994,https://www.iso.org/standard/21948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8116-1:1995,https://www.iso.org/standard/21949.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8116-2:2008,https://www.iso.org/standard/43665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8116-3:2008,https://www.iso.org/standard/43666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8116-4:2008,https://www.iso.org/standard/43667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8116-5:2008,https://www.iso.org/standard/41314.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8116-9:1991,https://www.iso.org/standard/15173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8489-1:1995,https://www.iso.org/standard/21960.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 8489-2:1995,https://www.iso.org/standard/21961.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 8489-3:1995,https://www.iso.org/standard/21962.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 8489-4:1995,https://www.iso.org/standard/21963.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 8489-5:1995,https://www.iso.org/standard/21964.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 1,https://www.iso.org/contents/data/committee/04/99/49934/x/catalogue/ -ISO 11111-4:2005,https://www.iso.org/standard/29936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-4:2005/Amd 1:2009,https://www.iso.org/standard/46516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-4:2005/Amd 2:2016,https://www.iso.org/standard/65564.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 108:1976,https://www.iso.org/standard/3908.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 109:1982,https://www.iso.org/standard/3909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 142:1976,https://www.iso.org/standard/3968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 363-1:2006,https://www.iso.org/standard/43477.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 363-2:2006,https://www.iso.org/standard/40295.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 364:1983,https://www.iso.org/standard/4333.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 365:1982,https://www.iso.org/standard/4334.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 366-2:2009,https://www.iso.org/standard/44489.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 366-3:2009,https://www.iso.org/standard/44488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 366-4:2005,https://www.iso.org/standard/34520.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 366-5:2006,https://www.iso.org/standard/34521.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 441:1997,https://www.iso.org/standard/4457.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 570:1982,https://www.iso.org/standard/4661.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 572:1976,https://www.iso.org/standard/4663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 1150:1997,https://www.iso.org/standard/5695.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 1586:1977,https://www.iso.org/standard/6180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 1865:1977,https://www.iso.org/standard/6536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 2012:1976,https://www.iso.org/standard/6779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 5243:2004,https://www.iso.org/standard/36883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 5247-1:2004,https://www.iso.org/standard/36882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 5247-1:2004/Cor 1:2006,https://www.iso.org/standard/44501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 5247-3:1993,https://www.iso.org/standard/11246.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 6177:1986,https://www.iso.org/standard/12428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 7506:1984,https://www.iso.org/standard/14269.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8118-1:2006,https://www.iso.org/standard/40293.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8118-2:2006,https://www.iso.org/standard/40294.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 9473-1:2006,https://www.iso.org/standard/34517.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 9473-2:2006,https://www.iso.org/standard/34519.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 9902-5:2001,https://www.iso.org/standard/27848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-5:2001/Amd 1:2009,https://www.iso.org/standard/46510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-5:2001/Amd 2:2014,https://www.iso.org/standard/62378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-6:2001,https://www.iso.org/standard/27849.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-6:2001/Amd 1:2009,https://www.iso.org/standard/46511.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-6:2001/Amd 2:2014,https://www.iso.org/standard/62379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO/DIS 9902-6,https://www.iso.org/standard/74975.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 10787-1:1994,https://www.iso.org/standard/1582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 10787-2:1994,https://www.iso.org/standard/1204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 10787-3:1994,https://www.iso.org/standard/1123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 11111-5:2005,https://www.iso.org/standard/29937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-5:2005/Amd 1:2009,https://www.iso.org/standard/46517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-5:2005/Amd 2:2016,https://www.iso.org/standard/65565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005,https://www.iso.org/standard/29938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005/Amd 1:2009,https://www.iso.org/standard/46518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005/Amd 2:2016,https://www.iso.org/standard/65566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11677-1:1994,https://www.iso.org/standard/19601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 11677-2:1994,https://www.iso.org/standard/19602.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 13435:2011,https://www.iso.org/standard/53784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 14500:2003,https://www.iso.org/standard/24477.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 15228:2005,https://www.iso.org/standard/26973.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 7839:2005,https://www.iso.org/standard/36237.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8117:2003,https://www.iso.org/standard/32053.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8119-1:1989,https://www.iso.org/standard/15176.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8119-2:1989,https://www.iso.org/standard/15177.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8119-3:1992,https://www.iso.org/standard/15179.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8121:2007,https://www.iso.org/standard/43437.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8122:2003,https://www.iso.org/standard/32052.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8188:2007,https://www.iso.org/standard/43438.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8640-1:2004,https://www.iso.org/standard/37402.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8640-2:2004,https://www.iso.org/standard/37401.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8640-3:2002,https://www.iso.org/standard/34027.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 8640-4:1996,https://www.iso.org/standard/21464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 9902-5:2001,https://www.iso.org/standard/27848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-5:2001/Amd 1:2009,https://www.iso.org/standard/46510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-5:2001/Amd 2:2014,https://www.iso.org/standard/62378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 10223:2005,https://www.iso.org/standard/36238.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 11111-5:2005,https://www.iso.org/standard/29937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-5:2005/Amd 1:2009,https://www.iso.org/standard/46517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-5:2005/Amd 2:2016,https://www.iso.org/standard/65565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005,https://www.iso.org/standard/29938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005/Amd 1:2009,https://www.iso.org/standard/46518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005/Amd 2:2016,https://www.iso.org/standard/65566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11675:2005,https://www.iso.org/standard/36239.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 11676:2014,https://www.iso.org/standard/52739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 12912:2014,https://www.iso.org/standard/52158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 13990-1:2006,https://www.iso.org/standard/39189.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 13990-2:2006,https://www.iso.org/standard/39190.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 13990-3:2006,https://www.iso.org/standard/39191.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 1036:1984,https://www.iso.org/standard/5512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 1505:1993,https://www.iso.org/standard/6095.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 1506:1982,https://www.iso.org/standard/6096.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 5248:2003,https://www.iso.org/standard/35407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 5249:1988,https://www.iso.org/standard/11248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 5250:2003,https://www.iso.org/standard/35408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 9902-7:2001,https://www.iso.org/standard/27850.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-7:2001/Amd 1:2009,https://www.iso.org/standard/46512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-7:2001/Amd 2:2014,https://www.iso.org/standard/62380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 10459:1992,https://www.iso.org/standard/18522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 4,https://www.iso.org/contents/data/committee/05/00/50004/x/catalogue/ -ISO 11111-7:2005,https://www.iso.org/standard/29946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-7:2005/Amd 1:2009,https://www.iso.org/standard/46519.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-7:2005/Amd 2:2016,https://www.iso.org/standard/65567.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-3:2001,https://www.iso.org/standard/27846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-3:2001/Amd 1:2009,https://www.iso.org/standard/46508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 9902-3:2001/Amd 2:2014,https://www.iso.org/standard/62376.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-3:2005,https://www.iso.org/standard/29935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-3:2005/Amd 1:2009,https://www.iso.org/standard/46515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-3:2005/Amd 2:2016,https://www.iso.org/standard/65563.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005,https://www.iso.org/standard/29938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005/Amd 1:2009,https://www.iso.org/standard/46518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO 11111-6:2005/Amd 2:2016,https://www.iso.org/standard/65566.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 72/SC 8,https://www.iso.org/contents/data/committee/05/00/50022/x/catalogue/ -ISO/FDIS 15115,https://www.iso.org/standard/67424.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 120,https://www.iso.org/contents/data/committee/05/19/51974/x/catalogue/ -ISO 2820:1974,https://www.iso.org/standard/7818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 2820:1974/Amd 1:1996,https://www.iso.org/standard/24843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 2821:1974,https://www.iso.org/standard/7819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 2821:1974/Amd 1:1996,https://www.iso.org/standard/24842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 2822-1:1998,https://www.iso.org/standard/7820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO/TR 2822-2:2017,https://www.iso.org/standard/68379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO/TR 2822-3:2017,https://www.iso.org/standard/66184.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 4683-1:1998,https://www.iso.org/standard/10663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 4683-2:1999,https://www.iso.org/standard/29950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 7482-1:1998,https://www.iso.org/standard/14224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 7482-2:1999,https://www.iso.org/standard/29956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 7482-3:2005,https://www.iso.org/standard/41453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 11396:2012,https://www.iso.org/standard/50531.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 11398:2012,https://www.iso.org/standard/50532.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 17551:2018,https://www.iso.org/standard/68465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO/CD 22244,https://www.iso.org/standard/72942.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO/CD 22284,https://www.iso.org/standard/73033.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 28499-1:2009,https://www.iso.org/standard/29960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 28499-2:2009,https://www.iso.org/standard/29961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 28499-3:2009,https://www.iso.org/standard/29962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 120/SC 1,https://www.iso.org/contents/data/committee/05/19/51978/x/catalogue/ -ISO 2417:2016,https://www.iso.org/standard/68858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 2418:2017,https://www.iso.org/standard/67100.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 2419:2012,https://www.iso.org/standard/56697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 2420:2017,https://www.iso.org/standard/67101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 2588:2014,https://www.iso.org/standard/59890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 2589:2016,https://www.iso.org/standard/68859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 3376:2011,https://www.iso.org/standard/51510.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 3376,https://www.iso.org/standard/75173.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 3377-1:2011,https://www.iso.org/standard/51511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 3377-2:2016,https://www.iso.org/standard/68861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 3378:2002,https://www.iso.org/standard/31149.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 3379:2015,https://www.iso.org/standard/63871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 3380:2015,https://www.iso.org/standard/61792.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 4044:2017,https://www.iso.org/standard/67098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 4045:2008,https://www.iso.org/standard/43410.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/FDIS 4045,https://www.iso.org/standard/73701.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 4047:1977,https://www.iso.org/standard/9749.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 4048:2008,https://www.iso.org/standard/43411.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/FDIS 4048,https://www.iso.org/standard/73702.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 4098,https://www.iso.org/standard/72377.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 4098:2006,https://www.iso.org/standard/31307.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 4684:2005,https://www.iso.org/standard/31308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5397:1984,https://www.iso.org/standard/11439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5398-1:2007,https://www.iso.org/standard/39873.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/FDIS 5398-1,https://www.iso.org/standard/73703.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5398-2:2009,https://www.iso.org/standard/39828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5398-3:2007,https://www.iso.org/standard/39829.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/FDIS 5398-3,https://www.iso.org/standard/73704.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5398-4:2007,https://www.iso.org/standard/39830.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 5398-4,https://www.iso.org/standard/73705.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5400:1984,https://www.iso.org/standard/11442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5402-1:2017,https://www.iso.org/standard/67103.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5402-2:2015,https://www.iso.org/standard/54451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5403-1:2011,https://www.iso.org/standard/51508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5403-2:2011,https://www.iso.org/standard/51514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5404:2011,https://www.iso.org/standard/51509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5431:2013,https://www.iso.org/standard/62665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO 5432:2013,https://www.iso.org/standard/62667.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO 5433:2013,https://www.iso.org/standard/62664.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO/FDIS 10195,https://www.iso.org/standard/73378.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 11410,https://www.iso.org/standard/68458.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO/DIS 11457,https://www.iso.org/standard/69062.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO 11640:2012,https://www.iso.org/standard/54444.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 11640,https://www.iso.org/standard/73372.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 11641:2012,https://www.iso.org/standard/54445.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 11642:2012,https://www.iso.org/standard/54446.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 11643:2009,https://www.iso.org/standard/43412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 11644:2009,https://www.iso.org/standard/43413.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 11646:2014,https://www.iso.org/standard/59153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 13365:2011,https://www.iso.org/standard/53718.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 13365-1,https://www.iso.org/standard/73699.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 13365-2,https://www.iso.org/standard/73700.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 14087:2011,https://www.iso.org/standard/54454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 14088:2012,https://www.iso.org/standard/54458.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 14088,https://www.iso.org/standard/75174.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 14268:2012,https://www.iso.org/standard/54450.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 14930:2012,https://www.iso.org/standard/41451.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO 14931:2015,https://www.iso.org/standard/55736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO 15700:1998,https://www.iso.org/standard/28704.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 15701:2015,https://www.iso.org/standard/59891.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 15702:1998,https://www.iso.org/standard/28714.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 15703:1998,https://www.iso.org/standard/28715.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17070:2015,https://www.iso.org/standard/59152.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17071:2006,https://www.iso.org/standard/41468.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17072-1:2011,https://www.iso.org/standard/38195.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 17072-1,https://www.iso.org/standard/73706.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17072-2:2011,https://www.iso.org/standard/51507.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 17072-2,https://www.iso.org/standard/73707.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17074:2006,https://www.iso.org/standard/41469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17075-1:2017,https://www.iso.org/standard/67096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17075-2:2017,https://www.iso.org/standard/67097.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17076-1:2012,https://www.iso.org/standard/54452.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 17076-1,https://www.iso.org/standard/75175.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17076-2:2011,https://www.iso.org/standard/54453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17130:2013,https://www.iso.org/standard/59167.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17131:2012,https://www.iso.org/standard/59168.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17186:2011,https://www.iso.org/standard/51513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17226-1:2008,https://www.iso.org/standard/43476.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 17226-1,https://www.iso.org/standard/73708.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17226-2:2008,https://www.iso.org/standard/43871.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17226-2:2008/Cor 1:2009,https://www.iso.org/standard/53958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 17226-2,https://www.iso.org/standard/73709.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17226-3:2011,https://www.iso.org/standard/54457.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17227:2002,https://www.iso.org/standard/31293.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17228:2015,https://www.iso.org/standard/54447.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17229:2016,https://www.iso.org/standard/68862.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17230:2006,https://www.iso.org/standard/31296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17231:2017,https://www.iso.org/standard/73373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17232:2017,https://www.iso.org/standard/67104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17233:2017,https://www.iso.org/standard/67102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17234-1:2015,https://www.iso.org/standard/61791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17234-2:2011,https://www.iso.org/standard/53716.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17235:2015,https://www.iso.org/standard/63873.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17236:2016,https://www.iso.org/standard/68863.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17489:2013,https://www.iso.org/standard/59888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 17502:2013,https://www.iso.org/standard/59892.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 18218-1:2015,https://www.iso.org/standard/61788.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 18218-2:2015,https://www.iso.org/standard/61789.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 18218-2,https://www.iso.org/standard/72268.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 18219:2015,https://www.iso.org/standard/61790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 19070:2016,https://www.iso.org/standard/63874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 19071:2016,https://www.iso.org/standard/63875.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 19074:2015,https://www.iso.org/standard/63876.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 19076:2016,https://www.iso.org/standard/63877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 20136:2017,https://www.iso.org/standard/67094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 20137:2017,https://www.iso.org/standard/67095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 20433:2012,https://www.iso.org/standard/54448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 20699,https://www.iso.org/standard/68857.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 20701:2017,https://www.iso.org/standard/68860.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 20942,https://www.iso.org/standard/69524.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO/DIS 22517,https://www.iso.org/standard/73379.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 22699,https://www.iso.org/standard/73711.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 22700,https://www.iso.org/standard/73712.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 23702-1,https://www.iso.org/standard/73540.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 23910:2017,https://www.iso.org/standard/67099.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/CD 23910,https://www.iso.org/standard/73710.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 26082-1:2012,https://www.iso.org/standard/54455.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/DIS 26082-1,https://www.iso.org/standard/75168.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 26082-2:2012,https://www.iso.org/standard/54456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 27587:2009,https://www.iso.org/standard/44234.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO/NP 27587,https://www.iso.org/standard/75297.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 16131:2012,https://www.iso.org/standard/41452.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO 3759:2011,https://www.iso.org/standard/57309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 2,https://www.iso.org/contents/data/committee/04/81/48198/x/catalogue/ -ISO 5971:2017,https://www.iso.org/standard/67038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO 8559-1:2017,https://www.iso.org/standard/61686.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO 8559-2:2017,https://www.iso.org/standard/64075.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO/DIS 8559-3,https://www.iso.org/standard/67334.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO/TR 9240:1992,https://www.iso.org/standard/16872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 9920:2007,https://www.iso.org/standard/39257.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 159/SC 5,https://www.iso.org/contents/data/committee/05/33/53390/x/catalogue/ -ISO 13935-1:2014,https://www.iso.org/standard/60678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 13935-2:2014,https://www.iso.org/standard/60679.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38/SC 24,https://www.iso.org/contents/data/committee/04/83/48344/x/catalogue/ -ISO 15831:2004,https://www.iso.org/standard/28720.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 18163:2016,https://www.iso.org/standard/61644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO 18825-1:2016,https://www.iso.org/standard/61643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO 18825-2:2016,https://www.iso.org/standard/63494.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO 18831:2016,https://www.iso.org/standard/63516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO 18890,https://www.iso.org/standard/63693.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO/CD 20947-1,https://www.iso.org/standard/69525.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO/CD 20947-2,https://www.iso.org/standard/73662.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 133,https://www.iso.org/contents/data/committee/05/23/52374/x/catalogue/ -ISO 5403-1:2011,https://www.iso.org/standard/51508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 5403-2:2011,https://www.iso.org/standard/51514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,IULTCS,https://www.iso.org/contents/data/committee/05/52/55240/x/catalogue/ -ISO 9407:1991,https://www.iso.org/standard/17106.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 137,https://www.iso.org/contents/data/committee/05/24/52496/x/catalogue/ -ISO/CD 9407,https://www.iso.org/standard/71594.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 137,https://www.iso.org/contents/data/committee/05/24/52496/x/catalogue/ -ISO 9986:2014,https://www.iso.org/standard/62403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 10717:2010,https://www.iso.org/standard/46072.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 10734:2016,https://www.iso.org/standard/62396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 10748:2011,https://www.iso.org/standard/46074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 10750:2015,https://www.iso.org/standard/60983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 10751:2016,https://www.iso.org/standard/60984.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 10764:2016,https://www.iso.org/standard/60985.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 10765:2010,https://www.iso.org/standard/46079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 10768:2010,https://www.iso.org/standard/46080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 16177:2012,https://www.iso.org/standard/55800.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 16178:2012,https://www.iso.org/standard/57945.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TS 16179:2012,https://www.iso.org/standard/55802.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TS 16181:2011,https://www.iso.org/standard/55803.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TS 16186:2012,https://www.iso.org/standard/55804.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 16187:2013,https://www.iso.org/standard/55805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TS 16189:2013,https://www.iso.org/standard/55807.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TS 16190:2013,https://www.iso.org/standard/55808.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17693:2004,https://www.iso.org/standard/31464.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17694:2016,https://www.iso.org/standard/60978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17695:2004,https://www.iso.org/standard/31466.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17696:2004,https://www.iso.org/standard/31467.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17697:2016,https://www.iso.org/standard/60979.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17698:2016,https://www.iso.org/standard/60980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17699:2003,https://www.iso.org/standard/31470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17700:2004,https://www.iso.org/standard/31471.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/CD 17700,https://www.iso.org/standard/68279.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17701:2016,https://www.iso.org/standard/60981.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17702:2003,https://www.iso.org/standard/31473.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17703:2003,https://www.iso.org/standard/31474.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17704:2004,https://www.iso.org/standard/38260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17705:2003,https://www.iso.org/standard/31476.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17706:2003,https://www.iso.org/standard/31477.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17707:2005,https://www.iso.org/standard/31478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17708:2003,https://www.iso.org/standard/31479.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/FDIS 17708,https://www.iso.org/standard/68281.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 17709:2004,https://www.iso.org/standard/31480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 18403:2016,https://www.iso.org/standard/62401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 18454,https://www.iso.org/standard/63229.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 18454:2001,https://www.iso.org/standard/31800.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 18895:2006,https://www.iso.org/standard/38918.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 18896,https://www.iso.org/standard/63248.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 18896:2006,https://www.iso.org/standard/38919.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TS 19407:2015,https://www.iso.org/standard/62349.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 137,https://www.iso.org/contents/data/committee/05/24/52496/x/catalogue/ -ISO/TS 19408:2015,https://www.iso.org/standard/62158.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 137,https://www.iso.org/contents/data/committee/05/24/52496/x/catalogue/ -ISO/CD 19577,https://www.iso.org/standard/65262.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 19952:2005,https://www.iso.org/standard/34011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 19953:2004,https://www.iso.org/standard/34012.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 19954:2003,https://www.iso.org/standard/34013.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/NP 19954,https://www.iso.org/standard/68278.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 19956:2004,https://www.iso.org/standard/34015.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 19957:2004,https://www.iso.org/standard/34016.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 19957:2004/Cor 1:2005,https://www.iso.org/standard/42232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 19958:2004,https://www.iso.org/standard/34017.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/DIS 20150,https://www.iso.org/standard/67158.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/DIS 20535,https://www.iso.org/standard/68283.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20536:2017,https://www.iso.org/standard/68284.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 20572:2007,https://www.iso.org/standard/39560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 20573:2006,https://www.iso.org/standard/44420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20863,https://www.iso.org/standard/68282.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20863:2004,https://www.iso.org/standard/34287.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20864:2004,https://www.iso.org/standard/34288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20865:2002,https://www.iso.org/standard/34289.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20866,https://www.iso.org/standard/63243.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20866:2001,https://www.iso.org/standard/34290.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20867,https://www.iso.org/standard/63244.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20867:2001,https://www.iso.org/standard/34291.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20868:2001,https://www.iso.org/standard/34292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20869:2010,https://www.iso.org/standard/51175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20870:2017,https://www.iso.org/standard/63246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20871,https://www.iso.org/standard/63230.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20871:2001,https://www.iso.org/standard/34295.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20872,https://www.iso.org/standard/63239.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20872:2001,https://www.iso.org/standard/34296.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20873,https://www.iso.org/standard/63240.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20873:2001,https://www.iso.org/standard/34297.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20874,https://www.iso.org/standard/63241.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20874:2001,https://www.iso.org/standard/34298.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20875,https://www.iso.org/standard/63242.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20875:2001,https://www.iso.org/standard/34299.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20876,https://www.iso.org/standard/63245.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20876:2001,https://www.iso.org/standard/34300.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 20877:2011,https://www.iso.org/standard/51174.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 20879:2007,https://www.iso.org/standard/43963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 20880:2007,https://www.iso.org/standard/43964.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 20881:2007,https://www.iso.org/standard/43965.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 20882:2007,https://www.iso.org/standard/43966.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 20883:2007,https://www.iso.org/standard/43967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/TR 22648:2007,https://www.iso.org/standard/43968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22649:2016,https://www.iso.org/standard/60982.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22650,https://www.iso.org/standard/63247.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22650:2002,https://www.iso.org/standard/35068.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22651:2002,https://www.iso.org/standard/35069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22652:2002,https://www.iso.org/standard/35070.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO/NP 22652,https://www.iso.org/standard/68280.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22653:2003,https://www.iso.org/standard/35071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22654:2002,https://www.iso.org/standard/35072.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22774:2004,https://www.iso.org/standard/36484.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22775:2004,https://www.iso.org/standard/36485.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22776:2004,https://www.iso.org/standard/36486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 22777:2004,https://www.iso.org/standard/36487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 216,https://www.iso.org/contents/data/committee/05/49/54972/x/catalogue/ -ISO 8239:1987,https://www.iso.org/standard/15341.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 148,https://www.iso.org/contents/data/committee/05/30/53020/x/catalogue/ -ISO 10821:2005,https://www.iso.org/standard/2103.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 148,https://www.iso.org/contents/data/committee/05/30/53020/x/catalogue/ -ISO 10821:2005/Amd 1:2009,https://www.iso.org/standard/51597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 148,https://www.iso.org/contents/data/committee/05/30/53020/x/catalogue/ -ISO 3475:2002,https://www.iso.org/standard/32039.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 17217-1:2014,https://www.iso.org/standard/63485.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 19824:2017,https://www.iso.org/standard/66278.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 20311:2017,https://www.iso.org/standard/67644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 20408:2017,https://www.iso.org/standard/67920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO/DIS 21317,https://www.iso.org/standard/70521.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 249,https://www.iso.org/contents/data/committee/59/84/598435/x/catalogue/ -ISO 3974:1977,https://www.iso.org/standard/9638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 8607:2003,https://www.iso.org/standard/33751.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 8607:2003/Amd 1:2011,https://www.iso.org/standard/53325.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 14223-1:2011,https://www.iso.org/standard/50979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 14223-2:2010,https://www.iso.org/standard/45364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 14223-3,https://www.iso.org/standard/59602.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 15639-1:2015,https://www.iso.org/standard/55502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 3918:2007,https://www.iso.org/standard/37189.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5707:2007,https://www.iso.org/standard/37190.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5708:1983,https://www.iso.org/standard/11819.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5710:1980,https://www.iso.org/standard/11821.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 6690:2007,https://www.iso.org/standard/37191.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 20966:2007,https://www.iso.org/standard/35593.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 8088:1994,https://www.iso.org/standard/15124.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 11520-1:1997,https://www.iso.org/standard/19473.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 11520-2:2001,https://www.iso.org/standard/32062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 11784:1996,https://www.iso.org/standard/25881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11784:1996/Amd 1:2004,https://www.iso.org/standard/38799.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11784:1996/Amd 2:2010,https://www.iso.org/standard/45365.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11785:1996,https://www.iso.org/standard/19982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11785:1996/Cor 1:2008,https://www.iso.org/standard/53035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 24631-1:2017,https://www.iso.org/standard/63394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 24631-2:2017,https://www.iso.org/standard/63395.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 24631-3:2017,https://www.iso.org/standard/63396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 24631-4:2017,https://www.iso.org/standard/63397.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 24631-5:2014,https://www.iso.org/standard/53531.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 24631-6:2011,https://www.iso.org/standard/51270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 24631-7:2012,https://www.iso.org/standard/55409.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 2057:1981,https://www.iso.org/standard/6834.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 2332:2009,https://www.iso.org/standard/42847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 3410:1989,https://www.iso.org/standard/8721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 3600:2015,https://www.iso.org/standard/62045.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-1:2016,https://www.iso.org/standard/60090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-1:2016/CD Amd 1,https://www.iso.org/standard/74566.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-2:2016,https://www.iso.org/standard/60092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-2:2016/CD Amd 1,https://www.iso.org/standard/74567.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3795:1989,https://www.iso.org/standard/9328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22,https://www.iso.org/contents/data/committee/04/67/46706/x/catalogue/ -ISO 4004:1983,https://www.iso.org/standard/9679.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 4254-1:2013,https://www.iso.org/standard/55910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 4254-1:2013/CD Amd 1,https://www.iso.org/standard/74963.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 4254-13:2012,https://www.iso.org/standard/53704.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 4254-14:2016,https://www.iso.org/standard/57560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 5008:2002,https://www.iso.org/standard/1743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5008:2002/Cor 1:2005,https://www.iso.org/standard/43444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5131:2015,https://www.iso.org/standard/66227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5289:1992,https://www.iso.org/standard/11286.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO/DIS 5289,https://www.iso.org/standard/70615.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 5353:1995,https://www.iso.org/standard/11375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 127/SC 2,https://www.iso.org/contents/data/committee/05/21/52180/x/catalogue/ -ISO 5673-1:2005,https://www.iso.org/standard/36738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5673-2:2005,https://www.iso.org/standard/36739.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5674:2004,https://www.iso.org/standard/32988.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5676:1983,https://www.iso.org/standard/11787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5697:1982,https://www.iso.org/standard/11808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5699:1979,https://www.iso.org/standard/11810.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5711:1995,https://www.iso.org/standard/11822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 6489-4:2004,https://www.iso.org/standard/33533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 7072:1993,https://www.iso.org/standard/19985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 7216:2015,https://www.iso.org/standard/66228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 8016:1985,https://www.iso.org/standard/15024.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 10448:1994,https://www.iso.org/standard/18510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 10975:2009,https://www.iso.org/standard/46481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 11001-1:2016,https://www.iso.org/standard/60879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 11001-2:1993,https://www.iso.org/standard/18982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 11001-3:2009,https://www.iso.org/standard/42848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 11001-4:1994,https://www.iso.org/standard/18984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 11684:1995,https://www.iso.org/standard/19609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 11783-1:2017,https://www.iso.org/standard/57556.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-2:2012,https://www.iso.org/standard/54389.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-2:2012/Cor 1:2012,https://www.iso.org/standard/62813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 11783-2,https://www.iso.org/standard/71171.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-3:2014,https://www.iso.org/standard/57554.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 11783-3,https://www.iso.org/standard/71172.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-4:2011,https://www.iso.org/standard/50577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-5:2011,https://www.iso.org/standard/50578.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/WD 11783-5,https://www.iso.org/standard/74366.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-6:2014,https://www.iso.org/standard/61646.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/FDIS 11783-6,https://www.iso.org/standard/71173.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-7:2015,https://www.iso.org/standard/59380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-7:2015/DAmd 1,https://www.iso.org/standard/73001.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-8:2006,https://www.iso.org/standard/39123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-9:2012,https://www.iso.org/standard/54390.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/CD 11783-9,https://www.iso.org/standard/71175.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-10:2015,https://www.iso.org/standard/61581.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-11:2011,https://www.iso.org/standard/57849.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-12:2014,https://www.iso.org/standard/59381.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/CD 11783-12,https://www.iso.org/standard/71184.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-13:2011,https://www.iso.org/standard/56765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 11783-14:2013,https://www.iso.org/standard/43984.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 12140:2013,https://www.iso.org/standard/56210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 12188-1:2010,https://www.iso.org/standard/51271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 12188-2:2012,https://www.iso.org/standard/54926.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 12934:2013,https://www.iso.org/standard/52219.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO/CD 12934,https://www.iso.org/standard/72617.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 14269-1:1997,https://www.iso.org/standard/24038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 14269-2:1997,https://www.iso.org/standard/26553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 14269-3:1997,https://www.iso.org/standard/26554.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 14269-4:1997,https://www.iso.org/standard/26555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 14269-5:1997,https://www.iso.org/standard/26556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 14982:1998,https://www.iso.org/standard/26161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 15077:2008,https://www.iso.org/standard/42812.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO/CD 15077,https://www.iso.org/standard/72943.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 16230-1:2015,https://www.iso.org/standard/55940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 16231-1:2013,https://www.iso.org/standard/55941.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 16231-2:2015,https://www.iso.org/standard/61583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 17101-1:2012,https://www.iso.org/standard/57228.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 17101-2:2012,https://www.iso.org/standard/56207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 17103:2009,https://www.iso.org/standard/45639.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 17532:2007,https://www.iso.org/standard/38404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 17989-1:2015,https://www.iso.org/standard/61231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO/FDIS 18497,https://www.iso.org/standard/62659.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 18564:2016,https://www.iso.org/standard/62900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO/CD 21495-1,https://www.iso.org/standard/71008.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 24035:2014,https://www.iso.org/standard/55908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 41/SC 1,https://www.iso.org/contents/data/committee/04/84/48412/x/catalogue/ -ISO 25119-1:2010,https://www.iso.org/standard/45047.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 25119-1,https://www.iso.org/standard/69025.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 25119-2:2010,https://www.iso.org/standard/45048.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 25119-2,https://www.iso.org/standard/69026.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 25119-3:2010,https://www.iso.org/standard/45049.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 25119-3,https://www.iso.org/standard/69027.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 25119-4:2010,https://www.iso.org/standard/45050.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/DIS 25119-4,https://www.iso.org/standard/69028.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/TS 28923:2012,https://www.iso.org/standard/55911.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO/TS 28924:2007,https://www.iso.org/standard/45043.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 500-1:2014,https://www.iso.org/standard/56698.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 500-2:2004,https://www.iso.org/standard/36418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 500-3:2014,https://www.iso.org/standard/56699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 730:2009,https://www.iso.org/standard/41233.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 730:2009/Amd 1:2014,https://www.iso.org/standard/57768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 789-1,https://www.iso.org/standard/66436.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-1:1990,https://www.iso.org/standard/5110.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-2,https://www.iso.org/standard/45941.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-2:1993,https://www.iso.org/standard/5112.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-3:2015,https://www.iso.org/standard/61678.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-4:1986,https://www.iso.org/standard/5116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-5:1983,https://www.iso.org/standard/5117.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-6:1982,https://www.iso.org/standard/5118.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-6:1982/Amd 1:1996,https://www.iso.org/standard/23577.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO/DIS 789-6,https://www.iso.org/standard/71214.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-7:1991,https://www.iso.org/standard/5119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-8:1991,https://www.iso.org/standard/5120.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-9,https://www.iso.org/standard/44154.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-9:1990,https://www.iso.org/standard/5121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-9:1990/Amd 1:1993,https://www.iso.org/standard/5122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO/OECD 789-10:2006,https://www.iso.org/standard/38372.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-11:1996,https://www.iso.org/standard/5124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-12:2000,https://www.iso.org/standard/24560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 789-13,https://www.iso.org/standard/66437.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 3463:2006,https://www.iso.org/standard/37973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 3776-1:2006,https://www.iso.org/standard/40662.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 3776-2:2013,https://www.iso.org/standard/53585.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 3776-3:2009,https://www.iso.org/standard/44399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 3965:1990,https://www.iso.org/standard/9626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 4252:2007,https://www.iso.org/standard/39270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 4253:1993,https://www.iso.org/standard/10084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5007:2003,https://www.iso.org/standard/26861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5670:1984,https://www.iso.org/standard/11778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5675:2008,https://www.iso.org/standard/41234.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5692-1:2004,https://www.iso.org/standard/35383.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5692-2:2002,https://www.iso.org/standard/33462.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5692-2:2002/Cor 1:2004,https://www.iso.org/standard/41098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5692-3:2011,https://www.iso.org/standard/51408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5696:1984,https://www.iso.org/standard/11807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5700:2013,https://www.iso.org/standard/52218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 5721-1:2013,https://www.iso.org/standard/56751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 5721-2:2014,https://www.iso.org/standard/56752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 6489-1:2001,https://www.iso.org/standard/21074.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 6489-2:2002,https://www.iso.org/standard/31683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 6489-3:2004,https://www.iso.org/standard/29687.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO/NP 6489-3,https://www.iso.org/standard/73563.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 6489-4:2004,https://www.iso.org/standard/33533.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 6489-5:2011,https://www.iso.org/standard/51409.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO/CD 6489-5,https://www.iso.org/standard/72748.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 8002:1986,https://www.iso.org/standard/15001.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 8759-1:1998,https://www.iso.org/standard/21073.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO/DIS 8759-1,https://www.iso.org/standard/69783.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 8759-2:1998,https://www.iso.org/standard/21072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO/DIS 8759-3,https://www.iso.org/standard/69784.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO/DIS 8759-4,https://www.iso.org/standard/69785.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 8935:1990,https://www.iso.org/standard/16460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 10326-1:2016,https://www.iso.org/standard/67659.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 4,https://www.iso.org/contents/data/committee/05/15/51514/x/catalogue/ -ISO 10998:2008,https://www.iso.org/standard/43556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 10998:2008/Amd 1:2014,https://www.iso.org/standard/56658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 11471:1995,https://www.iso.org/standard/19423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 12003-1:2008,https://www.iso.org/standard/42459.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 12003-2:2008,https://www.iso.org/standard/42157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 12368:2001,https://www.iso.org/standard/30571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 16154:2005,https://www.iso.org/standard/32129.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 17567:2005,https://www.iso.org/standard/30754.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 17612:2004,https://www.iso.org/standard/30774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 17900:2002,https://www.iso.org/standard/29043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 20019:2001,https://www.iso.org/standard/21075.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 20019:2001/Cor 1:2004,https://www.iso.org/standard/41099.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO/DIS 20112-1,https://www.iso.org/standard/67070.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 20383:2017,https://www.iso.org/standard/67871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 21244:2008,https://www.iso.org/standard/40089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 23205:2014,https://www.iso.org/standard/62662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 23206:2005,https://www.iso.org/standard/36736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 23206:2005/Cor 1:2007,https://www.iso.org/standard/45629.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 24347:2005,https://www.iso.org/standard/36734.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO/DIS 24347,https://www.iso.org/standard/69296.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 26322-1:2008,https://www.iso.org/standard/40090.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 26322-2:2010,https://www.iso.org/standard/50968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 26402:2008,https://www.iso.org/standard/43555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 4,https://www.iso.org/contents/data/committee/04/70/47032/x/catalogue/ -ISO 27850:2013,https://www.iso.org/standard/44383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 4197:1989,https://www.iso.org/standard/9981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 4254-5,https://www.iso.org/standard/64878.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 4254-5:2008,https://www.iso.org/standard/38005.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 5678:1993,https://www.iso.org/standard/11789.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5679:1979,https://www.iso.org/standard/11790.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5680:1979,https://www.iso.org/standard/11792.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5713:1990,https://www.iso.org/standard/11824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 6880:1983,https://www.iso.org/standard/13402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 8910:1993,https://www.iso.org/standard/16439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 8945:1989,https://www.iso.org/standard/16469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 8947:1993,https://www.iso.org/standard/16471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 1401:2016,https://www.iso.org/standard/68033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4254-8:2018,https://www.iso.org/standard/64879.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 5690-1:1985,https://www.iso.org/standard/11802.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5690-2:1984,https://www.iso.org/standard/11803.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 6720:1989,https://www.iso.org/standard/13165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 4002-1:1979,https://www.iso.org/standard/9676.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 4002-2:1977,https://www.iso.org/standard/9677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 4254-9:2008,https://www.iso.org/standard/44448.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO/FDIS 4254-9,https://www.iso.org/standard/64880.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO 5691:1981,https://www.iso.org/standard/11804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 6720:1989,https://www.iso.org/standard/13165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 7256-1:1984,https://www.iso.org/standard/13910.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 7256-2:1984,https://www.iso.org/standard/13911.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 17962:2015,https://www.iso.org/standard/61136.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -IWA 20:2017,https://www.iso.org/standard/69535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 7714:2008,https://www.iso.org/standard/43991.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO/FDIS 7714,https://www.iso.org/standard/68846.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 7749-1:1995,https://www.iso.org/standard/14593.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 8026:2009,https://www.iso.org/standard/41113.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO/TR 8059:1986,https://www.iso.org/standard/15077.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 8224-1:2003,https://www.iso.org/standard/26411.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 8224-1:2003/Amd 1:2011,https://www.iso.org/standard/53652.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 8224-2:1991,https://www.iso.org/standard/15324.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 8779:2010,https://www.iso.org/standard/45550.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 8779:2010/Amd 1:2014,https://www.iso.org/standard/64585.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/DIS 8779,https://www.iso.org/standard/70102.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 8796:2004,https://www.iso.org/standard/29645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 9261:2004,https://www.iso.org/standard/28459.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9635-1:2014,https://www.iso.org/standard/61212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9635-2:2014,https://www.iso.org/standard/61213.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9635-3:2014,https://www.iso.org/standard/61214.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9635-4:2014,https://www.iso.org/standard/61215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9635-5:2014,https://www.iso.org/standard/60580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9644:2008,https://www.iso.org/standard/43992.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO/DIS 9644,https://www.iso.org/standard/68847.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9911:2006,https://www.iso.org/standard/39765.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9912-1:2004,https://www.iso.org/standard/34873.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9912-2:2013,https://www.iso.org/standard/39769.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 9912-3:2013,https://www.iso.org/standard/39770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO/FDIS 9912-4,https://www.iso.org/standard/68953.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 10522:1993,https://www.iso.org/standard/18591.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 11545:2009,https://www.iso.org/standard/45543.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 11678:1996,https://www.iso.org/standard/19603.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 11738:2000,https://www.iso.org/standard/19660.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 12374:1995,https://www.iso.org/standard/1473.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 13457:2008,https://www.iso.org/standard/43993.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 13460-1:2015,https://www.iso.org/standard/61890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 13693-1:2013,https://www.iso.org/standard/54286.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 13693-2:2015,https://www.iso.org/standard/54287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 15081:2011,https://www.iso.org/standard/53636.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO/TR 15155:2005,https://www.iso.org/standard/39353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO/PRF TR 15155-1,https://www.iso.org/standard/61216.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO/TR 15155-2:2012,https://www.iso.org/standard/57307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 15873:2002,https://www.iso.org/standard/27335.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 15886-1:2012,https://www.iso.org/standard/53638.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 15886-3:2012,https://www.iso.org/standard/53639.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 15886-3:2012/Amd 1:2016,https://www.iso.org/standard/64137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 16149:2006,https://www.iso.org/standard/37730.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 16399:2014,https://www.iso.org/standard/56660.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 16438:2012,https://www.iso.org/standard/56749.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 18471:2015,https://www.iso.org/standard/62516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO/DIS 20419,https://www.iso.org/standard/67959.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 282/SC 1,https://www.iso.org/contents/data/committee/51/48/5148678/x/catalogue/ -ISO/DTR 21540,https://www.iso.org/standard/71048.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 23/SC 18,https://www.iso.org/contents/data/committee/04/71/47148/x/catalogue/ -ISO 1401:2016,https://www.iso.org/standard/68033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4102:1984,https://www.iso.org/standard/9843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 4254-6:2009,https://www.iso.org/standard/38060.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/DIS 4254-6,https://www.iso.org/standard/70623.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/DIS 4254-16,https://www.iso.org/standard/64881.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 3,https://www.iso.org/contents/data/committee/04/70/47022/x/catalogue/ -ISO/CD 4254-17,https://www.iso.org/standard/69075.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 5681:1992,https://www.iso.org/standard/11794.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/AWI 5681,https://www.iso.org/standard/72299.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 5682-1:2017,https://www.iso.org/standard/60053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 5682-2:2017,https://www.iso.org/standard/60054.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 5682-3:2017,https://www.iso.org/standard/60055.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 6686:1995,https://www.iso.org/standard/13118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 6720:1989,https://www.iso.org/standard/13165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 8169:1984,https://www.iso.org/standard/15255.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 8524:1986,https://www.iso.org/standard/15750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 9357:1990,https://www.iso.org/standard/17041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 9898:2000,https://www.iso.org/standard/17781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 10625:2005,https://www.iso.org/standard/37186.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/DIS 10625,https://www.iso.org/standard/70624.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 10626:1991,https://www.iso.org/standard/18718.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 10988:2011,https://www.iso.org/standard/46488.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/TS 11356:2011,https://www.iso.org/standard/50435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 12809:2011,https://www.iso.org/standard/51778.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/CD 12809,https://www.iso.org/standard/72646.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 13440:1996,https://www.iso.org/standard/22005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 13441-1:1997,https://www.iso.org/standard/22006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 13441-2:1997,https://www.iso.org/standard/25918.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 14131:2005,https://www.iso.org/standard/23646.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16119-1:2013,https://www.iso.org/standard/55705.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16119-2:2013,https://www.iso.org/standard/55706.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16119-3:2013,https://www.iso.org/standard/55707.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16119-4:2014,https://www.iso.org/standard/57414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/FDIS 16119-5,https://www.iso.org/standard/64554.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16122-1:2015,https://www.iso.org/standard/56721.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16122-2:2015,https://www.iso.org/standard/55708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16122-3:2015,https://www.iso.org/standard/55709.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16122-4:2015,https://www.iso.org/standard/57415.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/CD 16122-5,https://www.iso.org/standard/68907.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 16236:2013,https://www.iso.org/standard/55861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 19732:2007,https://www.iso.org/standard/39130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 19932-1:2013,https://www.iso.org/standard/56031.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/DIS 19932-1,https://www.iso.org/standard/70599.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 19932-2:2013,https://www.iso.org/standard/56032.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/DIS 19932-2,https://www.iso.org/standard/70600.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/DIS 19932-3,https://www.iso.org/standard/67564.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/CD 21191,https://www.iso.org/standard/70063.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 21278-1:2008,https://www.iso.org/standard/40127.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 21278-2:2008,https://www.iso.org/standard/44280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22368-1:2004,https://www.iso.org/standard/34976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22368-2:2004,https://www.iso.org/standard/34978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22368-3:2004,https://www.iso.org/standard/36321.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22369-1:2006,https://www.iso.org/standard/34979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22369-2:2010,https://www.iso.org/standard/44713.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22401:2015,https://www.iso.org/standard/66500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22522:2007,https://www.iso.org/standard/36305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22763:2006,https://www.iso.org/standard/40125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22856:2008,https://www.iso.org/standard/41187.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 22866:2005,https://www.iso.org/standard/35161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 24253-1:2015,https://www.iso.org/standard/60051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 24253-2:2015,https://www.iso.org/standard/60052.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/FDIS 25358,https://www.iso.org/standard/66412.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 28139:2009,https://www.iso.org/standard/44519.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO/DIS 28139,https://www.iso.org/standard/67563.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 6,https://www.iso.org/contents/data/committee/04/70/47056/x/catalogue/ -ISO 4254-7:2017,https://www.iso.org/standard/63392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 4254-10:2009,https://www.iso.org/standard/40315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 4254-11:2010,https://www.iso.org/standard/42909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 4254-11:2010/CD Amd 1,https://www.iso.org/standard/68975.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 4254-12:2012,https://www.iso.org/standard/42910.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 4254-12:2012/Amd 1:2017,https://www.iso.org/standard/67548.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 5687:1999,https://www.iso.org/standard/11800.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO/PRF 5687,https://www.iso.org/standard/71315.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 5702:1983,https://www.iso.org/standard/11813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 5704:1980,https://www.iso.org/standard/11815.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5715:1983,https://www.iso.org/standard/11825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 5718:2013,https://www.iso.org/standard/56182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 5718:2013/DAmd 1,https://www.iso.org/standard/71035.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 6689-1:1997,https://www.iso.org/standard/13123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 6689-2:1997,https://www.iso.org/standard/20753.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 8210:1989,https://www.iso.org/standard/15305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 8909-1:1994,https://www.iso.org/standard/16436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 8909-2:1994,https://www.iso.org/standard/22380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 8909-3:1994,https://www.iso.org/standard/16437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 11450:1999,https://www.iso.org/standard/19393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 11450:1999/Amd 1:2016,https://www.iso.org/standard/66854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 17101-1:2012,https://www.iso.org/standard/57228.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 17101-2:2012,https://www.iso.org/standard/56207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 17103:2009,https://www.iso.org/standard/45639.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 3835-1:1976,https://www.iso.org/standard/9393.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 3835-3:1980,https://www.iso.org/standard/9395.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 3835-4:1981,https://www.iso.org/standard/9396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5703:1979,https://www.iso.org/standard/11814.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 5704:1980,https://www.iso.org/standard/11815.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 7224:1983,https://www.iso.org/standard/13860.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 3767-3:2016,https://www.iso.org/standard/60094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 5395-1:2013,https://www.iso.org/standard/51082.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 5395-1:2013/Amd 1:2017,https://www.iso.org/standard/69563.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 5395-2:2013,https://www.iso.org/standard/54938.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 5395-2:2013/Amd 1:2016,https://www.iso.org/standard/66158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 5395-2:2013/Amd 2:2017,https://www.iso.org/standard/68270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 5395-3:2013,https://www.iso.org/standard/54939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 5395-3:2013/Amd 1:2017,https://www.iso.org/standard/65580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 5395-3:2013/Amd 2:2017,https://www.iso.org/standard/66159.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 8088:1994,https://www.iso.org/standard/15124.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23,https://www.iso.org/contents/data/committee/04/70/47002/x/catalogue/ -ISO 9191:1991,https://www.iso.org/standard/16816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 9192:1991,https://www.iso.org/standard/16817.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 10517:2009,https://www.iso.org/standard/37290.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 10517:2009/Amd 1:2013,https://www.iso.org/standard/59779.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO/DIS 10517,https://www.iso.org/standard/68674.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 11449:1994,https://www.iso.org/standard/19392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 11789:1999,https://www.iso.org/standard/1761.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO/TS 15079:2001,https://www.iso.org/standard/26395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 17101-1:2012,https://www.iso.org/standard/57228.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 17101-2:2012,https://www.iso.org/standard/56207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 17103:2009,https://www.iso.org/standard/45639.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 7,https://www.iso.org/contents/data/committee/04/70/47070/x/catalogue/ -ISO 21299:2009,https://www.iso.org/standard/40135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 21628:2008,https://www.iso.org/standard/40352.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 21628:2008/Amd 1:2015,https://www.iso.org/standard/66990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO/NP 21628,https://www.iso.org/standard/74504.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 23/SC 13,https://www.iso.org/contents/data/committee/04/71/47110/x/catalogue/ -ISO 3463:2006,https://www.iso.org/standard/37973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 3767-4:2016,https://www.iso.org/standard/60095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 3767-5:2016,https://www.iso.org/standard/60096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 5700:2013,https://www.iso.org/standard/52218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 2,https://www.iso.org/contents/data/committee/04/70/47012/x/catalogue/ -ISO 6531:2017,https://www.iso.org/standard/69739.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 6533:2012,https://www.iso.org/standard/54914.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 6534:2007,https://www.iso.org/standard/43367.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 6534:2007/Amd 1:2012,https://www.iso.org/standard/60253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 6535:2015,https://www.iso.org/standard/61869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 6814:2009,https://www.iso.org/standard/50880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 7112:2017,https://www.iso.org/standard/69738.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 7113:1999,https://www.iso.org/standard/26889.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 7293:1997,https://www.iso.org/standard/25973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 7914:2002,https://www.iso.org/standard/33588.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 7914:2002/Amd 1:2012,https://www.iso.org/standard/59212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 7915:1991,https://www.iso.org/standard/14878.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 7918:1995,https://www.iso.org/standard/1824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 8082-1:2009,https://www.iso.org/standard/53412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 8082-2:2011,https://www.iso.org/standard/51242.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 8083:2006,https://www.iso.org/standard/39099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 8084:2003,https://www.iso.org/standard/31626.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 8084:2003/Amd 1:2015,https://www.iso.org/standard/65109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 8334:2007,https://www.iso.org/standard/39541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 8380:1993,https://www.iso.org/standard/1788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 8893:1997,https://www.iso.org/standard/25974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 9467:1993,https://www.iso.org/standard/17197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 9518:1998,https://www.iso.org/standard/24188.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/FDIS 9518,https://www.iso.org/standard/55063.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 10726:1992,https://www.iso.org/standard/18819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11169:1993,https://www.iso.org/standard/19179.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 11512:1995,https://www.iso.org/standard/19463.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 11680-1:2011,https://www.iso.org/standard/51131.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/NP 11680-1,https://www.iso.org/standard/74726.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11680-2:2011,https://www.iso.org/standard/51132.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/NP 11680-2,https://www.iso.org/standard/74727.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11681-1:2011,https://www.iso.org/standard/54360.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/NP 11681-1,https://www.iso.org/standard/74724.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11681-2:2011,https://www.iso.org/standard/54361.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11681-2:2011/Amd 1:2017,https://www.iso.org/standard/68762.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/NP 11681-2,https://www.iso.org/standard/74725.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11806-1:2011,https://www.iso.org/standard/51130.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11806-2:2011,https://www.iso.org/standard/51136.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11837:2011,https://www.iso.org/standard/50879.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 11839:2010,https://www.iso.org/standard/50881.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 11839:2010/Cor 1:2012,https://www.iso.org/standard/60568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 11850:2011,https://www.iso.org/standard/51182.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 11850:2011/Amd 1:2016,https://www.iso.org/standard/68670.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 11850:2011/DAmd 2,https://www.iso.org/standard/74453.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 13772,https://www.iso.org/standard/70254.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 13772:2009,https://www.iso.org/standard/46088.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 13860:2016,https://www.iso.org/standard/63993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 13861:2000,https://www.iso.org/standard/23099.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO/DIS 13861,https://www.iso.org/standard/70952.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 13862:2000,https://www.iso.org/standard/23100.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO/DIS 13862,https://www.iso.org/standard/70953.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 17080:2005,https://www.iso.org/standard/40889.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 14,https://www.iso.org/contents/data/committee/04/71/47138/x/catalogue/ -ISO 17314:2008,https://www.iso.org/standard/38305.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 17591:2002,https://www.iso.org/standard/30765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 19472:2006,https://www.iso.org/standard/32862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO 19472:2006/Cor 1:2006,https://www.iso.org/standard/44957.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 15,https://www.iso.org/contents/data/committee/04/71/47140/x/catalogue/ -ISO/TS 19858:2015,https://www.iso.org/standard/66489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 22867:2011,https://www.iso.org/standard/51143.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 22868:2011,https://www.iso.org/standard/51129.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO/CD 22868,https://www.iso.org/standard/72397.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 23/SC 17,https://www.iso.org/contents/data/committee/04/71/47146/x/catalogue/ -ISO 11786:1995,https://www.iso.org/standard/3229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 15003:2006,https://www.iso.org/standard/38800.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO/CD 15003,https://www.iso.org/standard/71188.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 23/SC 19,https://www.iso.org/contents/data/committee/04/71/47156/x/catalogue/ -ISO 3944:1992,https://www.iso.org/standard/9591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 3963:1977,https://www.iso.org/standard/9622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 5306:1983,https://www.iso.org/standard/11314.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/TR 5307:1991,https://www.iso.org/standard/11315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 5311:1992,https://www.iso.org/standard/11319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 5313:1986,https://www.iso.org/standard/11320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 5314:1981,https://www.iso.org/standard/11321.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 5315:1984,https://www.iso.org/standard/11322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 5316:1977,https://www.iso.org/standard/11323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 5317:1983,https://www.iso.org/standard/11324.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 6598:1985,https://www.iso.org/standard/13009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 7407:1983,https://www.iso.org/standard/14136.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 7408:1983,https://www.iso.org/standard/14137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 7409:1984,https://www.iso.org/standard/14138.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/FDIS 7409,https://www.iso.org/standard/65976.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 7410:1983,https://www.iso.org/standard/14139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 7497:1984,https://www.iso.org/standard/14250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/TR 7553:1987,https://www.iso.org/standard/14337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 7742:1988,https://www.iso.org/standard/14582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 7837:1992,https://www.iso.org/standard/14757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 7851:1983,https://www.iso.org/standard/14773.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 8157:2015,https://www.iso.org/standard/59567.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 8358:1991,https://www.iso.org/standard/15504.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 8397:1988,https://www.iso.org/standard/15564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 8398:1989,https://www.iso.org/standard/15565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 8633:1992,https://www.iso.org/standard/15994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 8634:1991,https://www.iso.org/standard/15995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 10084:1992,https://www.iso.org/standard/18056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 10248:1996,https://www.iso.org/standard/18289.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 10249:1996,https://www.iso.org/standard/18290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 14820-1:2016,https://www.iso.org/standard/67482.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 14820-2:2016,https://www.iso.org/standard/67494.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/CD 14820-3,https://www.iso.org/standard/72688.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 15604:2016,https://www.iso.org/standard/67496.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/DIS 15958,https://www.iso.org/standard/67499.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 15959:2016,https://www.iso.org/standard/67500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 17318:2015,https://www.iso.org/standard/59568.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 17319:2015,https://www.iso.org/standard/59569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 17322:2015,https://www.iso.org/standard/59580.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 17323:2015,https://www.iso.org/standard/59581.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 18642:2016,https://www.iso.org/standard/63123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 18643:2016,https://www.iso.org/standard/63124.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 18644:2016,https://www.iso.org/standard/63125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 18645:2016,https://www.iso.org/standard/63126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 19670:2017,https://www.iso.org/standard/65978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/DIS 19745,https://www.iso.org/standard/66222.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 19746:2017,https://www.iso.org/standard/66223.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/CD 19747,https://www.iso.org/standard/66224.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/DIS 19822,https://www.iso.org/standard/66271.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/CD 20620,https://www.iso.org/standard/68582.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 20702:2017,https://www.iso.org/standard/68875.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/CD 20917,https://www.iso.org/standard/69457.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/CD 20974,https://www.iso.org/standard/69670.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/DIS 20977,https://www.iso.org/standard/69677.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/CD 20978,https://www.iso.org/standard/69678.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 21263:2017,https://www.iso.org/standard/70327.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/CD 22018,https://www.iso.org/standard/72378.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/DIS 22146,https://www.iso.org/standard/72687.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 25475:2016,https://www.iso.org/standard/67495.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 25705:2016,https://www.iso.org/standard/67497.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO/DIS 25749,https://www.iso.org/standard/67498.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 134,https://www.iso.org/contents/data/committee/05/23/52376/x/catalogue/ -ISO 257:2004,https://www.iso.org/standard/4158.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO/DIS 257,https://www.iso.org/standard/67998.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 765:2016,https://www.iso.org/standard/57854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981,https://www.iso.org/standard/6370.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981/Add 1:1983,https://www.iso.org/standard/6371.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981/Add 2:1983,https://www.iso.org/standard/6372.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981/Amd 1:1982,https://www.iso.org/standard/6379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981/Amd 2:1999,https://www.iso.org/standard/30915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981/Amd 3:2001,https://www.iso.org/standard/34647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981/Amd 4:2008,https://www.iso.org/standard/44608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981/Amd 5:2008,https://www.iso.org/standard/44984.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 1750:1981/Amd 6,https://www.iso.org/standard/66863.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 81,https://www.iso.org/contents/data/committee/05/01/50160/x/catalogue/ -ISO 5061:2002,https://www.iso.org/standard/35599.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5506:1988,https://www.iso.org/standard/11554.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 5510:1984,https://www.iso.org/standard/11561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5983-1:2005,https://www.iso.org/standard/39145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5983-1:2005/Cor 1:2008,https://www.iso.org/standard/52374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5983-2:2009,https://www.iso.org/standard/52199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5984:2002,https://www.iso.org/standard/37272.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5984:2002/Cor 1:2005,https://www.iso.org/standard/42077.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5985:2002,https://www.iso.org/standard/37273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5985:2002/Amd 1:2015,https://www.iso.org/standard/66833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 5985:2002/Cor 1:2005,https://www.iso.org/standard/42078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6490-1:1985,https://www.iso.org/standard/12861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6491:1998,https://www.iso.org/standard/12864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6492:1999,https://www.iso.org/standard/12865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6493:2000,https://www.iso.org/standard/12866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6495-1:2015,https://www.iso.org/standard/60533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6496:1999,https://www.iso.org/standard/12871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6497:2002,https://www.iso.org/standard/12872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6498:2012,https://www.iso.org/standard/52285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6651:2001,https://www.iso.org/standard/34962.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6654:1991,https://www.iso.org/standard/13081.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6655:1997,https://www.iso.org/standard/13082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6865:2000,https://www.iso.org/standard/13377.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6866:1985,https://www.iso.org/standard/13378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6867:2000,https://www.iso.org/standard/13379.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6869:2000,https://www.iso.org/standard/33707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 6870:2002,https://www.iso.org/standard/35571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 7088:1981,https://www.iso.org/standard/13664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 7485:2000,https://www.iso.org/standard/32070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 9831:1998,https://www.iso.org/standard/17702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 12099:2017,https://www.iso.org/standard/67352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 13903:2005,https://www.iso.org/standard/37258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 13904:2016,https://www.iso.org/standard/59955.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 13906:2008,https://www.iso.org/standard/43032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14181:2000,https://www.iso.org/standard/22999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14182:1999,https://www.iso.org/standard/23000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14183:2005,https://www.iso.org/standard/40056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14183:2005/Cor 1:2010,https://www.iso.org/standard/56212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14565:2000,https://www.iso.org/standard/24065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14718:1998,https://www.iso.org/standard/25348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14797:1999,https://www.iso.org/standard/24879.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14902:2001,https://www.iso.org/standard/25890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 14939:2001,https://www.iso.org/standard/25577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 15914:2004,https://www.iso.org/standard/28351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 16472:2006,https://www.iso.org/standard/37898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 16634-1:2008,https://www.iso.org/standard/46328.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 17180:2013,https://www.iso.org/standard/59258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 17372:2008,https://www.iso.org/standard/43605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 17372:2008/Amd 1:2013,https://www.iso.org/standard/60843.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 17375:2006,https://www.iso.org/standard/38341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO/CD 17764-1,https://www.iso.org/standard/70590.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO/TS 17764-1:2002,https://www.iso.org/standard/34610.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO/CD 17764-2,https://www.iso.org/standard/70591.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO/TS 17764-2:2002,https://www.iso.org/standard/34611.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO/CD 20588,https://www.iso.org/standard/68464.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 30024:2009,https://www.iso.org/standard/45787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 10,https://www.iso.org/contents/data/committee/04/79/47924/x/catalogue/ -ISO 10990-4:1999,https://www.iso.org/standard/26355.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 191,https://www.iso.org/contents/data/committee/05/44/54422/x/catalogue/ -ISO 10990-5:1999,https://www.iso.org/standard/26569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 191,https://www.iso.org/contents/data/committee/05/44/54422/x/catalogue/ -ISO 858:1973,https://www.iso.org/standard/5237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1107:2017,https://www.iso.org/standard/72227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1530:2003,https://www.iso.org/standard/28359.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1531:1973,https://www.iso.org/standard/6120.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1532:1973,https://www.iso.org/standard/6121.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1805:2006,https://www.iso.org/standard/30041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 1806:2002,https://www.iso.org/standard/28360.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 3660:1976,https://www.iso.org/standard/9111.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 3790:1976,https://www.iso.org/standard/9322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 12878:2012,https://www.iso.org/standard/52086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 16663-1:2009,https://www.iso.org/standard/45350.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 16663-2:2003,https://www.iso.org/standard/34444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 16663-2:2003/Cor 1:2005,https://www.iso.org/standard/42002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 2817:1999,https://www.iso.org/standard/22453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 2881:1992,https://www.iso.org/standard/7905.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 2965:2009,https://www.iso.org/standard/52253.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO/AWI 2965,https://www.iso.org/standard/73026.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 2971:2013,https://www.iso.org/standard/54738.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 3308:2012,https://www.iso.org/standard/60404.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 3400:1997,https://www.iso.org/standard/25144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 3400:1997/Amd 1:2009,https://www.iso.org/standard/53044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 3401:1991,https://www.iso.org/standard/8703.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 3402:1999,https://www.iso.org/standard/28324.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 3550-1:1997,https://www.iso.org/standard/8948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 3550-2:1997,https://www.iso.org/standard/22440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO/TS 3550-3:2015,https://www.iso.org/standard/66257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 4387:2000,https://www.iso.org/standard/28323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 4387:2000/Amd 1:2008,https://www.iso.org/standard/46419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 4387:2000/Amd 2:2017,https://www.iso.org/standard/72591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 4388:1991,https://www.iso.org/standard/10285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 4389:2000,https://www.iso.org/standard/31178.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 4874:2000,https://www.iso.org/standard/28321.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 4876:1980,https://www.iso.org/standard/10866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 6466:1983,https://www.iso.org/standard/12824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 6488:2004,https://www.iso.org/standard/36240.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 6488:2004/Cor 1:2008,https://www.iso.org/standard/51801.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 6565:2015,https://www.iso.org/standard/64265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 7210:2013,https://www.iso.org/standard/56094.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO/DIS 7210,https://www.iso.org/standard/73134.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO/TS 7821:2005,https://www.iso.org/standard/37215.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 8243:2013,https://www.iso.org/standard/60154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 8454:2007,https://www.iso.org/standard/41168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 8454:2007/Amd 1:2009,https://www.iso.org/standard/53045.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 9512:2002,https://www.iso.org/standard/31175.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO/WD 9512,https://www.iso.org/standard/73027.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 10315:2013,https://www.iso.org/standard/56744.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 10362-1:1999,https://www.iso.org/standard/28322.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 10362-1:1999/Amd 1:2011,https://www.iso.org/standard/54404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/CD 10362-1,https://www.iso.org/standard/72630.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 10362-2:2013,https://www.iso.org/standard/60153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 12030:2010,https://www.iso.org/standard/51167.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 12194:1995,https://www.iso.org/standard/2165.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 12195:1995,https://www.iso.org/standard/2173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 12863:2010,https://www.iso.org/standard/52074.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12863:2010/Amd 1:2016,https://www.iso.org/standard/69778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12863:2010/Cor 1:2011,https://www.iso.org/standard/58040.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 13110:2012,https://www.iso.org/standard/52898.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 13276:2017,https://www.iso.org/standard/62773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 15152:2003,https://www.iso.org/standard/26506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15152:2003/Amd 1:2012,https://www.iso.org/standard/56195.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15152:2003/PRF Amd 2,https://www.iso.org/standard/68943.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15153:2003,https://www.iso.org/standard/26505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15153:2003/Amd 1:2012,https://www.iso.org/standard/56196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15154:2003,https://www.iso.org/standard/26507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15154:2003/Amd 1:2012,https://www.iso.org/standard/56197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15517:2003,https://www.iso.org/standard/27377.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15517:2003/Amd 1:2012,https://www.iso.org/standard/56198.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126/SC 2,https://www.iso.org/contents/data/committee/05/21/52170/x/catalogue/ -ISO 15592-1:2001,https://www.iso.org/standard/27755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 15592-2:2001,https://www.iso.org/standard/28318.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 15592-3:2008,https://www.iso.org/standard/44876.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 15593:2001,https://www.iso.org/standard/27440.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 16055:2012,https://www.iso.org/standard/56766.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 16632:2013,https://www.iso.org/standard/55734.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 17175:2017,https://www.iso.org/standard/59246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/TR 17219:2013,https://www.iso.org/standard/59445.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 18144:2003,https://www.iso.org/standard/33326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 18145:2003,https://www.iso.org/standard/33327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 19290:2016,https://www.iso.org/standard/64297.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/TR 19478-1:2014,https://www.iso.org/standard/65051.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/TR 19478-2:2015,https://www.iso.org/standard/67470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 20193:2012,https://www.iso.org/standard/52696.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO/NP 20193,https://www.iso.org/standard/71707.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 126/SC 1,https://www.iso.org/contents/data/committee/05/21/52168/x/catalogue/ -ISO 20369:2009,https://www.iso.org/standard/45426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 20370:2009,https://www.iso.org/standard/45427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/CD 20714,https://www.iso.org/standard/68905.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 126/SC 3,https://www.iso.org/contents/data/committee/59/80/5980731/x/catalogue/ -ISO/DIS 20768,https://www.iso.org/standard/69019.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 126/SC 3,https://www.iso.org/contents/data/committee/59/80/5980731/x/catalogue/ -ISO 20773:2013,https://www.iso.org/standard/59227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 20774:2013,https://www.iso.org/standard/59228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/DIS 20778,https://www.iso.org/standard/69065.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/DIS 20779,https://www.iso.org/standard/69066.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/DIS 21045,https://www.iso.org/standard/69733.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 21147:2003,https://www.iso.org/standard/33454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/DIS 21160,https://www.iso.org/standard/69993.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/DIS 21330,https://www.iso.org/standard/70555.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/DIS 21766,https://www.iso.org/standard/71601.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/CD 22253,https://www.iso.org/standard/72981.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 22303:2008,https://www.iso.org/standard/40861.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/TS 22304:2008,https://www.iso.org/standard/40862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO/TR 22305:2006,https://www.iso.org/standard/40863.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 22634-1:2017,https://www.iso.org/standard/73487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 22634-2:2017,https://www.iso.org/standard/63663.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 126,https://www.iso.org/contents/data/committee/05/21/52158/x/catalogue/ -ISO 8086:2004,https://www.iso.org/standard/40469.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14470:2011,https://www.iso.org/standard/44074.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 21469:2006,https://www.iso.org/standard/35884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 199,https://www.iso.org/contents/data/committee/05/46/54604/x/catalogue/ -ISO 22000:2005,https://www.iso.org/standard/35466.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO 22000:2005/Cor 1:2006,https://www.iso.org/standard/43982.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/FDIS 22000,https://www.iso.org/standard/65464.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22002-1:2009,https://www.iso.org/standard/44001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/NP TS 22003,https://www.iso.org/standard/74410.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22003:2013,https://www.iso.org/standard/60605.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO 22004:2014,https://www.iso.org/standard/60992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO 22006:2009,https://www.iso.org/standard/39833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/TS 34700:2016,https://www.iso.org/standard/64749.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/ASTM 51900:2009,https://www.iso.org/standard/44182.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO/ASTM DIS 51900,https://www.iso.org/standard/73750.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/02/50266/x/catalogue/ -ISO 7002:1986,https://www.iso.org/standard/13569.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/TS 19657:2017,https://www.iso.org/standard/65717.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/TS 22002-2:2013,https://www.iso.org/standard/53493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22002-3:2011,https://www.iso.org/standard/57389.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22002-4:2013,https://www.iso.org/standard/60969.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO/TS 22002-6:2016,https://www.iso.org/standard/66126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO 22005:2007,https://www.iso.org/standard/36297.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 17,https://www.iso.org/contents/data/committee/58/39/583916/x/catalogue/ -ISO 26642:2010,https://www.iso.org/standard/43633.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 1871:2009,https://www.iso.org/standard/41320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 5498:1981,https://www.iso.org/standard/11544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 6541:1981,https://www.iso.org/standard/12936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 11289:1993,https://www.iso.org/standard/19267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO/DIS 13484.2,https://www.iso.org/standard/65338.html,40.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.92,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 13495:2013,https://www.iso.org/standard/53822.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/DTS 16393,https://www.iso.org/standard/67450.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 16577:2016,https://www.iso.org/standard/57184.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 16578:2013,https://www.iso.org/standard/57185.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 16634-1:2008,https://www.iso.org/standard/46328.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 16634-2:2016,https://www.iso.org/standard/66661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/TR 17622:2015,https://www.iso.org/standard/60170.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/TR 17623:2015,https://www.iso.org/standard/60171.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 18787:2017,https://www.iso.org/standard/63379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/CD 20224,https://www.iso.org/standard/67324.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 20633:2015,https://www.iso.org/standard/68649.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 20634:2015,https://www.iso.org/standard/68650.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/DIS 20635,https://www.iso.org/standard/68604.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/DIS 20636,https://www.iso.org/standard/68605.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 20637:2015,https://www.iso.org/standard/68606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 20638:2015,https://www.iso.org/standard/68607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 20639:2015,https://www.iso.org/standard/68608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 20647:2015,https://www.iso.org/standard/68613.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 20649:2015,https://www.iso.org/standard/68653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/CD 20813,https://www.iso.org/standard/69297.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/DIS 21446,https://www.iso.org/standard/70938.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/CD 21468,https://www.iso.org/standard/70945.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/CD 21470,https://www.iso.org/standard/70946.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 21569:2005,https://www.iso.org/standard/34614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 21569:2005/Amd 1:2013,https://www.iso.org/standard/56164.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/TS 21569-2:2012,https://www.iso.org/standard/60166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/TS 21569-3:2015,https://www.iso.org/standard/63468.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/TS 21569-4:2016,https://www.iso.org/standard/69339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/TS 21569-5:2016,https://www.iso.org/standard/69340.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/TS 21569-6:2016,https://www.iso.org/standard/69356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 21570:2005,https://www.iso.org/standard/34615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 21570:2005/Amd 1:2013,https://www.iso.org/standard/56165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 21570:2005/Cor 1:2006,https://www.iso.org/standard/45305.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 21571:2005,https://www.iso.org/standard/34616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 21571:2005/Amd 1:2013,https://www.iso.org/standard/56166.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 21572:2013,https://www.iso.org/standard/51005.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO/CD 22579,https://www.iso.org/standard/73491.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 24276:2006,https://www.iso.org/standard/37125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 24276:2006/Amd 1:2013,https://www.iso.org/standard/54856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 16,https://www.iso.org/contents/data/committee/56/02/560239/x/catalogue/ -ISO 520:2010,https://www.iso.org/standard/52270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 605:1991,https://www.iso.org/standard/4718.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 712:2009,https://www.iso.org/standard/44807.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/CD 712,https://www.iso.org/standard/71603.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 2164:1975,https://www.iso.org/standard/6958.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 2171:2007,https://www.iso.org/standard/37264.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 3093:2009,https://www.iso.org/standard/54114.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 4112:1990,https://www.iso.org/standard/9856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 4174:1998,https://www.iso.org/standard/24555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 5526:2013,https://www.iso.org/standard/50932.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 5527:2015,https://www.iso.org/standard/50933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 5529:2007,https://www.iso.org/standard/40524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 5530-1:2013,https://www.iso.org/standard/43417.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 5530-2:2012,https://www.iso.org/standard/50934.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 5530-3:1988,https://www.iso.org/standard/11591.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6322-1:1996,https://www.iso.org/standard/21396.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6322-2:2000,https://www.iso.org/standard/21395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6322-3:1989,https://www.iso.org/standard/12614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6540:1980,https://www.iso.org/standard/12934.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6639-1:1986,https://www.iso.org/standard/13063.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6639-2:1986,https://www.iso.org/standard/13064.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6639-3:1986,https://www.iso.org/standard/13065.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6639-4:1987,https://www.iso.org/standard/13066.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6646:2011,https://www.iso.org/standard/51072.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6647-1:2015,https://www.iso.org/standard/57293.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/CD 6647-1,https://www.iso.org/standard/73669.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6647-2:2015,https://www.iso.org/standard/57294.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/CD 6647-2,https://www.iso.org/standard/73670.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6820:1985,https://www.iso.org/standard/13329.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7301:2011,https://www.iso.org/standard/50935.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/CD 7301,https://www.iso.org/standard/73411.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7304-1:2016,https://www.iso.org/standard/44312.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7304-2:2008,https://www.iso.org/standard/38250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7305:1998,https://www.iso.org/standard/13968.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/DIS 7305,https://www.iso.org/standard/70009.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7970:2011,https://www.iso.org/standard/43302.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7971-1:2009,https://www.iso.org/standard/44524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7971-2:2009,https://www.iso.org/standard/44525.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/DIS 7971-2,https://www.iso.org/standard/70016.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7971-3:2009,https://www.iso.org/standard/44596.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/DIS 7971-3,https://www.iso.org/standard/70015.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7973:1992,https://www.iso.org/standard/14962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 8981:1993,https://www.iso.org/standard/16506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 9648:1988,https://www.iso.org/standard/17487.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 11050:1993,https://www.iso.org/standard/19030.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/DIS 11050,https://www.iso.org/standard/70014.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 11051:1994,https://www.iso.org/standard/19031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 11052:1994,https://www.iso.org/standard/19032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 11085:2015,https://www.iso.org/standard/63542.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 11746:2012,https://www.iso.org/standard/50735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 11746:2012/Amd 1:2017,https://www.iso.org/standard/71600.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 11747:2012,https://www.iso.org/standard/50736.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 11747:2012/Amd 1:2017,https://www.iso.org/standard/71602.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 14864:1998,https://www.iso.org/standard/25793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/FDIS 15141,https://www.iso.org/standard/65579.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 15141-1:1998,https://www.iso.org/standard/26459.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 15141-2:1998,https://www.iso.org/standard/26460.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 15793:2000,https://www.iso.org/standard/28640.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 16002:2004,https://www.iso.org/standard/28906.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 16050:2003,https://www.iso.org/standard/29628.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 16634-2:2016,https://www.iso.org/standard/66661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 17715:2013,https://www.iso.org/standard/60270.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 17718:2013,https://www.iso.org/standard/60292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/DIS 19942,https://www.iso.org/standard/66648.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 20483:2013,https://www.iso.org/standard/59162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 21415-1:2006,https://www.iso.org/standard/35863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 21415-2:2015,https://www.iso.org/standard/62221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 21415-3:2006,https://www.iso.org/standard/35864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 21415-4:2006,https://www.iso.org/standard/35865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 24333:2009,https://www.iso.org/standard/42165.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 24557:2009,https://www.iso.org/standard/42281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 27971:2015,https://www.iso.org/standard/63535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO/DTR 29263,https://www.iso.org/standard/67359.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 750:1998,https://www.iso.org/standard/22569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 751:1998,https://www.iso.org/standard/22567.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 762:2003,https://www.iso.org/standard/35850.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 763:2003,https://www.iso.org/standard/37150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 874:1980,https://www.iso.org/standard/5259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1026:1982,https://www.iso.org/standard/5498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1842:1991,https://www.iso.org/standard/6500.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1956-1:1982,https://www.iso.org/standard/6684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1956-2:1989,https://www.iso.org/standard/6685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2169:1981,https://www.iso.org/standard/6964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2173:2003,https://www.iso.org/standard/35851.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2447:1998,https://www.iso.org/standard/7361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2448:1998,https://www.iso.org/standard/22570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 3659:1977,https://www.iso.org/standard/9110.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5515:1979,https://www.iso.org/standard/11569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5516:1978,https://www.iso.org/standard/11570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5517:1978,https://www.iso.org/standard/11571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5518:2007,https://www.iso.org/standard/41184.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5519:2008,https://www.iso.org/standard/41185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5520:1981,https://www.iso.org/standard/11574.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5521:1981,https://www.iso.org/standard/11575.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5522:1981,https://www.iso.org/standard/11576.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5523:1981,https://www.iso.org/standard/11577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6557-1:1986,https://www.iso.org/standard/12956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6557-2:1984,https://www.iso.org/standard/12957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6558-2:1992,https://www.iso.org/standard/12960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6560:1983,https://www.iso.org/standard/12962.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6561-1:2005,https://www.iso.org/standard/38285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6561-2:2005,https://www.iso.org/standard/38286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6632:1981,https://www.iso.org/standard/13049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6633:1984,https://www.iso.org/standard/13050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6634:1982,https://www.iso.org/standard/13051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6635:1984,https://www.iso.org/standard/13052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6636-1:1986,https://www.iso.org/standard/13054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6636-2:1981,https://www.iso.org/standard/13055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6636-3:1983,https://www.iso.org/standard/13056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6637:1984,https://www.iso.org/standard/13057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6638-1:1985,https://www.iso.org/standard/13059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6638-2:1984,https://www.iso.org/standard/13061.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6661:1983,https://www.iso.org/standard/13089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6949:1988,https://www.iso.org/standard/13496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7466:1986,https://www.iso.org/standard/14202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7558:1988,https://www.iso.org/standard/14341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7563:1998,https://www.iso.org/standard/14346.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7952:1994,https://www.iso.org/standard/14929.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 9526:1990,https://www.iso.org/standard/17259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 17239:2004,https://www.iso.org/standard/38287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 17240:2004,https://www.iso.org/standard/38288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO/CD 20982,https://www.iso.org/standard/69683.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 22855:2008,https://www.iso.org/standard/41186.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 873:1980,https://www.iso.org/standard/5258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 931:1980,https://www.iso.org/standard/5349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1134:1993,https://www.iso.org/standard/20799.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1212:1995,https://www.iso.org/standard/5812.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1838:1993,https://www.iso.org/standard/6492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1955:1982,https://www.iso.org/standard/6683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1990-1:1982,https://www.iso.org/standard/6726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1990-2:1985,https://www.iso.org/standard/6727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2168:1974,https://www.iso.org/standard/6963.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2295:1974,https://www.iso.org/standard/7122.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2826:1974,https://www.iso.org/standard/7822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 3631:1978,https://www.iso.org/standard/9069.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO/NP 3631,https://www.iso.org/standard/72809.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 3959:1977,https://www.iso.org/standard/9614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 4125:1991,https://www.iso.org/standard/9877.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6477:1988,https://www.iso.org/standard/12841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6478:1990,https://www.iso.org/standard/12842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6479:1984,https://www.iso.org/standard/12843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6479:1984/Cor 1:1999,https://www.iso.org/standard/33225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6660:1993,https://www.iso.org/standard/20798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6662:1983,https://www.iso.org/standard/13090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6664:1983,https://www.iso.org/standard/13093.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6665:1983,https://www.iso.org/standard/13094.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6755:2001,https://www.iso.org/standard/34981.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6756:1984,https://www.iso.org/standard/13248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7701:1994,https://www.iso.org/standard/14522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7702:1995,https://www.iso.org/standard/14524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7702:1995/Cor 1:2001,https://www.iso.org/standard/35000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7703:1995,https://www.iso.org/standard/14526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7703:1995/Cor 1:2001,https://www.iso.org/standard/35001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7907:1987,https://www.iso.org/standard/14869.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7908:1991,https://www.iso.org/standard/14870.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7910:1991,https://www.iso.org/standard/14871.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7911:1991,https://www.iso.org/standard/14872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7920:1984,https://www.iso.org/standard/14887.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 8682:1987,https://www.iso.org/standard/16082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 9833:1993,https://www.iso.org/standard/17704.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 16050:2003,https://www.iso.org/standard/29628.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO/CD 20984,https://www.iso.org/standard/69682.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 23391:2006,https://www.iso.org/standard/36822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 23393:2006,https://www.iso.org/standard/36825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 23394:2006,https://www.iso.org/standard/36826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 949:1987,https://www.iso.org/standard/5371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1673:1991,https://www.iso.org/standard/6288.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1991-1:1982,https://www.iso.org/standard/6728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 1991-2:1995,https://www.iso.org/standard/6730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2165:1974,https://www.iso.org/standard/6959.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2166:1981,https://www.iso.org/standard/6960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 2167:1991,https://www.iso.org/standard/6962.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 3634:1979,https://www.iso.org/standard/9075.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 4186:1980,https://www.iso.org/standard/9960.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 4187:1980,https://www.iso.org/standard/9961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5524:1991,https://www.iso.org/standard/11580.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 5525:1986,https://www.iso.org/standard/11582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6000:1981,https://www.iso.org/standard/12197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6659:1981,https://www.iso.org/standard/13087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6663:1995,https://www.iso.org/standard/13092.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6822:1984,https://www.iso.org/standard/13331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 6882:1981,https://www.iso.org/standard/13403.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7560:1995,https://www.iso.org/standard/14343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7561:1984,https://www.iso.org/standard/14344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7562:1990,https://www.iso.org/standard/14345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 7922:1985,https://www.iso.org/standard/14889.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 8683:1988,https://www.iso.org/standard/16083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 9376:1988,https://www.iso.org/standard/17067.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 9719:1995,https://www.iso.org/standard/17577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 9930:1993,https://www.iso.org/standard/17824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO/CD 20980,https://www.iso.org/standard/69680.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO/CD 20981,https://www.iso.org/standard/69681.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 23392:2006,https://www.iso.org/standard/42632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 707:2008,https://www.iso.org/standard/37882.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3889:2006,https://www.iso.org/standard/44509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3890-1:2009,https://www.iso.org/standard/53826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3890-2:2009,https://www.iso.org/standard/53827.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5538:2004,https://www.iso.org/standard/40472.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5738:2004,https://www.iso.org/standard/36913.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6611:2004,https://www.iso.org/standard/40473.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6732:2010,https://www.iso.org/standard/55778.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 6733:2006,https://www.iso.org/standard/44068.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 7208:2008,https://www.iso.org/standard/51014.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8260:2008,https://www.iso.org/standard/44066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8262-1:2005,https://www.iso.org/standard/42070.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8262-2:2005,https://www.iso.org/standard/42071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8262-3:2005,https://www.iso.org/standard/42700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8870:2006,https://www.iso.org/standard/38441.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9231:2008,https://www.iso.org/standard/43697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 10932:2010,https://www.iso.org/standard/46434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 11059:2009,https://www.iso.org/standard/50021.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11813:2010,https://www.iso.org/standard/55775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11866-1:2005,https://www.iso.org/standard/42703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11866-2:2005,https://www.iso.org/standard/42704.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11870:2009,https://www.iso.org/standard/53829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 12078:2006,https://www.iso.org/standard/38038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 13082:2011,https://www.iso.org/standard/52690.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14156:2001,https://www.iso.org/standard/23746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14156:2001/Amd 1:2007,https://www.iso.org/standard/40457.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14673-1:2004,https://www.iso.org/standard/38702.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14673-2:2004,https://www.iso.org/standard/38703.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14673-3:2004,https://www.iso.org/standard/38704.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14891:2002,https://www.iso.org/standard/25871.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15163:2012,https://www.iso.org/standard/55377.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 15495:2010,https://www.iso.org/standard/55437.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 17129:2006,https://www.iso.org/standard/38229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 17193:2011,https://www.iso.org/standard/53976.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 17792:2006,https://www.iso.org/standard/38486.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 18252:2006,https://www.iso.org/standard/38617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 18329:2004,https://www.iso.org/standard/33420.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 18330:2003,https://www.iso.org/standard/33421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 19046-1:2017,https://www.iso.org/standard/63808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 19046-2:2017,https://www.iso.org/standard/63809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 19662,https://www.iso.org/standard/65935.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 20541:2008,https://www.iso.org/standard/44223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/CD 20667,https://www.iso.org/standard/68776.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/CD 20668,https://www.iso.org/standard/68777.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 21187:2004,https://www.iso.org/standard/34434.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/NP 21187,https://www.iso.org/standard/72825.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/CD 21454,https://www.iso.org/standard/70942.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 21543:2006,https://www.iso.org/standard/40318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/CD 22184,https://www.iso.org/standard/72822.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/CD 22186,https://www.iso.org/standard/72827.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 22662:2007,https://www.iso.org/standard/36384.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 22935-1:2009,https://www.iso.org/standard/41216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 22935-2:2009,https://www.iso.org/standard/41217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 22935-3:2009,https://www.iso.org/standard/41218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 22964:2017,https://www.iso.org/standard/64708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 23058:2006,https://www.iso.org/standard/36612.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 26323:2009,https://www.iso.org/standard/43505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 26844:2006,https://www.iso.org/standard/43819.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 27105:2016,https://www.iso.org/standard/64584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 29981:2010,https://www.iso.org/standard/45765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1211:2010,https://www.iso.org/standard/51348.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1736:2008,https://www.iso.org/standard/51010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1737:2008,https://www.iso.org/standard/51011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1740:2004,https://www.iso.org/standard/40462.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 2446:2008,https://www.iso.org/standard/51019.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 2911:2004,https://www.iso.org/standard/40463.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3356:2009,https://www.iso.org/standard/44539.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3976:2006,https://www.iso.org/standard/38685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5536:2009,https://www.iso.org/standard/45804.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5537:2004,https://www.iso.org/standard/35215.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5764:2009,https://www.iso.org/standard/43986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5765-1:2002,https://www.iso.org/standard/36689.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5765-2:2002,https://www.iso.org/standard/30566.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6091:2010,https://www.iso.org/standard/55777.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6092:1980,https://www.iso.org/standard/12284.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6731:2010,https://www.iso.org/standard/56815.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6734:2010,https://www.iso.org/standard/56816.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8069:2005,https://www.iso.org/standard/36686.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8070:2007,https://www.iso.org/standard/44079.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8156:2005,https://www.iso.org/standard/42069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8196-1:2009,https://www.iso.org/standard/42084.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8196-2:2009,https://www.iso.org/standard/42085.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8196-3:2009,https://www.iso.org/standard/42086.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8967:2005,https://www.iso.org/standard/42701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8968-1:2014,https://www.iso.org/standard/61020.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8968-3:2004,https://www.iso.org/standard/35214.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8968-3:2004/Cor 1:2011,https://www.iso.org/standard/60535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8968-4:2001/Cor 1,https://www.iso.org/standard/60537.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8968-4:2016,https://www.iso.org/standard/60386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9622:2013,https://www.iso.org/standard/56874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9874:2006,https://www.iso.org/standard/42702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9874:2006/Cor 1:2007,https://www.iso.org/standard/50329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 9941:2005,https://www.iso.org/standard/40938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11285:2004,https://www.iso.org/standard/31883.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11814:2002,https://www.iso.org/standard/36936.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11815:2007,https://www.iso.org/standard/43876.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11816-1:2013,https://www.iso.org/standard/57920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11865:2009,https://www.iso.org/standard/53828.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11868:2007,https://www.iso.org/standard/44510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 12080-1:2009,https://www.iso.org/standard/53830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 12080-2:2009,https://www.iso.org/standard/53831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 12081:2010,https://www.iso.org/standard/55776.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 13366-1:2008,https://www.iso.org/standard/40259.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 13366-1:2008/Cor 1:2009,https://www.iso.org/standard/54722.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 13366-2:2006,https://www.iso.org/standard/40260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 13875:2005,https://www.iso.org/standard/36874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14377:2002,https://www.iso.org/standard/35890.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14378:2009,https://www.iso.org/standard/53832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14501:2007,https://www.iso.org/standard/39610.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14637:2004,https://www.iso.org/standard/36790.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14674:2005,https://www.iso.org/standard/38190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14675:2003,https://www.iso.org/standard/25199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 14892:2002,https://www.iso.org/standard/25872.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/DIS 15151,https://www.iso.org/standard/70900.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15174:2012,https://www.iso.org/standard/55373.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15322:2005,https://www.iso.org/standard/38094.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15323:2002,https://www.iso.org/standard/26677.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15884:2002,https://www.iso.org/standard/28897.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15885:2002,https://www.iso.org/standard/28899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 16297:2013,https://www.iso.org/standard/56110.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 16958:2015,https://www.iso.org/standard/63618.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 17678:2010,https://www.iso.org/standard/43899.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/DIS 17678,https://www.iso.org/standard/72284.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 17758:2014,https://www.iso.org/standard/60474.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 17997-1:2004,https://www.iso.org/standard/31670.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 17997-2:2004,https://www.iso.org/standard/31671.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 19344:2015,https://www.iso.org/standard/64658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 20128:2006,https://www.iso.org/standard/35292.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/DIS 21422,https://www.iso.org/standard/70899.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/DIS 21424,https://www.iso.org/standard/70901.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 22113:2012,https://www.iso.org/standard/56167.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 22160:2007,https://www.iso.org/standard/36382.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 23065:2009,https://www.iso.org/standard/41307.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 26462:2010,https://www.iso.org/standard/43595.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 27205:2010,https://www.iso.org/standard/44069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 27265:2009,https://www.iso.org/standard/44083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1738:2004,https://www.iso.org/standard/40470.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1739:2006,https://www.iso.org/standard/44508.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3727-1:2001,https://www.iso.org/standard/35212.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3727-2:2001,https://www.iso.org/standard/29474.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3727-3:2003,https://www.iso.org/standard/29475.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 7238:2004,https://www.iso.org/standard/40468.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8851-1:2004,https://www.iso.org/standard/35218.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8851-2:2004,https://www.iso.org/standard/35219.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8851-3:2004,https://www.iso.org/standard/35220.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 15648:2004,https://www.iso.org/standard/38674.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 16305:2005,https://www.iso.org/standard/29865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 17189:2003,https://www.iso.org/standard/32902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1735:2004,https://www.iso.org/standard/35250.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1740:2004,https://www.iso.org/standard/40462.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 1854:2008,https://www.iso.org/standard/51012.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 2920:2004,https://www.iso.org/standard/40464.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 2962:2010,https://www.iso.org/standard/55780.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 2963:2006,https://www.iso.org/standard/41259.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3432:2008,https://www.iso.org/standard/46335.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3433:2008,https://www.iso.org/standard/46336.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5534:2004,https://www.iso.org/standard/35249.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5534:2004/Cor 1:2013,https://www.iso.org/standard/63977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5765-1:2002,https://www.iso.org/standard/36689.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5765-2:2002,https://www.iso.org/standard/30566.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5943:2006,https://www.iso.org/standard/43922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9233-1:2007,https://www.iso.org/standard/40105.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9233-1:2007/Amd 1:2012,https://www.iso.org/standard/57059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/FDIS 9233-1,https://www.iso.org/standard/74628.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9233-2:2007,https://www.iso.org/standard/40106.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 9233-2:2007/Amd 1:2012,https://www.iso.org/standard/57060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/FDIS 9233-2,https://www.iso.org/standard/74629.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 11816-2:2016,https://www.iso.org/standard/57921.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 12082:2006,https://www.iso.org/standard/44511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 17996:2006,https://www.iso.org/standard/39108.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 18083:2013,https://www.iso.org/standard/61330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 19046-1:2017,https://www.iso.org/standard/63808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 19046-2:2017,https://www.iso.org/standard/63809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 27106:2009,https://www.iso.org/standard/43998.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 27871:2011,https://www.iso.org/standard/44389.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3728:2004,https://www.iso.org/standard/40471.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5765-1:2002,https://www.iso.org/standard/36689.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5765-2:2002,https://www.iso.org/standard/30566.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 7328:2008,https://www.iso.org/standard/51015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 2450:2008,https://www.iso.org/standard/51013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5543:2004,https://www.iso.org/standard/40465.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5544:2008,https://www.iso.org/standard/46332.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5545:2008,https://www.iso.org/standard/46333.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5546:2010,https://www.iso.org/standard/55774.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5547:2008,https://www.iso.org/standard/46334.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5548:2004,https://www.iso.org/standard/40466.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5550:2006,https://www.iso.org/standard/41681.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5739:2003,https://www.iso.org/standard/31878.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 6731:2010,https://www.iso.org/standard/56815.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 7889:2003,https://www.iso.org/standard/31880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 8381:2008,https://www.iso.org/standard/51016.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO/TS 11869:2012,https://www.iso.org/standard/56875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 12779:2011,https://www.iso.org/standard/51694.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 13580:2005,https://www.iso.org/standard/36878.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 19660,https://www.iso.org/standard/65928.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 936:1998,https://www.iso.org/standard/24783.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 937:1978,https://www.iso.org/standard/5356.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 1442:1997,https://www.iso.org/standard/6037.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 1443:1973,https://www.iso.org/standard/6038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 1444:1996,https://www.iso.org/standard/6041.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 1841-1:1996,https://www.iso.org/standard/6498.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 1841-2:1996,https://www.iso.org/standard/23756.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 2294:1974,https://www.iso.org/standard/7120.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 2917:1999,https://www.iso.org/standard/24785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 2918:1975,https://www.iso.org/standard/7961.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 3091:1975,https://www.iso.org/standard/8231.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 3496:1994,https://www.iso.org/standard/8848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 4134:1999,https://www.iso.org/standard/24603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 5553:1980,https://www.iso.org/standard/11620.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 5554:1978,https://www.iso.org/standard/11621.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 13493:1998,https://www.iso.org/standard/21238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 13496:2000,https://www.iso.org/standard/21237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 13720:2010,https://www.iso.org/standard/45099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 9,https://www.iso.org/contents/data/committee/04/79/47920/x/catalogue/ -ISO 13730:1996,https://www.iso.org/standard/22789.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 13965:1998,https://www.iso.org/standard/22473.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 6,https://www.iso.org/contents/data/committee/04/78/47880/x/catalogue/ -ISO 12875:2011,https://www.iso.org/standard/52084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 12877:2011,https://www.iso.org/standard/52085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 16488:2015,https://www.iso.org/standard/56852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 16541:2015,https://www.iso.org/standard/57071.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 16741:2015,https://www.iso.org/standard/57564.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 18537:2015,https://www.iso.org/standard/62829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 18538:2015,https://www.iso.org/standard/62830.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 18539:2015,https://www.iso.org/standard/62831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 234,https://www.iso.org/contents/data/committee/54/10/541071/x/catalogue/ -ISO 1572:1980,https://www.iso.org/standard/6166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 1573:1980,https://www.iso.org/standard/6167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 1575:1987,https://www.iso.org/standard/6170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 1576:1988,https://www.iso.org/standard/6172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 1577:1987,https://www.iso.org/standard/6174.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 1578:1975,https://www.iso.org/standard/6175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 1839:1980,https://www.iso.org/standard/6493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 3103:1980,https://www.iso.org/standard/8250.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO/NP 3103,https://www.iso.org/standard/73224.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 3720:2011,https://www.iso.org/standard/51541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 6078:1982,https://www.iso.org/standard/12279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 6079:1990,https://www.iso.org/standard/12280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 6770:1982,https://www.iso.org/standard/13264.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 7513:1990,https://www.iso.org/standard/14282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 7513:1990/Amd 1:2012,https://www.iso.org/standard/55737.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 7514:1990,https://www.iso.org/standard/14283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 7516:1984,https://www.iso.org/standard/14285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 9768:1994,https://www.iso.org/standard/21061.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 9768:1994/Cor 1:1998,https://www.iso.org/standard/30430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 9884-1:1994,https://www.iso.org/standard/17764.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 9884-2:1999,https://www.iso.org/standard/17765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 10727:2002,https://www.iso.org/standard/31494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 11286:2004,https://www.iso.org/standard/39605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 11287:2011,https://www.iso.org/standard/51540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO/TR 12591:2013,https://www.iso.org/standard/51542.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 14502-1:2005,https://www.iso.org/standard/31356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 14502-1:2005/Cor 1:2006,https://www.iso.org/standard/44119.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 14502-2:2005,https://www.iso.org/standard/31357.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 14502-2:2005/Cor 1:2006,https://www.iso.org/standard/44118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 15598:1999,https://www.iso.org/standard/28336.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 19563:2017,https://www.iso.org/standard/65341.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO/CD 20716,https://www.iso.org/standard/68909.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 1446:2001,https://www.iso.org/standard/34008.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 1446:2001/Amd 1:2011,https://www.iso.org/standard/51009.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 3509:2005,https://www.iso.org/standard/34184.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO/CD 3509,https://www.iso.org/standard/44604.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 3726:1983,https://www.iso.org/standard/9205.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 4072:1982,https://www.iso.org/standard/9786.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 4149:2005,https://www.iso.org/standard/35894.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 4150:2011,https://www.iso.org/standard/44602.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 6667:1985,https://www.iso.org/standard/13096.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 6668:2008,https://www.iso.org/standard/44609.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 6669:1995,https://www.iso.org/standard/13098.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 6670:2002,https://www.iso.org/standard/36182.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 6673:2003,https://www.iso.org/standard/38375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 8455:2011,https://www.iso.org/standard/44601.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 8455:2011/Amd 1:2015,https://www.iso.org/standard/66462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 8460:1987,https://www.iso.org/standard/15655.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 9116:2004,https://www.iso.org/standard/39373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 10470:2004,https://www.iso.org/standard/40401.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 11292:1995,https://www.iso.org/standard/19270.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 11294:1994,https://www.iso.org/standard/19272.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 11817:1994,https://www.iso.org/standard/20100.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 18794:2018,https://www.iso.org/standard/63404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 18862:2016,https://www.iso.org/standard/63615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 20481:2008,https://www.iso.org/standard/34185.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 20938:2008,https://www.iso.org/standard/44597.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 24114:2011,https://www.iso.org/standard/44704.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 24115:2012,https://www.iso.org/standard/44603.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 2292:2017,https://www.iso.org/standard/68203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 18,https://www.iso.org/contents/data/committee/51/00/5100987/x/catalogue/ -ISO 2451:2017,https://www.iso.org/standard/68202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 18,https://www.iso.org/contents/data/committee/51/00/5100987/x/catalogue/ -ISO/FDIS 34101-1,https://www.iso.org/standard/64765.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 18,https://www.iso.org/contents/data/committee/51/00/5100987/x/catalogue/ -ISO/FDIS 34101-2,https://www.iso.org/standard/64766.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 18,https://www.iso.org/contents/data/committee/51/00/5100987/x/catalogue/ -ISO/FDIS 34101-3,https://www.iso.org/standard/64767.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 34/SC 18,https://www.iso.org/contents/data/committee/51/00/5100987/x/catalogue/ -ISO/DIS 34101-4,https://www.iso.org/standard/70773.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 34/SC 18,https://www.iso.org/contents/data/committee/51/00/5100987/x/catalogue/ -ISO 2172:1983,https://www.iso.org/standard/6969.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 8128-1:1993,https://www.iso.org/standard/15193.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 8128-2:1993,https://www.iso.org/standard/15194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 3,https://www.iso.org/contents/data/committee/04/78/47872/x/catalogue/ -ISO 12824:2016,https://www.iso.org/standard/65648.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 19,https://www.iso.org/contents/data/committee/67/16/6716626/x/catalogue/ -ISO 1666:1996,https://www.iso.org/standard/22791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 1741:1980,https://www.iso.org/standard/6362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 1742:1980,https://www.iso.org/standard/6363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 1743:1982,https://www.iso.org/standard/6364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 3188:1978,https://www.iso.org/standard/8379.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 3593:1981,https://www.iso.org/standard/9004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 3946:1982,https://www.iso.org/standard/9594.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 3947:1977,https://www.iso.org/standard/9595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 5377:1981,https://www.iso.org/standard/11419.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 5378:1978,https://www.iso.org/standard/11420.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 5379:2013,https://www.iso.org/standard/50791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 5381:1983,https://www.iso.org/standard/11423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 5809:1982,https://www.iso.org/standard/11957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 5810:1982,https://www.iso.org/standard/11958.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 10504:2013,https://www.iso.org/standard/50792.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 10520:1997,https://www.iso.org/standard/18589.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11212-1:1997,https://www.iso.org/standard/24374.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11212-2:1997,https://www.iso.org/standard/24375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11212-3:1997,https://www.iso.org/standard/24376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11212-4:1997,https://www.iso.org/standard/24377.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11212-4:1997/Cor 1:1997,https://www.iso.org/standard/29511.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11213:1995,https://www.iso.org/standard/20529.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO/NP 11213,https://www.iso.org/standard/74460.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11214:1996,https://www.iso.org/standard/19203.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO/NP 11214,https://www.iso.org/standard/74462.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11215:1998,https://www.iso.org/standard/19204.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO/NP 11215,https://www.iso.org/standard/74463.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11216:1998,https://www.iso.org/standard/19205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11543:2000,https://www.iso.org/standard/32106.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO/NP 11543,https://www.iso.org/standard/74464.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 93,https://www.iso.org/contents/data/committee/05/05/50564/x/catalogue/ -ISO 11053:2009,https://www.iso.org/standard/50018.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 23275-1:2006,https://www.iso.org/standard/41424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 23275-2:2006,https://www.iso.org/standard/41425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 660:2009,https://www.iso.org/standard/44879.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 661:2003,https://www.iso.org/standard/38145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 662:2016,https://www.iso.org/standard/69592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 663:2017,https://www.iso.org/standard/71269.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 934:1980,https://www.iso.org/standard/5352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 935:1988,https://www.iso.org/standard/5354.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 3596:2000,https://www.iso.org/standard/33514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 3656:2011,https://www.iso.org/standard/51008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 3656:2011/Amd 1:2017,https://www.iso.org/standard/71255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 3657:2013,https://www.iso.org/standard/60526.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 3960:2017,https://www.iso.org/standard/71268.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 3961:2013,https://www.iso.org/standard/61278.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO/DIS 3961,https://www.iso.org/standard/71868.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 5555:2001,https://www.iso.org/standard/33287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 5555:2001/Amd 1:2014,https://www.iso.org/standard/63613.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 5558:1982,https://www.iso.org/standard/11625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6320:2017,https://www.iso.org/standard/71267.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6321:2002,https://www.iso.org/standard/35243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6463:1982,https://www.iso.org/standard/12821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6656:2002,https://www.iso.org/standard/35662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6800:1997,https://www.iso.org/standard/13301.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6883:2017,https://www.iso.org/standard/71266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6884:2008,https://www.iso.org/standard/51415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6885:2016,https://www.iso.org/standard/69593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 6886:2016,https://www.iso.org/standard/69594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 7366:1987,https://www.iso.org/standard/14055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 8292-1:2008,https://www.iso.org/standard/41256.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 8292-2:2008,https://www.iso.org/standard/41257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 8294:1994,https://www.iso.org/standard/15414.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 8420:2002,https://www.iso.org/standard/33289.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 8420:2002/Cor 1:2004,https://www.iso.org/standard/40692.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 8534:2017,https://www.iso.org/standard/71265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 9832:2002,https://www.iso.org/standard/35661.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 9936:2016,https://www.iso.org/standard/69595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 10539:2002,https://www.iso.org/standard/33940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 10540-1:2003,https://www.iso.org/standard/36178.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 10540-2:2003,https://www.iso.org/standard/36179.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 10540-3:2002,https://www.iso.org/standard/33121.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 11053:2009,https://www.iso.org/standard/50018.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 11701:2009,https://www.iso.org/standard/50697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 11702:2016,https://www.iso.org/standard/70099.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12193:2004,https://www.iso.org/standard/34083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12228-1:2014,https://www.iso.org/standard/60248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12228-2:2014,https://www.iso.org/standard/60249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12871:2010,https://www.iso.org/standard/52081.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO/WD 12871,https://www.iso.org/standard/73393.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12872:2010,https://www.iso.org/standard/52082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12873:2010,https://www.iso.org/standard/52083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12966-1:2014,https://www.iso.org/standard/52294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12966-2:2017,https://www.iso.org/standard/72142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12966-3:2016,https://www.iso.org/standard/70249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 12966-4:2015,https://www.iso.org/standard/63503.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO/NP 12966-4,https://www.iso.org/standard/71849.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 13884:2003,https://www.iso.org/standard/37878.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15267:1998,https://www.iso.org/standard/27141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15301:2001,https://www.iso.org/standard/33100.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15301:2001/Cor 1:2007,https://www.iso.org/standard/45615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15302:2017,https://www.iso.org/standard/70991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15303:2001,https://www.iso.org/standard/23546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15304:2002/Cor 1:2003,https://www.iso.org/standard/37794.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15305:1998,https://www.iso.org/standard/23543.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15753:2016,https://www.iso.org/standard/69591.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15774:2017,https://www.iso.org/standard/71264.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15788-1:1999,https://www.iso.org/standard/28685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 15788-2:2003,https://www.iso.org/standard/29089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 16035:2003,https://www.iso.org/standard/29525.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 16931:2009,https://www.iso.org/standard/44881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO/TS 17383:2014,https://www.iso.org/standard/59623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 17780:2015,https://www.iso.org/standard/60524.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 17932:2011,https://www.iso.org/standard/54401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 18301:2014,https://www.iso.org/standard/62044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 18363-1:2015,https://www.iso.org/standard/62248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO/DIS 18363-2,https://www.iso.org/standard/69575.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 18363-3:2017,https://www.iso.org/standard/69576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 18395:2005,https://www.iso.org/standard/38676.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 18609:2000,https://www.iso.org/standard/33517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 19219:2002,https://www.iso.org/standard/33754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 21033:2016,https://www.iso.org/standard/66395.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO/DIS 21846,https://www.iso.org/standard/71962.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 22959:2009,https://www.iso.org/standard/41251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 23275-1:2006,https://www.iso.org/standard/41424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 23275-2:2006,https://www.iso.org/standard/41425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO/TS 23647:2010,https://www.iso.org/standard/41759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 27107:2008,https://www.iso.org/standard/43999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 27608:2010,https://www.iso.org/standard/44237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 27608:2010/Amd 1:2016,https://www.iso.org/standard/67037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 28198:2009,https://www.iso.org/standard/44529.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO/DIS 28198,https://www.iso.org/standard/74099.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 29822:2009,https://www.iso.org/standard/45695.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 29841:2009,https://www.iso.org/standard/45701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 29841:2009/Amd 1:2016,https://www.iso.org/standard/66396.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 11,https://www.iso.org/contents/data/committee/04/79/47936/x/catalogue/ -ISO 542:1990,https://www.iso.org/standard/4619.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 658:2002,https://www.iso.org/standard/35181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 659:2009,https://www.iso.org/standard/43169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 664:2008,https://www.iso.org/standard/38030.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 665:2000,https://www.iso.org/standard/31099.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 729:1988,https://www.iso.org/standard/4966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 734:2015,https://www.iso.org/standard/66393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 735:1977,https://www.iso.org/standard/4985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 749:1977,https://www.iso.org/standard/5005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO/CD 749,https://www.iso.org/standard/66424.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 771:1977,https://www.iso.org/standard/5051.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO/CD 771,https://www.iso.org/standard/66425.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 3475:2002,https://www.iso.org/standard/32039.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 5500:1986,https://www.iso.org/standard/11548.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 5502:1992,https://www.iso.org/standard/11550.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 5506:1988,https://www.iso.org/standard/11554.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 5507:2002,https://www.iso.org/standard/27394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 8892:1987,https://www.iso.org/standard/16418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO/DIS 9167,https://www.iso.org/standard/72207.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 9167-1:1992,https://www.iso.org/standard/16763.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 9167-1:1992/Amd 1:2013,https://www.iso.org/standard/61350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 9289:1991,https://www.iso.org/standard/16944.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 10519:2015,https://www.iso.org/standard/66390.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 10565:1998,https://www.iso.org/standard/26317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 10632:2000,https://www.iso.org/standard/18725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 10633-1:1995,https://www.iso.org/standard/18726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 14244:2014,https://www.iso.org/standard/54524.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 16634-1:2008,https://www.iso.org/standard/46328.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34,https://www.iso.org/contents/data/committee/04/78/47858/x/catalogue/ -ISO 17059:2007,https://www.iso.org/standard/38061.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 21294:2017,https://www.iso.org/standard/55358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 22630:2015,https://www.iso.org/standard/66394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 676:1995,https://www.iso.org/standard/4844.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 676:1995/Cor 1:1997,https://www.iso.org/standard/27746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO/CD 676,https://www.iso.org/standard/69301.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 882-1:1993,https://www.iso.org/standard/5269.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 882-1:1993/Cor 1:1996,https://www.iso.org/standard/26968.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 882-2:1993,https://www.iso.org/standard/5270.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 882-2:1993/Cor 1:1996,https://www.iso.org/standard/26967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 927:2009,https://www.iso.org/standard/42504.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 927:2009/Cor 1:2012,https://www.iso.org/standard/62701.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 928:1997,https://www.iso.org/standard/26525.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 930:1997,https://www.iso.org/standard/26524.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 939:1980,https://www.iso.org/standard/5358.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 941:1980,https://www.iso.org/standard/5361.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 948:1980,https://www.iso.org/standard/5369.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 959-1:1998,https://www.iso.org/standard/27319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 959-2:1998,https://www.iso.org/standard/27320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 972:1997,https://www.iso.org/standard/5408.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 973:1999,https://www.iso.org/standard/26523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 1003:2008,https://www.iso.org/standard/36677.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 1108:1992,https://www.iso.org/standard/5629.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 1208:1982,https://www.iso.org/standard/5802.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO/CD 1208,https://www.iso.org/standard/69371.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 1237:1981,https://www.iso.org/standard/5854.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 2253:1999,https://www.iso.org/standard/22117.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 2254:2004,https://www.iso.org/standard/36678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 2255:1996,https://www.iso.org/standard/7072.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 2256:1984,https://www.iso.org/standard/7073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 2256:1984/Amd 1:2017,https://www.iso.org/standard/66815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 2825:1981,https://www.iso.org/standard/7821.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 3493:2014,https://www.iso.org/standard/64798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 3513:1995,https://www.iso.org/standard/8880.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 3588:1977,https://www.iso.org/standard/8997.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 3632-1:2011,https://www.iso.org/standard/44523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 3632-2:2010,https://www.iso.org/standard/44526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5559:1995,https://www.iso.org/standard/11627.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5560:1997,https://www.iso.org/standard/11629.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5561:1990,https://www.iso.org/standard/11631.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5562:1983,https://www.iso.org/standard/11632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5563:1984,https://www.iso.org/standard/11633.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5564:1982,https://www.iso.org/standard/11634.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5565-1:1999,https://www.iso.org/standard/22116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5565-2:1999,https://www.iso.org/standard/29155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5566:1982,https://www.iso.org/standard/11636.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 5567:1982,https://www.iso.org/standard/11637.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6465:2009,https://www.iso.org/standard/40677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6538:1997,https://www.iso.org/standard/22118.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6539:2014,https://www.iso.org/standard/64797.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6571:2008,https://www.iso.org/standard/41299.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6571:2008/Amd 1:2017,https://www.iso.org/standard/66816.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6574:1986,https://www.iso.org/standard/12978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6575:1982,https://www.iso.org/standard/12979.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6576:2004,https://www.iso.org/standard/39016.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6577:2002,https://www.iso.org/standard/36680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 6754:1996,https://www.iso.org/standard/13245.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7377:1984,https://www.iso.org/standard/14075.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7386:1984,https://www.iso.org/standard/14087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7540:2006,https://www.iso.org/standard/39054.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO/CD 7540,https://www.iso.org/standard/70871.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7541:1989,https://www.iso.org/standard/14324.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO/CD 7541,https://www.iso.org/standard/70872.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7542:1984,https://www.iso.org/standard/14325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7543-1:1994,https://www.iso.org/standard/14327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7543-2:1993,https://www.iso.org/standard/14328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7925:1999,https://www.iso.org/standard/29207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7926:1991,https://www.iso.org/standard/14893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7927-1:1987,https://www.iso.org/standard/14894.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO/NP 7927-1,https://www.iso.org/standard/69735.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7928-1:1991,https://www.iso.org/standard/14896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 7928-2:1991,https://www.iso.org/standard/14897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 10620:1995,https://www.iso.org/standard/18712.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 10621:1997,https://www.iso.org/standard/18713.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 10622:1997,https://www.iso.org/standard/18714.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 11027:1993,https://www.iso.org/standard/19011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 11162:2001,https://www.iso.org/standard/19172.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 11163:1995,https://www.iso.org/standard/19173.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 11164:1995,https://www.iso.org/standard/19174.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 11165:1995,https://www.iso.org/standard/19175.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 11178:1995,https://www.iso.org/standard/19183.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 13685:1997,https://www.iso.org/standard/22613.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO/DIS 20377,https://www.iso.org/standard/67852.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 34/SC 7,https://www.iso.org/contents/data/committee/04/79/47912/x/catalogue/ -ISO 3360:1976,https://www.iso.org/standard/8646.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3706:1976,https://www.iso.org/standard/9181.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3707:1976,https://www.iso.org/standard/9182.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5373:1981,https://www.iso.org/standard/11416.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3103:1980,https://www.iso.org/standard/8250.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO/NP 3103,https://www.iso.org/standard/73224.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 8,https://www.iso.org/contents/data/committee/04/79/47918/x/catalogue/ -ISO 3591:1977,https://www.iso.org/standard/9002.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 3972:2011,https://www.iso.org/standard/50110.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 3972:2011/Cor 1:2012,https://www.iso.org/standard/62546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 4120:2004,https://www.iso.org/standard/33495.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 4121:2003,https://www.iso.org/standard/33817.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5492:2008,https://www.iso.org/standard/38051.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5492:2008/Amd 1:2016,https://www.iso.org/standard/63887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO/NP 5492,https://www.iso.org/standard/73559.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5495:2005,https://www.iso.org/standard/31621.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5495:2005/Amd 1:2016,https://www.iso.org/standard/67425.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5495:2005/Cor 1:2006,https://www.iso.org/standard/44470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5496:2006,https://www.iso.org/standard/44247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5496:2006/DAmd 1,https://www.iso.org/standard/73558.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 5497:1982,https://www.iso.org/standard/11543.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 6658:2017,https://www.iso.org/standard/65519.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 6668:2008,https://www.iso.org/standard/44609.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 8586:2012,https://www.iso.org/standard/45352.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 8587:2006,https://www.iso.org/standard/36172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 8587:2006/Amd 1:2013,https://www.iso.org/standard/60574.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 8588:2017,https://www.iso.org/standard/63403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 8589:2007,https://www.iso.org/standard/36385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 8589:2007/Amd 1:2014,https://www.iso.org/standard/60215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 10399:2017,https://www.iso.org/standard/74219.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11035:1994,https://www.iso.org/standard/19015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11036:1994,https://www.iso.org/standard/19016.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11037:2011,https://www.iso.org/standard/50112.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11056:1999,https://www.iso.org/standard/32338.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11056:1999/Amd 1:2013,https://www.iso.org/standard/58034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11056:1999/Amd 2:2015,https://www.iso.org/standard/65520.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO/CD 11056,https://www.iso.org/standard/72863.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11132:2012,https://www.iso.org/standard/50124.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11136:2014,https://www.iso.org/standard/50125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 11136:2014/CD Amd 1,https://www.iso.org/standard/73557.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 13299:2016,https://www.iso.org/standard/58042.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 13300-1:2006,https://www.iso.org/standard/36387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 13300-2:2006,https://www.iso.org/standard/36388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 13301:2002,https://www.iso.org/standard/36791.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO/FDIS 13301,https://www.iso.org/standard/68901.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 13302:2003,https://www.iso.org/standard/33818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 16657:2006,https://www.iso.org/standard/38031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 16779:2015,https://www.iso.org/standard/57699.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 16820:2004,https://www.iso.org/standard/31085.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO/DIS 20613,https://www.iso.org/standard/68549.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 22308:2005,https://www.iso.org/standard/34938.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 29842:2011,https://www.iso.org/standard/45702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 29842:2011/Amd 1:2015,https://www.iso.org/standard/64716.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO/DIS 4531.2,https://www.iso.org/standard/70990.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4531-1:1998,https://www.iso.org/standard/10442.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4531-2:1998,https://www.iso.org/standard/10443.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 6486-1:1999,https://www.iso.org/standard/27280.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/CD 6486-1,https://www.iso.org/standard/67561.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 6486-2:1999,https://www.iso.org/standard/27281.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/NP 6486-2,https://www.iso.org/standard/68475.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 7086-1:2000,https://www.iso.org/standard/27146.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/CD 7086-1,https://www.iso.org/standard/67562.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 7086-2:2000,https://www.iso.org/standard/27147.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/NP 7086-2,https://www.iso.org/standard/68476.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 8391-1:1986,https://www.iso.org/standard/15556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 8391-2:1986,https://www.iso.org/standard/15557.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 8442-1:1997,https://www.iso.org/standard/17759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-2:1997,https://www.iso.org/standard/23095.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-3:1997,https://www.iso.org/standard/2464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-4:1997,https://www.iso.org/standard/24277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-5:2004,https://www.iso.org/standard/30037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-6:2000,https://www.iso.org/standard/30038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-7:2000,https://www.iso.org/standard/30039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-8:2000,https://www.iso.org/standard/30419.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-9,https://www.iso.org/standard/66329.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 14285:2014,https://www.iso.org/standard/54551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 18188:2016,https://www.iso.org/standard/61726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 488:2008,https://www.iso.org/standard/51018.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 2037:1992,https://www.iso.org/standard/6810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 2851:1993,https://www.iso.org/standard/7849.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 2852:1993,https://www.iso.org/standard/7851.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 2853:1993,https://www.iso.org/standard/7853.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 3432:2008,https://www.iso.org/standard/46335.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 3591:1977,https://www.iso.org/standard/9002.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 3889:2006,https://www.iso.org/standard/44509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 5,https://www.iso.org/contents/data/committee/04/78/47878/x/catalogue/ -ISO 5223:1995,https://www.iso.org/standard/11225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 5223:1995/Amd 1:1999,https://www.iso.org/standard/29424.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 6666:2011,https://www.iso.org/standard/44606.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 34/SC 15,https://www.iso.org/contents/data/committee/04/79/47950/x/catalogue/ -ISO 7700-1:2008,https://www.iso.org/standard/44610.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 4,https://www.iso.org/contents/data/committee/04/78/47874/x/catalogue/ -ISO 7700-2:2011,https://www.iso.org/standard/46183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 2,https://www.iso.org/contents/data/committee/04/78/47870/x/catalogue/ -ISO 16657:2006,https://www.iso.org/standard/38031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 34/SC 12,https://www.iso.org/contents/data/committee/04/79/47942/x/catalogue/ -ISO 10628-1:2014,https://www.iso.org/standard/51840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 10628-2:2012,https://www.iso.org/standard/51841.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO/TR 15916:2015,https://www.iso.org/standard/56546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 16110-1:2007,https://www.iso.org/standard/41045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 16110-2:2010,https://www.iso.org/standard/41046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 26142:2010,https://www.iso.org/standard/52319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -IWA 23:2016,https://www.iso.org/standard/70603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 10648-1:1997,https://www.iso.org/standard/2614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 10648-2:1994,https://www.iso.org/standard/20483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 85/SC 2,https://www.iso.org/contents/data/committee/05/02/50280/x/catalogue/ -ISO 10991:2009,https://www.iso.org/standard/46546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -IWA 15:2015,https://www.iso.org/standard/65552.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 383:1976,https://www.iso.org/standard/4364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 641:1975,https://www.iso.org/standard/4771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 718:1990,https://www.iso.org/standard/4946.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1772:1975,https://www.iso.org/standard/6407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1773:1997,https://www.iso.org/standard/25437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 1775:1975,https://www.iso.org/standard/6409.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4142:2002,https://www.iso.org/standard/34397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4785:1997,https://www.iso.org/standard/10765.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4790:1992,https://www.iso.org/standard/10769.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4791-1:1985,https://www.iso.org/standard/10770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4793:1980,https://www.iso.org/standard/10772.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4794:1982,https://www.iso.org/standard/10773.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4796-1:2016,https://www.iso.org/standard/63920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4796-2:2000,https://www.iso.org/standard/29734.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4796-3:2000,https://www.iso.org/standard/29735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4797:2015,https://www.iso.org/standard/63921.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4798:1997,https://www.iso.org/standard/10777.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4799:1978,https://www.iso.org/standard/10778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4800:1998,https://www.iso.org/standard/25485.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 4802-1:2016,https://www.iso.org/standard/67782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 4802-2:2016,https://www.iso.org/standard/67783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 4803:1978,https://www.iso.org/standard/10784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 6556:2012,https://www.iso.org/standard/56903.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7057:1981,https://www.iso.org/standard/13623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-1:1993,https://www.iso.org/standard/18125.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-2:1993,https://www.iso.org/standard/18126.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-3:1993,https://www.iso.org/standard/18127.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-4:1993,https://www.iso.org/standard/18128.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-5:1993,https://www.iso.org/standard/18129.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-6:1993,https://www.iso.org/standard/18130.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 12772:1997,https://www.iso.org/standard/1816.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 13130:2011,https://www.iso.org/standard/53051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 13132:2011,https://www.iso.org/standard/53054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 16496:2016,https://www.iso.org/standard/63922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 24450:2005,https://www.iso.org/standard/37214.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO Guide 30:2015,https://www.iso.org/standard/46209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO Guide 31:2015,https://www.iso.org/standard/52468.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO Guide 33:2015,https://www.iso.org/standard/46212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO Guide 35:2017,https://www.iso.org/standard/60281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO/TR 79:2015,https://www.iso.org/standard/50180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO Guide 80:2014,https://www.iso.org/standard/44313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO 3696:1987,https://www.iso.org/standard/9169.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 6353-1:1982,https://www.iso.org/standard/12656.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 6353-2:1983,https://www.iso.org/standard/12657.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 6353-2:1983/Add 2:1986,https://www.iso.org/standard/12658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 6353-3:1987,https://www.iso.org/standard/12659.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO/TR 10989:2009,https://www.iso.org/standard/46526.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO/TR 11773:2013,https://www.iso.org/standard/50785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO 14595:2014,https://www.iso.org/standard/66543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 2,https://www.iso.org/contents/data/committee/05/46/54686/x/catalogue/ -ISO/TR 16268:2009,https://www.iso.org/standard/41628.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO/TR 16476:2016,https://www.iso.org/standard/56654.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/REMCO,https://www.iso.org/contents/data/committee/05/50/55002/x/catalogue/ -ISO 78-2:1999,https://www.iso.org/standard/3726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47/SC 1,https://www.iso.org/contents/data/committee/04/88/48864/x/catalogue/ -ISO 758:1976,https://www.iso.org/standard/5035.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 759:1981,https://www.iso.org/standard/5036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47/SC 1,https://www.iso.org/contents/data/committee/04/88/48864/x/catalogue/ -ISO 760:1978,https://www.iso.org/standard/5037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47/SC 1,https://www.iso.org/contents/data/committee/04/88/48864/x/catalogue/ -ISO 918:1983,https://www.iso.org/standard/5328.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3165:1976,https://www.iso.org/standard/8346.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 6141:2015,https://www.iso.org/standard/53597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6141:2015/DAmd 1,https://www.iso.org/standard/75100.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6142-1:2015,https://www.iso.org/standard/59631.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6143:2001,https://www.iso.org/standard/24665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6144:2003,https://www.iso.org/standard/24666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-1:2003,https://www.iso.org/standard/24667.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-2:2014,https://www.iso.org/standard/45866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-4:2004,https://www.iso.org/standard/36478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-5:2009,https://www.iso.org/standard/45470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-6:2017,https://www.iso.org/standard/60247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-7:2009,https://www.iso.org/standard/45471.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO/DIS 6145-7,https://www.iso.org/standard/73212.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-8:2005,https://www.iso.org/standard/36480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-9:2009,https://www.iso.org/standard/45469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-10:2002,https://www.iso.org/standard/25916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6145-11:2005,https://www.iso.org/standard/40449.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 6206:1979,https://www.iso.org/standard/12475.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 6227:1982,https://www.iso.org/standard/12504.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47/SC 1,https://www.iso.org/contents/data/committee/04/88/48864/x/catalogue/ -ISO 6228:1980,https://www.iso.org/standard/12505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47/SC 1,https://www.iso.org/contents/data/committee/04/88/48864/x/catalogue/ -ISO 7504:2015,https://www.iso.org/standard/53596.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 8213:1986,https://www.iso.org/standard/15309.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 10810:2010,https://www.iso.org/standard/46134.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/DIS 10810,https://www.iso.org/standard/74286.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 11039:2012,https://www.iso.org/standard/46603.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 201/SC 9,https://www.iso.org/contents/data/committee/35/47/354756/x/catalogue/ -ISO 11505:2012,https://www.iso.org/standard/50563.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 201/SC 8,https://www.iso.org/contents/data/committee/05/46/54670/x/catalogue/ -ISO 11775:2015,https://www.iso.org/standard/50790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 9,https://www.iso.org/contents/data/committee/35/47/354756/x/catalogue/ -ISO 11952:2014,https://www.iso.org/standard/51061.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 9,https://www.iso.org/contents/data/committee/35/47/354756/x/catalogue/ -ISO/DIS 11952,https://www.iso.org/standard/67552.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 201/SC 9,https://www.iso.org/contents/data/committee/35/47/354756/x/catalogue/ -ISO 12406:2010,https://www.iso.org/standard/51418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 12963:2017,https://www.iso.org/standard/64891.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 13083:2015,https://www.iso.org/standard/52691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 9,https://www.iso.org/contents/data/committee/35/47/354756/x/catalogue/ -ISO 13084:2011,https://www.iso.org/standard/52695.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO/DIS 13084,https://www.iso.org/standard/73133.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 13095:2014,https://www.iso.org/standard/52800.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 9,https://www.iso.org/contents/data/committee/35/47/354756/x/catalogue/ -ISO/CD TR 13096,https://www.iso.org/standard/52801.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 201/SC 9,https://www.iso.org/contents/data/committee/35/47/354756/x/catalogue/ -ISO 13424:2013,https://www.iso.org/standard/53773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/DIS 14167,https://www.iso.org/standard/69930.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO/TS 14167:2003,https://www.iso.org/standard/37802.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO/NP TR 14187,https://www.iso.org/standard/74820.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/TR 14187:2011,https://www.iso.org/standard/54487.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 14237:2010,https://www.iso.org/standard/44882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 14606:2015,https://www.iso.org/standard/63272.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 4,https://www.iso.org/contents/data/committee/05/46/54646/x/catalogue/ -ISO 14701:2011,https://www.iso.org/standard/54929.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/DIS 14701,https://www.iso.org/standard/74818.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 14706:2014,https://www.iso.org/standard/61870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201,https://www.iso.org/contents/data/committee/05/46/54618/x/catalogue/ -ISO 14707:2015,https://www.iso.org/standard/63276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 8,https://www.iso.org/contents/data/committee/05/46/54670/x/catalogue/ -ISO 14912:2003,https://www.iso.org/standard/25214.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 14912:2003/Cor 1:2006,https://www.iso.org/standard/44639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO/NP 14912,https://www.iso.org/standard/69476.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 14975:2000,https://www.iso.org/standard/24270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 3,https://www.iso.org/contents/data/committee/05/46/54638/x/catalogue/ -ISO 14976:1998,https://www.iso.org/standard/24269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 3,https://www.iso.org/contents/data/committee/05/46/54638/x/catalogue/ -ISO/TS 15338:2009,https://www.iso.org/standard/50331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 8,https://www.iso.org/contents/data/committee/05/46/54670/x/catalogue/ -ISO/WD TS 15338,https://www.iso.org/standard/70370.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 201/SC 8,https://www.iso.org/contents/data/committee/05/46/54670/x/catalogue/ -ISO 15470:2017,https://www.iso.org/standard/71922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 15471:2016,https://www.iso.org/standard/71085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 15472:2010,https://www.iso.org/standard/55796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 15796:2005,https://www.iso.org/standard/36482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO/TR 15969:2001,https://www.iso.org/standard/28872.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 201/SC 4,https://www.iso.org/contents/data/committee/05/46/54646/x/catalogue/ -ISO 16129:2012,https://www.iso.org/standard/55727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/DIS 16129,https://www.iso.org/standard/74819.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 16242:2011,https://www.iso.org/standard/30221.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO 16243:2011,https://www.iso.org/standard/30222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO/TR 16268:2009,https://www.iso.org/standard/41628.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO 16413:2013,https://www.iso.org/standard/56703.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 201,https://www.iso.org/contents/data/committee/05/46/54618/x/catalogue/ -ISO 16531:2013,https://www.iso.org/standard/57058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 4,https://www.iso.org/contents/data/committee/05/46/54646/x/catalogue/ -ISO 16664:2017,https://www.iso.org/standard/70554.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 16962:2017,https://www.iso.org/standard/66295.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 8,https://www.iso.org/contents/data/committee/05/46/54670/x/catalogue/ -ISO 17109:2015,https://www.iso.org/standard/61443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 4,https://www.iso.org/contents/data/committee/05/46/54646/x/catalogue/ -ISO 17331:2004,https://www.iso.org/standard/32983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201,https://www.iso.org/contents/data/committee/05/46/54618/x/catalogue/ -ISO 17331:2004/Amd 1:2010,https://www.iso.org/standard/51406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201,https://www.iso.org/contents/data/committee/05/46/54618/x/catalogue/ -ISO 17560:2014,https://www.iso.org/standard/65114.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 17862:2013,https://www.iso.org/standard/60837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 17973:2016,https://www.iso.org/standard/71084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 17974:2002,https://www.iso.org/standard/31659.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 18114:2003,https://www.iso.org/standard/31693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 18115-1:2013,https://www.iso.org/standard/63783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 1,https://www.iso.org/contents/data/committee/05/46/54624/x/catalogue/ -ISO/WD 18115-1,https://www.iso.org/standard/70395.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/46/54624/x/catalogue/ -ISO 18115-2:2013,https://www.iso.org/standard/63784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 1,https://www.iso.org/contents/data/committee/05/46/54624/x/catalogue/ -ISO 18116:2005,https://www.iso.org/standard/29613.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO 18117:2009,https://www.iso.org/standard/42933.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO 18118:2015,https://www.iso.org/standard/67328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 18337:2015,https://www.iso.org/standard/62209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201,https://www.iso.org/contents/data/committee/05/46/54618/x/catalogue/ -ISO/DTR 18392,https://www.iso.org/standard/74822.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/TR 18392:2005,https://www.iso.org/standard/38673.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/TR 18394:2016,https://www.iso.org/standard/64895.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/TS 18507:2015,https://www.iso.org/standard/62700.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201,https://www.iso.org/contents/data/committee/05/46/54618/x/catalogue/ -ISO 18516:2006,https://www.iso.org/standard/38723.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO/DIS 18516,https://www.iso.org/standard/63863.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO 18554:2016,https://www.iso.org/standard/62874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 19229:2015,https://www.iso.org/standard/64057.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO/CD 19229,https://www.iso.org/standard/72010.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 19318:2004,https://www.iso.org/standard/33783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/TR 19319:2013,https://www.iso.org/standard/54115.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO 19668:2017,https://www.iso.org/standard/65947.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/TR 19693,https://www.iso.org/standard/66037.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 201,https://www.iso.org/contents/data/committee/05/46/54618/x/catalogue/ -ISO 19830:2015,https://www.iso.org/standard/66294.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 20289,https://www.iso.org/standard/67511.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 201/SC 10,https://www.iso.org/contents/data/committee/62/84/6284362/x/catalogue/ -ISO 20341:2003,https://www.iso.org/standard/34162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 20411,https://www.iso.org/standard/67923.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO/DIS 20579-1,https://www.iso.org/standard/68449.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO/DIS 20579-2,https://www.iso.org/standard/69033.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO/CD 20579-3,https://www.iso.org/standard/69903.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO/PRF 20579-4,https://www.iso.org/standard/68833.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 201/SC 2,https://www.iso.org/contents/data/committee/05/46/54630/x/catalogue/ -ISO 20903:2011,https://www.iso.org/standard/59163.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/CD 20903,https://www.iso.org/standard/74817.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 21079-1:2008,https://www.iso.org/standard/39982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21079-2:2008,https://www.iso.org/standard/43832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21079-3:2008,https://www.iso.org/standard/43833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21270:2004,https://www.iso.org/standard/35830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 22048:2004,https://www.iso.org/standard/34817.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 3,https://www.iso.org/contents/data/committee/05/46/54638/x/catalogue/ -ISO/TR 22335:2007,https://www.iso.org/standard/36187.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 201/SC 4,https://www.iso.org/contents/data/committee/05/46/54646/x/catalogue/ -ISO/CD 22415,https://www.iso.org/standard/73135.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 23812:2009,https://www.iso.org/standard/41867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 23830:2008,https://www.iso.org/standard/41871.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 6,https://www.iso.org/contents/data/committee/05/46/54656/x/catalogue/ -ISO 24236:2005,https://www.iso.org/standard/37115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 24237:2005,https://www.iso.org/standard/37116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO/NP TS 25138,https://www.iso.org/standard/74823.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 201/SC 8,https://www.iso.org/contents/data/committee/05/46/54670/x/catalogue/ -ISO/TS 25138:2010,https://www.iso.org/standard/42774.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 201/SC 8,https://www.iso.org/contents/data/committee/05/46/54670/x/catalogue/ -ISO 27911:2011,https://www.iso.org/standard/44421.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 201/SC 9,https://www.iso.org/contents/data/committee/35/47/354756/x/catalogue/ -ISO 28600:2011,https://www.iso.org/standard/44808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 3,https://www.iso.org/contents/data/committee/05/46/54638/x/catalogue/ -ISO/TS 29041:2008,https://www.iso.org/standard/45286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO/TS 29041:2008/Cor 1:2009,https://www.iso.org/standard/53549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO 29081:2010,https://www.iso.org/standard/45329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 201/SC 7,https://www.iso.org/contents/data/committee/05/46/54662/x/catalogue/ -ISO 1392:1977,https://www.iso.org/standard/5977.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47/SC 1,https://www.iso.org/contents/data/committee/04/88/48864/x/catalogue/ -ISO 2211:1973,https://www.iso.org/standard/7015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47/SC 1,https://www.iso.org/contents/data/committee/04/88/48864/x/catalogue/ -ISO 11938:2012,https://www.iso.org/standard/51059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 202/SC 2,https://www.iso.org/contents/data/committee/05/46/54686/x/catalogue/ -ISO 13067:2011,https://www.iso.org/standard/52535.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 202,https://www.iso.org/contents/data/committee/05/46/54674/x/catalogue/ -ISO/AWI 13067,https://www.iso.org/standard/74309.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 202,https://www.iso.org/contents/data/committee/05/46/54674/x/catalogue/ -ISO 14594:2014,https://www.iso.org/standard/66542.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 2,https://www.iso.org/contents/data/committee/05/46/54686/x/catalogue/ -ISO 16592:2012,https://www.iso.org/standard/60900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 202/SC 2,https://www.iso.org/contents/data/committee/05/46/54686/x/catalogue/ -ISO 19214:2017,https://www.iso.org/standard/64022.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 3,https://www.iso.org/contents/data/committee/05/46/54694/x/catalogue/ -ISO/FDIS 19463,https://www.iso.org/standard/64945.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 202/SC 2,https://www.iso.org/contents/data/committee/05/46/54686/x/catalogue/ -ISO 20263:2017,https://www.iso.org/standard/67438.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 3,https://www.iso.org/contents/data/committee/05/46/54694/x/catalogue/ -ISO 24173:2009,https://www.iso.org/standard/42052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 202,https://www.iso.org/contents/data/committee/05/46/54674/x/catalogue/ -ISO 25498,https://www.iso.org/standard/70359.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 202/SC 3,https://www.iso.org/contents/data/committee/05/46/54694/x/catalogue/ -ISO 25498:2010,https://www.iso.org/standard/42951.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 202/SC 3,https://www.iso.org/contents/data/committee/05/46/54694/x/catalogue/ -ISO 14595:2014,https://www.iso.org/standard/66543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 2,https://www.iso.org/contents/data/committee/05/46/54686/x/catalogue/ -ISO 15632:2012,https://www.iso.org/standard/52661.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 202,https://www.iso.org/contents/data/committee/05/46/54674/x/catalogue/ -ISO 17470:2014,https://www.iso.org/standard/64783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 2,https://www.iso.org/contents/data/committee/05/46/54686/x/catalogue/ -ISO/FDIS 20720,https://www.iso.org/standard/68915.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 202,https://www.iso.org/contents/data/committee/05/46/54674/x/catalogue/ -ISO 22029:2012,https://www.iso.org/standard/56211.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 202,https://www.iso.org/contents/data/committee/05/46/54674/x/catalogue/ -ISO 22309:2011,https://www.iso.org/standard/57850.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 202,https://www.iso.org/contents/data/committee/05/46/54674/x/catalogue/ -ISO 22489:2016,https://www.iso.org/standard/70288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 2,https://www.iso.org/contents/data/committee/05/46/54686/x/catalogue/ -ISO 23833:2013,https://www.iso.org/standard/61781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 202/SC 1,https://www.iso.org/contents/data/committee/05/46/54684/x/catalogue/ -ISO 1552:1976,https://www.iso.org/standard/6140.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2120:1972,https://www.iso.org/standard/6913.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2121:1972,https://www.iso.org/standard/6914.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3425:1975,https://www.iso.org/standard/8741.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3426:1975,https://www.iso.org/standard/8742.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3704:1976,https://www.iso.org/standard/9179.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3705:1976,https://www.iso.org/standard/9180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 904:1976,https://www.iso.org/standard/5308.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 910:1977,https://www.iso.org/standard/5315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2762:1973,https://www.iso.org/standard/7742.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2997:1974,https://www.iso.org/standard/8047.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3137:1974,https://www.iso.org/standard/8302.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3139:1976,https://www.iso.org/standard/8304.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3139:1976/Amd 1:1980,https://www.iso.org/standard/8305.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3360:1976,https://www.iso.org/standard/8646.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3423:1975,https://www.iso.org/standard/8739.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3699:1976,https://www.iso.org/standard/9174.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 3706:1976,https://www.iso.org/standard/9181.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3707:1976,https://www.iso.org/standard/9182.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 4285:1977,https://www.iso.org/standard/10130.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 979:1974,https://www.iso.org/standard/5417.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 981:1973,https://www.iso.org/standard/5419.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2466:1973,https://www.iso.org/standard/7381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3195:1975,https://www.iso.org/standard/8392.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3196:1975,https://www.iso.org/standard/8393.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5993:1979,https://www.iso.org/standard/12187.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 7108:1985,https://www.iso.org/standard/13693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 7109:1985,https://www.iso.org/standard/13694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 739:1976,https://www.iso.org/standard/4989.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 740:1976,https://www.iso.org/standard/4990.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 746:1976,https://www.iso.org/standard/5000.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1619:1976,https://www.iso.org/standard/6216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 1620:1976,https://www.iso.org/standard/6217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 1686:1976,https://www.iso.org/standard/6302.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1689:1976,https://www.iso.org/standard/6305.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1690:1976,https://www.iso.org/standard/6306.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1691:1976,https://www.iso.org/standard/6307.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1692:1976,https://www.iso.org/standard/6308.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1693:1976,https://www.iso.org/standard/6309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 1694:1976,https://www.iso.org/standard/6310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2122:1972,https://www.iso.org/standard/6915.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2197:1972,https://www.iso.org/standard/6998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2199:1972,https://www.iso.org/standard/7000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2366:1974,https://www.iso.org/standard/7205.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2367:1972,https://www.iso.org/standard/7206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2460:1973,https://www.iso.org/standard/7373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2461:1973,https://www.iso.org/standard/7375.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2462:1973,https://www.iso.org/standard/7376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2463:1973,https://www.iso.org/standard/7377.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2479:1972,https://www.iso.org/standard/7399.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2480:1972,https://www.iso.org/standard/7400.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2481:1973,https://www.iso.org/standard/7401.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2482:1973,https://www.iso.org/standard/7402.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2483:1973,https://www.iso.org/standard/7403.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2830:1973,https://www.iso.org/standard/7827.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2831:1973,https://www.iso.org/standard/7828.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2832:1973,https://www.iso.org/standard/7829.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2833:1973,https://www.iso.org/standard/7830.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2992:1974,https://www.iso.org/standard/8042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2993:1974,https://www.iso.org/standard/8043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3199:1975,https://www.iso.org/standard/8397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3332:1975,https://www.iso.org/standard/8597.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3357:1975,https://www.iso.org/standard/8643.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3360:1976,https://www.iso.org/standard/8646.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3391:1976,https://www.iso.org/standard/8690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 3393:1976,https://www.iso.org/standard/8692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 3428:1976,https://www.iso.org/standard/8744.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO/TR 4277:2009,https://www.iso.org/standard/52284.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 4280:1977,https://www.iso.org/standard/10120.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 4281:1977,https://www.iso.org/standard/10121.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5373:1981,https://www.iso.org/standard/11416.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5440:1978,https://www.iso.org/standard/11486.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5444:1978,https://www.iso.org/standard/11489.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5930:1979,https://www.iso.org/standard/12124.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 5938:1979,https://www.iso.org/standard/12132.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6374:1981,https://www.iso.org/standard/12706.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 20292:2009,https://www.iso.org/standard/39359.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 7103:1982,https://www.iso.org/standard/13688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 7105:1985,https://www.iso.org/standard/13690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 7106:1985,https://www.iso.org/standard/13691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3839:1996,https://www.iso.org/standard/22154.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 7382:1986,https://www.iso.org/standard/14083.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 8174:1986,https://www.iso.org/standard/15262.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 8563:1987,https://www.iso.org/standard/15825.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1995:1981,https://www.iso.org/standard/6745.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5272:1979,https://www.iso.org/standard/11269.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5275:2003,https://www.iso.org/standard/34283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 5280:1979,https://www.iso.org/standard/11276.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5282:1982,https://www.iso.org/standard/11278.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2209:1973,https://www.iso.org/standard/7013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3363:1976,https://www.iso.org/standard/8649.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 3427:1976,https://www.iso.org/standard/8743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 5789:1979,https://www.iso.org/standard/11928.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 7059:1982,https://www.iso.org/standard/13625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 8112:1984,https://www.iso.org/standard/15162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 8660:2002,https://www.iso.org/standard/32225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 8661:1988,https://www.iso.org/standard/16041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 756-1:1981,https://www.iso.org/standard/5026.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-1:1981,https://www.iso.org/standard/5943.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-2:1981,https://www.iso.org/standard/5944.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-3:1981,https://www.iso.org/standard/5945.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-4:1981,https://www.iso.org/standard/5946.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-5:1981,https://www.iso.org/standard/5947.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-6:1981,https://www.iso.org/standard/5948.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-7:1981,https://www.iso.org/standard/5949.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-8:1981,https://www.iso.org/standard/5950.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-9:1981,https://www.iso.org/standard/5951.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-10:1981,https://www.iso.org/standard/5952.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-11:1981,https://www.iso.org/standard/5953.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 1388-12:1981,https://www.iso.org/standard/5954.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2096:1972,https://www.iso.org/standard/6884.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 6796:1981,https://www.iso.org/standard/13294.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 16861:2015,https://www.iso.org/standard/57835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 17196:2014,https://www.iso.org/standard/59329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 17197:2014,https://www.iso.org/standard/59330.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 17198:2014,https://www.iso.org/standard/59332.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 17786:2015,https://www.iso.org/standard/59333.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 1385-1:1977,https://www.iso.org/standard/5935.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 2227:1972,https://www.iso.org/standard/7032.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 11014:2009,https://www.iso.org/standard/44690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 47,https://www.iso.org/contents/data/committee/04/88/48858/x/catalogue/ -ISO 802:1976,https://www.iso.org/standard/5147.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 804:1976,https://www.iso.org/standard/5149.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 806:2004,https://www.iso.org/standard/36360.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 901:1976,https://www.iso.org/standard/5305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 902:1976,https://www.iso.org/standard/5306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2073:1976,https://www.iso.org/standard/6856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2828:1973,https://www.iso.org/standard/7825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2829:1973,https://www.iso.org/standard/7826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2865:1973,https://www.iso.org/standard/7876.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2865:1973/Cor 1:1991,https://www.iso.org/standard/7877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2926:2013,https://www.iso.org/standard/52316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2927:1973,https://www.iso.org/standard/7972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 2961:1974,https://www.iso.org/standard/8009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 3429:1976,https://www.iso.org/standard/8745.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 3430:1976,https://www.iso.org/standard/8746.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 3431:1976,https://www.iso.org/standard/8747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 3566:1976,https://www.iso.org/standard/8971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 5931:2000,https://www.iso.org/standard/33242.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 5939:1980,https://www.iso.org/standard/12133.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 5940:1981,https://www.iso.org/standard/12134.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/CD 5940-1,https://www.iso.org/standard/73941.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 5940-2:2007,https://www.iso.org/standard/41305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6257:2002,https://www.iso.org/standard/35692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6375:1980,https://www.iso.org/standard/12707.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6376:1980,https://www.iso.org/standard/12708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6791:1981,https://www.iso.org/standard/13289.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6997:1985,https://www.iso.org/standard/13559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6998:1997,https://www.iso.org/standard/28050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6998:1997/Cor 1:1999,https://www.iso.org/standard/31387.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 6999:1983,https://www.iso.org/standard/13561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8003:1985,https://www.iso.org/standard/15002.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8004:1985,https://www.iso.org/standard/15003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8005:2005,https://www.iso.org/standard/36723.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8006:1985,https://www.iso.org/standard/15005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8007-1:1999,https://www.iso.org/standard/27568.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8007-2:1999,https://www.iso.org/standard/27567.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8007-3:2003,https://www.iso.org/standard/31546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8008:2005,https://www.iso.org/standard/39383.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8220:1986,https://www.iso.org/standard/15319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8658:1997,https://www.iso.org/standard/16038.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8723:1986,https://www.iso.org/standard/16126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 9055:1988,https://www.iso.org/standard/16624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 9088:1997,https://www.iso.org/standard/16676.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 9406:1995,https://www.iso.org/standard/25255.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 10142:1996,https://www.iso.org/standard/18136.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 10143:2014,https://www.iso.org/standard/63046.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/DIS 10143,https://www.iso.org/standard/73944.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 10236:1995,https://www.iso.org/standard/18273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 10237:1997,https://www.iso.org/standard/18274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 10238:1999,https://www.iso.org/standard/18275.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 11412:1998,https://www.iso.org/standard/19353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 11706:2012,https://www.iso.org/standard/50701.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 11713:2000,https://www.iso.org/standard/33209.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12315:2010,https://www.iso.org/standard/51389.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12926:2012,https://www.iso.org/standard/52205.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12977:1999,https://www.iso.org/standard/32354.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12979:1999,https://www.iso.org/standard/32353.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12980:2000,https://www.iso.org/standard/33240.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/DIS 12980,https://www.iso.org/standard/69884.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12981-1:2000,https://www.iso.org/standard/33050.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/DIS 12981-1,https://www.iso.org/standard/69885.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12982-1:2000,https://www.iso.org/standard/34066.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/DIS 12982-1,https://www.iso.org/standard/69886.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12984,https://www.iso.org/standard/69887.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12984:2000,https://www.iso.org/standard/33096.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12985-1:2000,https://www.iso.org/standard/33198.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/FDIS 12985-1,https://www.iso.org/standard/69888.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12985-2:2000,https://www.iso.org/standard/33199.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/FDIS 12985-2,https://www.iso.org/standard/69889.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12986-1:2014,https://www.iso.org/standard/63047.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12986-2:2014,https://www.iso.org/standard/63048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12987:2004,https://www.iso.org/standard/38909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12988-1:2000,https://www.iso.org/standard/32975.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/DIS 12988-1,https://www.iso.org/standard/69890.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12988-2:2004,https://www.iso.org/standard/31823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12989-1:2000,https://www.iso.org/standard/27454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 12989-2:2004,https://www.iso.org/standard/31824.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 14420:2005,https://www.iso.org/standard/24280.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/DIS 14420,https://www.iso.org/standard/69891.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 14422:1999,https://www.iso.org/standard/24282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 14427:2004,https://www.iso.org/standard/24287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 14428:2005,https://www.iso.org/standard/24288.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/CD 14428,https://www.iso.org/standard/73942.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 14435:2005,https://www.iso.org/standard/40744.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 15379-1:2015,https://www.iso.org/standard/66678.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/CD 15379-1,https://www.iso.org/standard/73943.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 15379-2:2015,https://www.iso.org/standard/66677.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 15906:2007,https://www.iso.org/standard/28513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 17499:2006,https://www.iso.org/standard/31399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 17500:2006,https://www.iso.org/standard/31400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 17544:2004,https://www.iso.org/standard/33116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 18142:2014,https://www.iso.org/standard/61599.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 18515:2014,https://www.iso.org/standard/63049.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 18842:2015,https://www.iso.org/standard/63550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 18843:2015,https://www.iso.org/standard/63551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 19950:2015,https://www.iso.org/standard/66726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 20202:2004,https://www.iso.org/standard/35320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 20292:2009,https://www.iso.org/standard/39359.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 21687:2007,https://www.iso.org/standard/34646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/CD 22731,https://www.iso.org/standard/73749.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO/CD 23028,https://www.iso.org/standard/74352.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 23201:2015,https://www.iso.org/standard/50501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 23202:2006,https://www.iso.org/standard/36727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 8573-1:2010,https://www.iso.org/standard/46418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-2,https://www.iso.org/standard/66999.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-2:2007,https://www.iso.org/standard/34916.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-3:1999,https://www.iso.org/standard/25282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-4:2001,https://www.iso.org/standard/21397.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-4:2001/Cor 1:2002,https://www.iso.org/standard/36697.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO/DIS 8573-4,https://www.iso.org/standard/69695.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-5:2001,https://www.iso.org/standard/33712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-6:2003,https://www.iso.org/standard/25284.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-7:2003,https://www.iso.org/standard/31385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-8:2004,https://www.iso.org/standard/34089.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 8573-9:2004,https://www.iso.org/standard/34088.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 10156:2017,https://www.iso.org/standard/66752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 10298,https://www.iso.org/standard/69935.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 10298:2010,https://www.iso.org/standard/51433.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 12500-1:2007,https://www.iso.org/standard/41150.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 12500-2:2007,https://www.iso.org/standard/41151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 4,https://www.iso.org/contents/data/committee/05/18/51882/x/catalogue/ -ISO 13338:2017,https://www.iso.org/standard/65112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 13984:1999,https://www.iso.org/standard/23570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 13985:2006,https://www.iso.org/standard/39892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 14175:2008,https://www.iso.org/standard/39569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 3,https://www.iso.org/contents/data/committee/04/86/48610/x/catalogue/ -ISO 14687-1:1999/Cor 1:2001,https://www.iso.org/standard/35109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 14687-1:1999/Cor 2:2008,https://www.iso.org/standard/50811.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/CD 14687,https://www.iso.org/standard/69539.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 14687-1:1999,https://www.iso.org/standard/24769.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 14687-2:2012,https://www.iso.org/standard/55083.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 14687-3:2014,https://www.iso.org/standard/55078.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/TR 15916:2015,https://www.iso.org/standard/56546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 16110-1:2007,https://www.iso.org/standard/41045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 16110-2:2010,https://www.iso.org/standard/41046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 16111:2008,https://www.iso.org/standard/50366.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 16111,https://www.iso.org/standard/67952.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/CD TR 16113,https://www.iso.org/standard/72909.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 17268:2012,https://www.iso.org/standard/51194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 17268,https://www.iso.org/standard/68442.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19880-1,https://www.iso.org/standard/71940.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/TS 19880-1:2016,https://www.iso.org/standard/65003.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19880-2,https://www.iso.org/standard/64753.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/FDIS 19880-3,https://www.iso.org/standard/64754.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/CD 19880-5,https://www.iso.org/standard/64785.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/CD 19880-5,https://www.iso.org/standard/73787.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19880-8,https://www.iso.org/standard/69540.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19881,https://www.iso.org/standard/65029.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/TS 19883:2017,https://www.iso.org/standard/61169.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/DIS 19884,https://www.iso.org/standard/65487.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/CD 21087,https://www.iso.org/standard/69909.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 158,https://www.iso.org/contents/data/committee/05/33/53314/x/catalogue/ -ISO/DIS 22734,https://www.iso.org/standard/69212.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 22734-1:2008,https://www.iso.org/standard/41043.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 22734-2:2011,https://www.iso.org/standard/41044.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 26142:2010,https://www.iso.org/standard/52319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO/CD 21583,https://www.iso.org/standard/71155.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO/TR 21865:2017,https://www.iso.org/standard/72013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO/CD 22863-1,https://www.iso.org/standard/74058.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO/CD 22863-2,https://www.iso.org/standard/74061.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO/CD 22863-3,https://www.iso.org/standard/74060.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 25947-1:2017,https://www.iso.org/standard/64851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 25947-2:2017,https://www.iso.org/standard/65066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 25947-3:2017,https://www.iso.org/standard/65067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 25947-4:2017,https://www.iso.org/standard/65068.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 25947-5:2017,https://www.iso.org/standard/65069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 26261-1:2017,https://www.iso.org/standard/64852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 26261-2:2017,https://www.iso.org/standard/65070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 26261-3:2017,https://www.iso.org/standard/65071.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 26261-4:2017,https://www.iso.org/standard/65072.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 264,https://www.iso.org/contents/data/committee/64/86/648605/x/catalogue/ -ISO 304:1985,https://www.iso.org/standard/4238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 304:1985/Cor 1:1998,https://www.iso.org/standard/30356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 456:1973,https://www.iso.org/standard/4478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 457:1983,https://www.iso.org/standard/4480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 607:1980,https://www.iso.org/standard/4721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 672:1978,https://www.iso.org/standard/4837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 673:1981,https://www.iso.org/standard/4838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 684:1974,https://www.iso.org/standard/4879.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 685:1975,https://www.iso.org/standard/4880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 696:1975,https://www.iso.org/standard/4896.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 697:1981,https://www.iso.org/standard/4897.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 862:1984,https://www.iso.org/standard/5243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 862:1984/Cor 1:1993,https://www.iso.org/standard/22165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 893:1989,https://www.iso.org/standard/5284.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 894:1977,https://www.iso.org/standard/5285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 895:1977,https://www.iso.org/standard/5286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 1063:1974,https://www.iso.org/standard/5555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 1064:1974,https://www.iso.org/standard/5556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 1065:1991,https://www.iso.org/standard/5558.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 1066:1975,https://www.iso.org/standard/5559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 1067:1974,https://www.iso.org/standard/5560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 1104:1977,https://www.iso.org/standard/5621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2131:1972,https://www.iso.org/standard/6921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2174:1990,https://www.iso.org/standard/6972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2267:1986,https://www.iso.org/standard/7086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2268:1972,https://www.iso.org/standard/7088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2270:1989,https://www.iso.org/standard/7092.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2271:1989,https://www.iso.org/standard/7094.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2272:1989,https://www.iso.org/standard/7096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2456:1986,https://www.iso.org/standard/7371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2868:1973,https://www.iso.org/standard/7881.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2869:1973,https://www.iso.org/standard/7882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2870:2009,https://www.iso.org/standard/45657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2871-1:2010,https://www.iso.org/standard/53739.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 2871-2:2010,https://www.iso.org/standard/53740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4198:1984,https://www.iso.org/standard/9982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4311:1979,https://www.iso.org/standard/10177.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4312:1989,https://www.iso.org/standard/10180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4313:1976,https://www.iso.org/standard/10182.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4314:1977,https://www.iso.org/standard/10183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4315:1977,https://www.iso.org/standard/10184.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4316:1977,https://www.iso.org/standard/10185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4317:2011,https://www.iso.org/standard/55762.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4318:1989,https://www.iso.org/standard/10189.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4319:1977,https://www.iso.org/standard/10190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4320:1977,https://www.iso.org/standard/10191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4321:1977,https://www.iso.org/standard/10192.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4322:1977,https://www.iso.org/standard/10193.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4323:1977,https://www.iso.org/standard/10195.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO/DIS 4323,https://www.iso.org/standard/69740.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4324:1977,https://www.iso.org/standard/10196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4325:1990,https://www.iso.org/standard/10198.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4326:1980,https://www.iso.org/standard/10199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 4327:1979,https://www.iso.org/standard/10201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6121:1988,https://www.iso.org/standard/12342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6122:1978,https://www.iso.org/standard/12343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6384:1981,https://www.iso.org/standard/12717.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6387:1983,https://www.iso.org/standard/12721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6388:1989,https://www.iso.org/standard/12723.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6835:1981,https://www.iso.org/standard/13341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6836:1983,https://www.iso.org/standard/13342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6837:1982,https://www.iso.org/standard/13343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6839:1982,https://www.iso.org/standard/13344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6840:1982,https://www.iso.org/standard/13345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6841:1988,https://www.iso.org/standard/13347.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6842:1989,https://www.iso.org/standard/13349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6843:1988,https://www.iso.org/standard/13350.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6844:1983,https://www.iso.org/standard/13351.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6845:1989,https://www.iso.org/standard/13353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 6889:1986,https://www.iso.org/standard/13412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 7535:1984,https://www.iso.org/standard/14311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 8022:1990,https://www.iso.org/standard/15032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 8212:1986,https://www.iso.org/standard/15308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 8214:1985,https://www.iso.org/standard/15310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 8215:1985,https://www.iso.org/standard/15311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 8799:2009,https://www.iso.org/standard/52126.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 9101:1987,https://www.iso.org/standard/16696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 16560:2015,https://www.iso.org/standard/57112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 17280:2015,https://www.iso.org/standard/59514.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 17293-1:2014,https://www.iso.org/standard/59516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 17293-2:2014,https://www.iso.org/standard/60484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 19619:2018,https://www.iso.org/standard/65509.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO/DIS 21264,https://www.iso.org/standard/70332.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO/DIS 21703,https://www.iso.org/standard/71366.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 91,https://www.iso.org/contents/data/committee/05/04/50490/x/catalogue/ -ISO 817:2014,https://www.iso.org/standard/52433.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 8,https://www.iso.org/contents/data/committee/05/03/50388/x/catalogue/ -ISO 817:2014/Amd 1:2017,https://www.iso.org/standard/73250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 8,https://www.iso.org/contents/data/committee/05/03/50388/x/catalogue/ -ISO 17584:2005,https://www.iso.org/standard/39722.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 86/SC 8,https://www.iso.org/contents/data/committee/05/03/50388/x/catalogue/ -ISO/NP 17584,https://www.iso.org/standard/75112.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 86/SC 8,https://www.iso.org/contents/data/committee/05/03/50388/x/catalogue/ -ISO 21887:2007,https://www.iso.org/standard/40502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165/SC 1,https://www.iso.org/contents/data/committee/05/36/53604/x/catalogue/ -ISO/TS 210:2014,https://www.iso.org/standard/65538.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO/TS 211:2014,https://www.iso.org/standard/65539.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 212:2007,https://www.iso.org/standard/41973.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 212:2007/Amd 1:2012,https://www.iso.org/standard/57592.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 279:1998,https://www.iso.org/standard/25308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 280:1998,https://www.iso.org/standard/25309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 356:1996,https://www.iso.org/standard/4322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 592:1998,https://www.iso.org/standard/25311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 709:2001,https://www.iso.org/standard/28590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 770:2002,https://www.iso.org/standard/32028.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 855:2003,https://www.iso.org/standard/32042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 856:2006,https://www.iso.org/standard/32041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 875:1999,https://www.iso.org/standard/25312.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 1041:1973,https://www.iso.org/standard/5518.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 1241:1996,https://www.iso.org/standard/5857.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 1242:1999,https://www.iso.org/standard/25313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 1271:1983,https://www.iso.org/standard/5872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 1272:2000,https://www.iso.org/standard/25314.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 1279:1996,https://www.iso.org/standard/5880.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 1342:2012,https://www.iso.org/standard/56521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3033-1:2005,https://www.iso.org/standard/34580.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3033-2:2005,https://www.iso.org/standard/34581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3033-3:2005,https://www.iso.org/standard/34582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3033-4:2005,https://www.iso.org/standard/34583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3044:1997,https://www.iso.org/standard/8134.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3045:2004,https://www.iso.org/standard/35233.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3053:2004,https://www.iso.org/standard/32040.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3054:2017,https://www.iso.org/standard/67961.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3061:2008,https://www.iso.org/standard/41617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3063:2004,https://www.iso.org/standard/34878.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3064:2015,https://www.iso.org/standard/58032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3065:2011,https://www.iso.org/standard/52141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3140:2011,https://www.iso.org/standard/46430.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO/DIS 3140,https://www.iso.org/standard/74546.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3141:1997,https://www.iso.org/standard/8310.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3142:1997,https://www.iso.org/standard/8312.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3143:1997,https://www.iso.org/standard/8314.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3214:2000,https://www.iso.org/standard/33747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3215:1998,https://www.iso.org/standard/8418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3216:1997,https://www.iso.org/standard/8420.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3217:1974,https://www.iso.org/standard/8421.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3218:2014,https://www.iso.org/standard/56820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3475:2002,https://www.iso.org/standard/32039.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3515:2002,https://www.iso.org/standard/36253.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3515:2002/Cor 1:2004,https://www.iso.org/standard/39888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3516:1997,https://www.iso.org/standard/8885.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3517:2012,https://www.iso.org/standard/45645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3518:2002,https://www.iso.org/standard/32037.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3519:2005,https://www.iso.org/standard/37623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3520:1998,https://www.iso.org/standard/8893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3520:1998/Cor 1:2002,https://www.iso.org/standard/36353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3523:2002,https://www.iso.org/standard/32030.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3524:2003,https://www.iso.org/standard/32036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3525:2008,https://www.iso.org/standard/44754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3526:2005,https://www.iso.org/standard/37275.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3527:2016,https://www.iso.org/standard/69689.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3528:2012,https://www.iso.org/standard/53970.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3756:1976,https://www.iso.org/standard/9253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3757:2002,https://www.iso.org/standard/32035.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3760:2002,https://www.iso.org/standard/32029.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3761:2005,https://www.iso.org/standard/34823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3794:1976,https://www.iso.org/standard/9326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3809:2004,https://www.iso.org/standard/28588.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3848:2016,https://www.iso.org/standard/65251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 3849:2003,https://www.iso.org/standard/32034.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4715:1978,https://www.iso.org/standard/10699.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4716:2013,https://www.iso.org/standard/55965.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4718:2004,https://www.iso.org/standard/32032.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4719:2012,https://www.iso.org/standard/55964.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4720:2009,https://www.iso.org/standard/42947.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO/FDIS 4720,https://www.iso.org/standard/69688.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4724:2004,https://www.iso.org/standard/32033.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4725:2004,https://www.iso.org/standard/34879.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4727:1988,https://www.iso.org/standard/10710.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4728:2003,https://www.iso.org/standard/30436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4729:1984,https://www.iso.org/standard/10712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4730:2017,https://www.iso.org/standard/69082.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4730:2017/DAmd 1,https://www.iso.org/standard/74547.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4731:2012,https://www.iso.org/standard/52144.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4733:2004,https://www.iso.org/standard/36803.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 4735:2002,https://www.iso.org/standard/34880.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 7358:2002,https://www.iso.org/standard/32043.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 7359:1985,https://www.iso.org/standard/14048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 7609:1985,https://www.iso.org/standard/14397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 7660:1983,https://www.iso.org/standard/14479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 8432:1987,https://www.iso.org/standard/15613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 8896:2016,https://www.iso.org/standard/66253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 8897:2010,https://www.iso.org/standard/46552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 8898:2003,https://www.iso.org/standard/33769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 8899:2003,https://www.iso.org/standard/34432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 8900:2005,https://www.iso.org/standard/37052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 8901:2003,https://www.iso.org/standard/28586.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 8902:2009,https://www.iso.org/standard/45332.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9235:2013,https://www.iso.org/standard/51017.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9235:2013/Cor 1:2014,https://www.iso.org/standard/66365.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9301:2003,https://www.iso.org/standard/34045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9776:1999,https://www.iso.org/standard/17638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9841:2013,https://www.iso.org/standard/57475.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9842:2003,https://www.iso.org/standard/28611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9843:2002,https://www.iso.org/standard/30965.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9844:2006,https://www.iso.org/standard/37053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9909:1997,https://www.iso.org/standard/17791.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 9910:1991,https://www.iso.org/standard/17792.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 10115:2013,https://www.iso.org/standard/56159.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 10624:1998,https://www.iso.org/standard/18716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 10869:2010,https://www.iso.org/standard/46250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 11016:1999,https://www.iso.org/standard/19000.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO/TR 11018:1997,https://www.iso.org/standard/19002.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 11019:1998,https://www.iso.org/standard/19003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 11020:1998,https://www.iso.org/standard/19004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 11021:1999,https://www.iso.org/standard/19005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 11023:1999,https://www.iso.org/standard/19007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 11024-1:1998,https://www.iso.org/standard/19008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 11024-2:1998,https://www.iso.org/standard/19009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 11043:1998,https://www.iso.org/standard/19023.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 13171:2016,https://www.iso.org/standard/66202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 14714:1998,https://www.iso.org/standard/24647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 14716:1998,https://www.iso.org/standard/24649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 14717:2008,https://www.iso.org/standard/44703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 16385:2014,https://www.iso.org/standard/56620.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 16928:2014,https://www.iso.org/standard/57978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 17382:2007,https://www.iso.org/standard/38348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 17412:2007,https://www.iso.org/standard/38351.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 17494:2001,https://www.iso.org/standard/29825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 18054:2004,https://www.iso.org/standard/29826.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 18321:2015,https://www.iso.org/standard/62160.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 19332:2007,https://www.iso.org/standard/39049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 19817:2017,https://www.iso.org/standard/66267.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 20809:2017,https://www.iso.org/standard/69216.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO/TR 21092:2004,https://www.iso.org/standard/35648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 21093:2003,https://www.iso.org/standard/35650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 21389:2004,https://www.iso.org/standard/35861.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 21390:2005,https://www.iso.org/standard/35862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO/CD 21631,https://www.iso.org/standard/71285.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 22769:2009,https://www.iso.org/standard/41140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 22972:2004,https://www.iso.org/standard/35232.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 23954:2009,https://www.iso.org/standard/41953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 25157:2013,https://www.iso.org/standard/61868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 54,https://www.iso.org/contents/data/committee/04/89/48956/x/catalogue/ -ISO 10130:2009,https://www.iso.org/standard/45840.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 12787:2011,https://www.iso.org/standard/51709.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/TR 14735:2013,https://www.iso.org/standard/54399.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 15819:2014,https://www.iso.org/standard/62042.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 16128-1:2016,https://www.iso.org/standard/62503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 16128-2:2017,https://www.iso.org/standard/65197.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/AWI 16217,https://www.iso.org/standard/61437.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/TR 17276:2014,https://www.iso.org/standard/59500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/TR 18811,https://www.iso.org/standard/63465.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/TR 18818:2017,https://www.iso.org/standard/63466.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 21148:2017,https://www.iso.org/standard/72239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 22715:2006,https://www.iso.org/standard/36436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 22716:2007,https://www.iso.org/standard/36437.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 24442:2011,https://www.iso.org/standard/46521.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 24443:2012,https://www.iso.org/standard/46522.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/NP 24443,https://www.iso.org/standard/75059.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 24444:2010,https://www.iso.org/standard/46523.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/NP 24444,https://www.iso.org/standard/72250.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/TR 24475:2010,https://www.iso.org/standard/42249.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO/TR 26369:2009,https://www.iso.org/standard/43533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 217,https://www.iso.org/contents/data/committee/05/49/54974/x/catalogue/ -ISO 5771:2008,https://www.iso.org/standard/43694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 10439-1:2015,https://www.iso.org/standard/56883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10439-2:2015,https://www.iso.org/standard/56884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10439-3:2015,https://www.iso.org/standard/56885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10439-4:2015,https://www.iso.org/standard/56886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 13709:2009,https://www.iso.org/standard/41612.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO/DIS 22734,https://www.iso.org/standard/69212.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 22734-1:2008,https://www.iso.org/standard/41043.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 22734-2:2011,https://www.iso.org/standard/41044.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 197,https://www.iso.org/contents/data/committee/05/45/54560/x/catalogue/ -ISO 18871:2015,https://www.iso.org/standard/63649.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 263,https://www.iso.org/contents/data/committee/63/82/638206/x/catalogue/ -ISO 18875:2015,https://www.iso.org/standard/63650.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 263,https://www.iso.org/contents/data/committee/63/82/638206/x/catalogue/ -ISO/DIS 19426-1,https://www.iso.org/standard/72221.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/DIS 19426-2,https://www.iso.org/standard/72222.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/DIS 19426-3,https://www.iso.org/standard/72223.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/DIS 19426-4,https://www.iso.org/standard/72224.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/DIS 19426-5,https://www.iso.org/standard/72225.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 19434:2017,https://www.iso.org/standard/64897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 19434:2017/CD Amd 1,https://www.iso.org/standard/74715.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 157:1996,https://www.iso.org/standard/3988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 157:1996/Cor 1:1999,https://www.iso.org/standard/32458.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 334:2013,https://www.iso.org/standard/63441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 349:1975,https://www.iso.org/standard/4300.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO/CD 349,https://www.iso.org/standard/71376.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 501:2012,https://www.iso.org/standard/55498.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 502:2015,https://www.iso.org/standard/64983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 540:2008,https://www.iso.org/standard/41484.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 562:2010,https://www.iso.org/standard/55943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 589:2008,https://www.iso.org/standard/45370.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 602:2015,https://www.iso.org/standard/67724.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 609:1996,https://www.iso.org/standard/4724.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 609:1996/Cor 1:1996,https://www.iso.org/standard/27351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 625:1996,https://www.iso.org/standard/4746.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 625:1996/Cor 1:1996,https://www.iso.org/standard/27352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 647:2017,https://www.iso.org/standard/70840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 975:2013,https://www.iso.org/standard/63042.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 1017:2006,https://www.iso.org/standard/41353.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 1018:1975,https://www.iso.org/standard/5488.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO/AWI 1018,https://www.iso.org/standard/74448.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 1170:2013,https://www.iso.org/standard/62609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 1213-1:1993,https://www.iso.org/standard/5814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 1213-2:2016,https://www.iso.org/standard/61543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 1952:2008,https://www.iso.org/standard/41590.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 1953:2015,https://www.iso.org/standard/63664.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 2950:1974,https://www.iso.org/standard/7997.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 5068-1:2007,https://www.iso.org/standard/41356.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 5068-2:2007,https://www.iso.org/standard/41357.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 5069-1:1983,https://www.iso.org/standard/11091.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 5069-2:1983,https://www.iso.org/standard/11092.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 5071-1:2013,https://www.iso.org/standard/63045.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 5072:2013,https://www.iso.org/standard/63044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 5073:2013,https://www.iso.org/standard/63043.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 5074:2015,https://www.iso.org/standard/63236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 7404-1:2016,https://www.iso.org/standard/67682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 7404-2:2009,https://www.iso.org/standard/42798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 7404-3:2009,https://www.iso.org/standard/42831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 7404-4:2017,https://www.iso.org/standard/69224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 7404-5:2009,https://www.iso.org/standard/42832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 7936:1992,https://www.iso.org/standard/14906.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 8264:1989,https://www.iso.org/standard/15378.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 8833:1989,https://www.iso.org/standard/16309.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 8858-1:1990,https://www.iso.org/standard/16337.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 8858-2:2004,https://www.iso.org/standard/34310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 8858-3:2004,https://www.iso.org/standard/34311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 9931:1991,https://www.iso.org/standard/17825.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 10086-1:2000,https://www.iso.org/standard/18058.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 10086-2:2004,https://www.iso.org/standard/33290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 10329:2017,https://www.iso.org/standard/70838.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 11722:2013,https://www.iso.org/standard/62610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 11723:2016,https://www.iso.org/standard/70209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 11724:2016,https://www.iso.org/standard/70210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 11760:2005,https://www.iso.org/standard/38898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27,https://www.iso.org/contents/data/committee/04/72/47264/x/catalogue/ -ISO 12900:2015,https://www.iso.org/standard/67725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO/DIS 13605,https://www.iso.org/standard/71597.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO/TS 13605:2012,https://www.iso.org/standard/54059.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 13909-1:2016,https://www.iso.org/standard/63907.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-2:2016,https://www.iso.org/standard/63908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-3:2016,https://www.iso.org/standard/63909.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-4:2016,https://www.iso.org/standard/63910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-7:2016,https://www.iso.org/standard/63913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-8:2016,https://www.iso.org/standard/63914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 14180:2017,https://www.iso.org/standard/66498.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 15117-1:2004,https://www.iso.org/standard/38262.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 15237:2016,https://www.iso.org/standard/70207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 15238:2016,https://www.iso.org/standard/70206.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 15585:2006,https://www.iso.org/standard/41133.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO/NP 15585,https://www.iso.org/standard/70839.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 17246:2010,https://www.iso.org/standard/55946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 17247:2013,https://www.iso.org/standard/63442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 18283:2006,https://www.iso.org/standard/31776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 18283:2006/Cor 1:2009,https://www.iso.org/standard/54326.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 19579:2006,https://www.iso.org/standard/39113.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 20904:2006,https://www.iso.org/standard/39992.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO/DIS 20904,https://www.iso.org/standard/75343.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 20905:2004,https://www.iso.org/standard/34313.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 21398:2007,https://www.iso.org/standard/40209.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO/DIS 21398,https://www.iso.org/standard/75342.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 23380:2013,https://www.iso.org/standard/63443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 23499:2013,https://www.iso.org/standard/63444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 23873:2010,https://www.iso.org/standard/56194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 29541:2010,https://www.iso.org/standard/45546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 2596:2006,https://www.iso.org/standard/42196.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 2597-1:2006,https://www.iso.org/standard/39725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 2597-2:2015,https://www.iso.org/standard/62278.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/DIS 2597-2,https://www.iso.org/standard/74312.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/WD 2597-4,https://www.iso.org/standard/50478.html,20.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 2598-1:1992,https://www.iso.org/standard/7583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 2598-2:1992,https://www.iso.org/standard/10666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 2599:2003,https://www.iso.org/standard/31661.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 3082:2017,https://www.iso.org/standard/66457.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO 3084:1998,https://www.iso.org/standard/8216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO 3085:2002,https://www.iso.org/standard/32136.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO/WD 3085,https://www.iso.org/standard/72160.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO 3086:2006,https://www.iso.org/standard/34679.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO 3087:2011,https://www.iso.org/standard/51476.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO/WD 3087,https://www.iso.org/standard/72159.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO 3271:2015,https://www.iso.org/standard/62135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 3852:2007,https://www.iso.org/standard/38080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 4687-1:1992,https://www.iso.org/standard/10668.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/TR 4688-1:2017,https://www.iso.org/standard/71884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 4689:1986,https://www.iso.org/standard/10671.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/WD 4689-1,https://www.iso.org/standard/67679.html,20.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 4689-2:2017,https://www.iso.org/standard/72130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 4689-3:2017,https://www.iso.org/standard/72131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 4691:2009,https://www.iso.org/standard/45796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 4694:1987,https://www.iso.org/standard/10676.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 4695:2015,https://www.iso.org/standard/62141.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 4696-1:2015,https://www.iso.org/standard/62136.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 4696-2:2015,https://www.iso.org/standard/62137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 4698:2007,https://www.iso.org/standard/38076.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 4700:2015,https://www.iso.org/standard/62146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 4701:2017,https://www.iso.org/standard/71864.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO 5416:2006,https://www.iso.org/standard/39727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 5418-1:2006,https://www.iso.org/standard/43946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 5418-2:2006,https://www.iso.org/standard/43947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 6830:1986,https://www.iso.org/standard/13338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 7215:2015,https://www.iso.org/standard/62142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 7335:1987,https://www.iso.org/standard/14013.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 7764:2006,https://www.iso.org/standard/35007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 7834:1987,https://www.iso.org/standard/14755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 7992:2015,https://www.iso.org/standard/62143.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 8263:1992,https://www.iso.org/standard/15377.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 8371:2015,https://www.iso.org/standard/62138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 9035:1989,https://www.iso.org/standard/16596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 9516-1:2003,https://www.iso.org/standard/27131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 9517:2007,https://www.iso.org/standard/43951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 9682-1:2009,https://www.iso.org/standard/45794.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 9682-2:2006,https://www.iso.org/standard/43952.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 9683-1:2006,https://www.iso.org/standard/43945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 9683-2:2009,https://www.iso.org/standard/45322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 9685:1991,https://www.iso.org/standard/17540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/TR 9686:2017,https://www.iso.org/standard/71896.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 10203:2017,https://www.iso.org/standard/69807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 10204:2017,https://www.iso.org/standard/71883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 10835:2007,https://www.iso.org/standard/34680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO 11256:2015,https://www.iso.org/standard/62144.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 11257:2015,https://www.iso.org/standard/62139.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 11258:2015,https://www.iso.org/standard/62145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 11323:2010,https://www.iso.org/standard/44231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102,https://www.iso.org/contents/data/committee/05/10/51012/x/catalogue/ -ISO/TR 11422:1996,https://www.iso.org/standard/19361.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 11459:1997,https://www.iso.org/standard/19410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 11533:2009,https://www.iso.org/standard/45795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 11534:2006,https://www.iso.org/standard/43943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 11535:2006,https://www.iso.org/standard/43944.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 11536:2015,https://www.iso.org/standard/61771.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 13310:1997,https://www.iso.org/standard/21680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 13311:1997,https://www.iso.org/standard/21681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 13312:2017,https://www.iso.org/standard/71001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 13313:2017,https://www.iso.org/standard/71000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 13930:2015,https://www.iso.org/standard/62140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 15633:2017,https://www.iso.org/standard/73611.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 15634:2015,https://www.iso.org/standard/67674.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 15967:2007,https://www.iso.org/standard/38097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 15968:2016,https://www.iso.org/standard/66423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 16042:2007,https://www.iso.org/standard/42269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/TR 16043:2015,https://www.iso.org/standard/44953.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 16742:2014,https://www.iso.org/standard/57567.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 1,https://www.iso.org/contents/data/committee/05/10/51024/x/catalogue/ -ISO 16878:2016,https://www.iso.org/standard/68783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/DTR 16879,https://www.iso.org/standard/43730.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 17992:2013,https://www.iso.org/standard/43594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/TR 18230:2015,https://www.iso.org/standard/61831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/TR 18231:2016,https://www.iso.org/standard/61835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/TR 18336:2016,https://www.iso.org/standard/62200.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO/FDIS 21283,https://www.iso.org/standard/70425.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 102/SC 3,https://www.iso.org/contents/data/committee/05/11/51112/x/catalogue/ -ISO 22682:2017,https://www.iso.org/standard/43732.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 102/SC 2,https://www.iso.org/contents/data/committee/05/10/51044/x/catalogue/ -ISO 310:1992,https://www.iso.org/standard/4249.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 312:1986,https://www.iso.org/standard/4252.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 315:1984,https://www.iso.org/standard/4257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 317:1984,https://www.iso.org/standard/4260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 320:1981,https://www.iso.org/standard/4263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 548:1981,https://www.iso.org/standard/4627.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 549:1981,https://www.iso.org/standard/4629.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 619:1981,https://www.iso.org/standard/4738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4293:1982,https://www.iso.org/standard/10137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4295:1988,https://www.iso.org/standard/10141.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4296-1:1984,https://www.iso.org/standard/10142.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4296-2:1983,https://www.iso.org/standard/10143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4297:1978,https://www.iso.org/standard/10144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4298:1984,https://www.iso.org/standard/10146.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4299:1989,https://www.iso.org/standard/10148.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4571:1981,https://www.iso.org/standard/10493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5889:1983,https://www.iso.org/standard/12088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5890:1981,https://www.iso.org/standard/12089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6230:1989,https://www.iso.org/standard/12507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6233:1983,https://www.iso.org/standard/12508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 7723:1984,https://www.iso.org/standard/14556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 7953:1985,https://www.iso.org/standard/14930.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 7969:1985,https://www.iso.org/standard/14957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 7990:1985,https://www.iso.org/standard/14987.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8530:1986,https://www.iso.org/standard/15769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8531:1986,https://www.iso.org/standard/15771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8541:1986,https://www.iso.org/standard/15790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8542:1986,https://www.iso.org/standard/15791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 9292:1988,https://www.iso.org/standard/16947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 9681:1990,https://www.iso.org/standard/17536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5975:1983,https://www.iso.org/standard/12168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5997:1984,https://www.iso.org/standard/12193.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6127:1981,https://www.iso.org/standard/12356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6129:1981,https://www.iso.org/standard/12357.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6130:1985,https://www.iso.org/standard/12358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6153:1989,https://www.iso.org/standard/12396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6154:1989,https://www.iso.org/standard/12397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6331:1983,https://www.iso.org/standard/12628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6629:1981,https://www.iso.org/standard/13046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8889:1988,https://www.iso.org/standard/16415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6139:1993,https://www.iso.org/standard/12368.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 12,https://www.iso.org/contents/data/committee/57/49/5749105/x/catalogue/ -ISO 8685:1992,https://www.iso.org/standard/16085.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 12,https://www.iso.org/contents/data/committee/57/49/5749105/x/catalogue/ -ISO 9599:2015,https://www.iso.org/standard/63361.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 10251:2006,https://www.iso.org/standard/41316.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 10258,https://www.iso.org/standard/74664.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 10258:2015,https://www.iso.org/standard/63362.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 10378:2016,https://www.iso.org/standard/68189.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 10469:2006,https://www.iso.org/standard/39286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 11441:1995,https://www.iso.org/standard/19381.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 11790:2017,https://www.iso.org/standard/71138.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 11794:2017,https://www.iso.org/standard/71139.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 12739:2006,https://www.iso.org/standard/37617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 12740:1998,https://www.iso.org/standard/2659.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 12742:2007,https://www.iso.org/standard/39285.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO/AWI 12742,https://www.iso.org/standard/63365.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 12743:2006,https://www.iso.org/standard/40697.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO/FDIS 12743,https://www.iso.org/standard/69467.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 12744:2006,https://www.iso.org/standard/41317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 12745:2008,https://www.iso.org/standard/45783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 13291:2006,https://www.iso.org/standard/37618.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 13292:2006,https://www.iso.org/standard/41318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 13543:2016,https://www.iso.org/standard/63363.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 13545:2000,https://www.iso.org/standard/21524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 13547-1:2014,https://www.iso.org/standard/54379.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 13547-2:2014,https://www.iso.org/standard/54380.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 13658:2000,https://www.iso.org/standard/22486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 15247:2015,https://www.iso.org/standard/63364.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 15248:1998,https://www.iso.org/standard/27057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 15249:1998,https://www.iso.org/standard/27058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO/TR 15855:2001,https://www.iso.org/standard/28832.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO/DIS 19976-1,https://www.iso.org/standard/66779.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO/DIS 19976-2,https://www.iso.org/standard/69334.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 183,https://www.iso.org/contents/data/committee/05/40/54074/x/catalogue/ -ISO 10058-1:2008,https://www.iso.org/standard/43701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10058-2:2008,https://www.iso.org/standard/43702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10058-3:2008,https://www.iso.org/standard/43703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 721:1991,https://www.iso.org/standard/4952.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 722:1991,https://www.iso.org/standard/4954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 723:1991,https://www.iso.org/standard/4956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1717:1974,https://www.iso.org/standard/6335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1718:1991,https://www.iso.org/standard/6338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1721:1974,https://www.iso.org/standard/6341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1722:1974,https://www.iso.org/standard/6342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 3551-1:1992,https://www.iso.org/standard/8949.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 3551-2:1992,https://www.iso.org/standard/8950.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 3552-1:1992,https://www.iso.org/standard/8951.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 3552-2:1992,https://www.iso.org/standard/8952.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 6805:1994,https://www.iso.org/standard/13310.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/CD 6805,https://www.iso.org/standard/72843.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8866:1991,https://www.iso.org/standard/16357.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 8866:1991/Cor 1:1991,https://www.iso.org/standard/16358.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 8866:1991/Cor 2:1992,https://www.iso.org/standard/16359.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 10097-1:1999,https://www.iso.org/standard/18071.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 10097-2:1999,https://www.iso.org/standard/22103.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 10098:1992,https://www.iso.org/standard/18072.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 10207:1991,https://www.iso.org/standard/18238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 10207:1991/Cor 1:1991,https://www.iso.org/standard/18239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 10208:1991,https://www.iso.org/standard/18240.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/DIS 18758-1,https://www.iso.org/standard/67706.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO/DIS 18758-2,https://www.iso.org/standard/67707.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 19224:2017,https://www.iso.org/standard/64049.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 19225:2017,https://www.iso.org/standard/64050.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 19225:2017/NP Amd 1,https://www.iso.org/standard/74710.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 610:1990,https://www.iso.org/standard/4726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1082:1990,https://www.iso.org/standard/5581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 3154:1988,https://www.iso.org/standard/8326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 3155:1976,https://www.iso.org/standard/8327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 3156:1976,https://www.iso.org/standard/8328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 5612:1990,https://www.iso.org/standard/11690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 5613:1984,https://www.iso.org/standard/11691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 5614:1988,https://www.iso.org/standard/11692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 6984:1990,https://www.iso.org/standard/13544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO/TR 8865:1990,https://www.iso.org/standard/16356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 22721:2007,https://www.iso.org/standard/41082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 41/SC 3,https://www.iso.org/contents/data/committee/04/84/48414/x/catalogue/ -ISO 19296,https://www.iso.org/standard/64455.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 561:1989,https://www.iso.org/standard/4651.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 923:2000,https://www.iso.org/standard/1590.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO/DIS 923,https://www.iso.org/standard/70105.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 924:1989,https://www.iso.org/standard/5340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 2194:1991,https://www.iso.org/standard/6995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 4782:1987,https://www.iso.org/standard/10759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 4783-1:1989,https://www.iso.org/standard/10761.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 4783-2:1989,https://www.iso.org/standard/10763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 4783-3:1981,https://www.iso.org/standard/10764.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 7805-1:1984,https://www.iso.org/standard/14701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 7805-2:1987,https://www.iso.org/standard/14702.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 7806:1983,https://www.iso.org/standard/14703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 9044:2016,https://www.iso.org/standard/62411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 9045:1990,https://www.iso.org/standard/16612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 10630:1994,https://www.iso.org/standard/18723.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 10752:1994,https://www.iso.org/standard/18841.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 10753:1994,https://www.iso.org/standard/18842.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 14315:1997,https://www.iso.org/standard/23703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 24/SC 8,https://www.iso.org/contents/data/committee/56/03/560340/x/catalogue/ -ISO 10426-1:2009,https://www.iso.org/standard/46188.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-1:2009/Cor 1:2010,https://www.iso.org/standard/56126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-1:2009/Cor 2:2012,https://www.iso.org/standard/61621.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-2:2003,https://www.iso.org/standard/37866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-2:2003/Amd 1:2005,https://www.iso.org/standard/41129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-2:2003/Cor 1:2006,https://www.iso.org/standard/44339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO/DIS 10426-2,https://www.iso.org/standard/55811.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-3:2003,https://www.iso.org/standard/35430.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO/DIS 10426-3,https://www.iso.org/standard/74630.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-4:2004,https://www.iso.org/standard/36236.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO/DIS 10426-4,https://www.iso.org/standard/74631.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-5:2004,https://www.iso.org/standard/38267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-6:2008,https://www.iso.org/standard/41941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10628-1:2014,https://www.iso.org/standard/51840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 10628-2:2012,https://www.iso.org/standard/51841.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 13879:1999,https://www.iso.org/standard/23135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 13880:1999,https://www.iso.org/standard/23136.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/TR 13881:2000,https://www.iso.org/standard/23137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15663-1:2000,https://www.iso.org/standard/28625.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15663-2:2001,https://www.iso.org/standard/28626.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15663-3:2001,https://www.iso.org/standard/28627.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15926-1:2004,https://www.iso.org/standard/29556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 15926-2:2003,https://www.iso.org/standard/29557.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-3:2009,https://www.iso.org/standard/42875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DTS 15926-4,https://www.iso.org/standard/73830.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-4:2007,https://www.iso.org/standard/41329.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-4:2007/Amd 1:2010,https://www.iso.org/standard/53791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-6:2013,https://www.iso.org/standard/56819.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/WD 15926-6,https://www.iso.org/standard/70693.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-7:2011,https://www.iso.org/standard/52455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-8:2011,https://www.iso.org/standard/52456.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/TS 15926-11:2015,https://www.iso.org/standard/57859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/PRF TS 15926-12,https://www.iso.org/standard/70695.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO/DIS 15926-13,https://www.iso.org/standard/70694.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 184/SC 4,https://www.iso.org/contents/data/committee/05/41/54158/x/catalogue/ -ISO 17349:2016,https://www.iso.org/standard/59612.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/DIS 17782.2,https://www.iso.org/standard/60527.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 19008:2016,https://www.iso.org/standard/63708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/CD 20074,https://www.iso.org/standard/66968.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 20675,https://www.iso.org/standard/68794.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 255,https://www.iso.org/contents/data/committee/61/70/617083/x/catalogue/ -ISO/DIS 29001,https://www.iso.org/standard/67773.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/TS 29001:2010,https://www.iso.org/standard/55499.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 35101:2017,https://www.iso.org/standard/63469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 8,https://www.iso.org/contents/data/committee/65/27/652790/x/catalogue/ -ISO/CD 35102,https://www.iso.org/standard/63470.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/65/27/652790/x/catalogue/ -ISO 35103:2017,https://www.iso.org/standard/63609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 8,https://www.iso.org/contents/data/committee/65/27/652790/x/catalogue/ -ISO/DIS 35104,https://www.iso.org/standard/63861.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 8,https://www.iso.org/contents/data/committee/65/27/652790/x/catalogue/ -ISO/PRF TS 35105,https://www.iso.org/standard/64155.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 67/SC 8,https://www.iso.org/contents/data/committee/65/27/652790/x/catalogue/ -ISO 35106:2017,https://www.iso.org/standard/64254.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 8,https://www.iso.org/contents/data/committee/65/27/652790/x/catalogue/ -ISO 3735:1999,https://www.iso.org/standard/25980.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 9029:1990,https://www.iso.org/standard/16590.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 9030:1990,https://www.iso.org/standard/16591.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 9114:1997,https://www.iso.org/standard/16709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 10336:1997,https://www.iso.org/standard/18387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 10337:1997,https://www.iso.org/standard/18388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 6326-1:2007,https://www.iso.org/standard/42932.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6326-3:1989,https://www.iso.org/standard/12619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6326-5:1989,https://www.iso.org/standard/12621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6327:1981,https://www.iso.org/standard/12622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6570:2001,https://www.iso.org/standard/32874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6974-1:2012,https://www.iso.org/standard/55839.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6974-1:2012/Cor 1:2012,https://www.iso.org/standard/63090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6974-2:2012,https://www.iso.org/standard/44108.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6974-3:2000,https://www.iso.org/standard/25854.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/DIS 6974-3,https://www.iso.org/standard/68632.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6974-4:2000,https://www.iso.org/standard/25855.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6974-5:2014,https://www.iso.org/standard/57080.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6974-6:2002,https://www.iso.org/standard/26238.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6974-6:2002/Cor 1:2003,https://www.iso.org/standard/39300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6975:1997,https://www.iso.org/standard/13529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6976:2016,https://www.iso.org/standard/55842.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6978-1:2003,https://www.iso.org/standard/38600.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6978-2:2003,https://www.iso.org/standard/38601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 6978-2:2003/Cor 2:2006,https://www.iso.org/standard/44137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 8943:2007,https://www.iso.org/standard/41508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 10101-1:1993,https://www.iso.org/standard/18075.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 10101-2:1993,https://www.iso.org/standard/18076.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 10101-3:1993,https://www.iso.org/standard/18077.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 10715:1997,https://www.iso.org/standard/18803.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 10723:2012,https://www.iso.org/standard/55712.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/TR 11150:2007,https://www.iso.org/standard/50143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 11541:1997,https://www.iso.org/standard/19495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/TR 12148:2009,https://www.iso.org/standard/51245.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 12213-1:2006,https://www.iso.org/standard/42899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 12213-2:2006,https://www.iso.org/standard/44411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 12213-3:2006,https://www.iso.org/standard/44412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/TR 12748:2015,https://www.iso.org/standard/67034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 3,https://www.iso.org/contents/data/committee/05/45/54506/x/catalogue/ -ISO 13443:1996,https://www.iso.org/standard/20461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 13443:1996/Cor 1:1997,https://www.iso.org/standard/29761.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 13686:2013,https://www.iso.org/standard/53058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 13734:2013,https://www.iso.org/standard/56767.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 14111:1997,https://www.iso.org/standard/22218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 14532:2014,https://www.iso.org/standard/59706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO/TR 14749:2016,https://www.iso.org/standard/63926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 3,https://www.iso.org/contents/data/committee/05/45/54506/x/catalogue/ -ISO 15112:2011,https://www.iso.org/standard/56157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 15403-1:2006,https://www.iso.org/standard/44211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO/TR 15403-2:2006,https://www.iso.org/standard/44210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 15970:2008,https://www.iso.org/standard/44868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 15971:2008,https://www.iso.org/standard/44867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO/TR 16922:2013,https://www.iso.org/standard/57082.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 16960:2014,https://www.iso.org/standard/58030.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/DTR 18222,https://www.iso.org/standard/71068.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 18453:2004,https://www.iso.org/standard/31799.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 19739:2004,https://www.iso.org/standard/33938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 19739:2004/Cor 1:2009,https://www.iso.org/standard/54014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/DIS 20676,https://www.iso.org/standard/68795.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 193/SC 3,https://www.iso.org/contents/data/committee/05/45/54506/x/catalogue/ -ISO 20729:2017,https://www.iso.org/standard/68924.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 20765-1:2005,https://www.iso.org/standard/40263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 20765-2:2015,https://www.iso.org/standard/59222.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/TR 22302:2014,https://www.iso.org/standard/63772.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 23874:2006,https://www.iso.org/standard/41056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/TR 24094:2006,https://www.iso.org/standard/43769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO/TR 26762:2008,https://www.iso.org/standard/43748.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 193/SC 3,https://www.iso.org/contents/data/committee/05/45/54506/x/catalogue/ -ISO/TR 29922:2017,https://www.iso.org/standard/67135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 1,https://www.iso.org/contents/data/committee/05/44/54460/x/catalogue/ -ISO 1516:2002,https://www.iso.org/standard/28656.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1523:2002,https://www.iso.org/standard/26981.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-1:1998,https://www.iso.org/standard/25402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-1:1998/Cor 1:1999,https://www.iso.org/standard/32321.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-2:1998,https://www.iso.org/standard/25403.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-3:1998,https://www.iso.org/standard/25404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-4:1998,https://www.iso.org/standard/25405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-5:1998,https://www.iso.org/standard/25406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-5:1998/Cor 1:1999,https://www.iso.org/standard/32323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-6:2000,https://www.iso.org/standard/25407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-7:1998,https://www.iso.org/standard/25408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1998-99:2000,https://www.iso.org/standard/23185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2049:1996,https://www.iso.org/standard/20069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2160:1998,https://www.iso.org/standard/27552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2592:2017,https://www.iso.org/standard/67910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2719:2016,https://www.iso.org/standard/62263.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2909:2002,https://www.iso.org/standard/29953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2977:1997,https://www.iso.org/standard/26481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3007:1999,https://www.iso.org/standard/8082.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3015:1992,https://www.iso.org/standard/8095.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/CD 3015,https://www.iso.org/standard/72765.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3016:1994,https://www.iso.org/standard/20721.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/CD 3016,https://www.iso.org/standard/73386.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3104:1994,https://www.iso.org/standard/8252.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3104:1994/Cor 1:1997,https://www.iso.org/standard/29014.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 3104,https://www.iso.org/standard/67965.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3170:2004,https://www.iso.org/standard/29283.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 3171:1988,https://www.iso.org/standard/8357.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 3405:2011,https://www.iso.org/standard/44095.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 3405,https://www.iso.org/standard/67956.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3675:1998,https://www.iso.org/standard/26326.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO/AWI 3675,https://www.iso.org/standard/72027.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 3679:2015,https://www.iso.org/standard/61924.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3733:1999,https://www.iso.org/standard/9219.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 3771:2011,https://www.iso.org/standard/44771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3837:1993,https://www.iso.org/standard/9399.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3837:1993/Cor 1:1994,https://www.iso.org/standard/24044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3837:1993/Cor 2:1996,https://www.iso.org/standard/27460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3838:2004,https://www.iso.org/standard/33724.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 3839:1996,https://www.iso.org/standard/22154.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3924:2016,https://www.iso.org/standard/66119.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 3924,https://www.iso.org/standard/72611.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3993:1984,https://www.iso.org/standard/9657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4259-1:2017,https://www.iso.org/standard/65236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4259-2:2017,https://www.iso.org/standard/65237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/CD 4259-3,https://www.iso.org/standard/65961.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4262:1993,https://www.iso.org/standard/20777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 5275:2003,https://www.iso.org/standard/34283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 5661:1983,https://www.iso.org/standard/11754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6245:2001,https://www.iso.org/standard/31156.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6293-1:1996,https://www.iso.org/standard/21191.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6293-2:1998,https://www.iso.org/standard/27140.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6296:2000,https://www.iso.org/standard/27593.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 6614:1994,https://www.iso.org/standard/20869.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6615:1993,https://www.iso.org/standard/20865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6618:1997,https://www.iso.org/standard/24802.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6618:1997/Cor 1:1999,https://www.iso.org/standard/32117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6619:1988,https://www.iso.org/standard/13031.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 7120:1987,https://www.iso.org/standard/13706.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 7537:1997,https://www.iso.org/standard/26477.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 7624:1997,https://www.iso.org/standard/14418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 8681:1986,https://www.iso.org/standard/16081.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 8754:2003,https://www.iso.org/standard/30062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 9038:2013,https://www.iso.org/standard/50182.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 10370:2014,https://www.iso.org/standard/57081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 12185:1996,https://www.iso.org/standard/21124.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 12185:1996/Cor 1:2001,https://www.iso.org/standard/35866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO/AWI 12185,https://www.iso.org/standard/67520.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 12937:2000,https://www.iso.org/standard/2730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 13736:2013,https://www.iso.org/standard/54734.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TR 13881:2000,https://www.iso.org/standard/23137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 14596:2007,https://www.iso.org/standard/42636.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 14597:1997,https://www.iso.org/standard/24885.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 14935:1998,https://www.iso.org/standard/25972.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 14935,https://www.iso.org/standard/71881.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 15029-1:1999,https://www.iso.org/standard/26260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/FDIS 15029-2,https://www.iso.org/standard/66950.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TS 15029-2:2012,https://www.iso.org/standard/59967.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 15597:2001,https://www.iso.org/standard/27764.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 16591:2010,https://www.iso.org/standard/45512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TR 19441,https://www.iso.org/standard/64906.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TR 19686-1:2014,https://www.iso.org/standard/66013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DTR 19686-2,https://www.iso.org/standard/73447.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TR 19686-100:2016,https://www.iso.org/standard/67964.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20764:2003,https://www.iso.org/standard/34263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20823:2003,https://www.iso.org/standard/34277.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/CD 20823,https://www.iso.org/standard/70736.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20844:2015,https://www.iso.org/standard/63726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20847:2004,https://www.iso.org/standard/34285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20884:2011,https://www.iso.org/standard/51814.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 20884,https://www.iso.org/standard/74314.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/CD 21493,https://www.iso.org/standard/70997.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 22854:2016,https://www.iso.org/standard/68966.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 22995,https://www.iso.org/standard/74319.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/NP TR 29662,https://www.iso.org/standard/72640.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TR 29662:2009,https://www.iso.org/standard/45623.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2137:2007,https://www.iso.org/standard/45650.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2176:1995,https://www.iso.org/standard/6975.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2176:1995/Cor 1:2001,https://www.iso.org/standard/35517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3448:1992,https://www.iso.org/standard/8774.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3448:1992/Cor 1:1993,https://www.iso.org/standard/22787.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3987:2010,https://www.iso.org/standard/44979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3987:2010/Cor 1:2011,https://www.iso.org/standard/57930.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4263-1:2003,https://www.iso.org/standard/35309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4263-4:2006,https://www.iso.org/standard/36955.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6247:1998,https://www.iso.org/standard/12528.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6247:1998/Cor 1:1999,https://www.iso.org/standard/32471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/WD 6247,https://www.iso.org/standard/70101.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6299:1998,https://www.iso.org/standard/12584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6617:1994,https://www.iso.org/standard/13029.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6743-1:2002,https://www.iso.org/standard/33046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-2:1981,https://www.iso.org/standard/13212.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-3:2003,https://www.iso.org/standard/26482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-5:2006,https://www.iso.org/standard/36444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-6:2018,https://www.iso.org/standard/70818.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-7:1986,https://www.iso.org/standard/13216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-8:1987,https://www.iso.org/standard/13217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-9:2003,https://www.iso.org/standard/23698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-10:1989,https://www.iso.org/standard/13219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-11:1990,https://www.iso.org/standard/13220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-12:1989,https://www.iso.org/standard/13221.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-13:2002,https://www.iso.org/standard/25001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-14:1994,https://www.iso.org/standard/13223.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-15:2007,https://www.iso.org/standard/40036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 6743-99:2002,https://www.iso.org/standard/33047.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 8068:2006,https://www.iso.org/standard/40037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 8068:2006/CD Amd 1,https://www.iso.org/standard/75354.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 9120:1997,https://www.iso.org/standard/16715.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 9950:1995,https://www.iso.org/standard/17848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 10416:2008,https://www.iso.org/standard/41940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 11007:1997,https://www.iso.org/standard/18991.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 11009:2000,https://www.iso.org/standard/32504.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/TS 11366:2011,https://www.iso.org/standard/54430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 12152:2012,https://www.iso.org/standard/51246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 12924:2010,https://www.iso.org/standard/44301.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 12924:2010/Cor 1:2012,https://www.iso.org/standard/62016.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 12925-1:2018,https://www.iso.org/standard/70817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO/TS 12927:1999,https://www.iso.org/standard/2748.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO/TS 12928:1999,https://www.iso.org/standard/2750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 13357-1:2017,https://www.iso.org/standard/66352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 13357-2:2017,https://www.iso.org/standard/66353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 13503-1:2011,https://www.iso.org/standard/55302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13503-2:2006,https://www.iso.org/standard/36976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13503-2:2006/Amd 1:2009,https://www.iso.org/standard/44977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13503-3:2005,https://www.iso.org/standard/39154.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13503-3:2005/Cor 1:2006,https://www.iso.org/standard/44124.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO/CD 13503-3,https://www.iso.org/standard/57873.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13503-4:2006,https://www.iso.org/standard/40356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13503-5:2006,https://www.iso.org/standard/40531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13503-6:2014,https://www.iso.org/standard/56107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13737:2004,https://www.iso.org/standard/39672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 13738:2011,https://www.iso.org/standard/46057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 15380:2016,https://www.iso.org/standard/66277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 19291:2016,https://www.iso.org/standard/64298.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 19378:2003,https://www.iso.org/standard/33800.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 20623:2017,https://www.iso.org/standard/70737.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 22285,https://www.iso.org/standard/73034.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 22286,https://www.iso.org/standard/73035.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 24254:2007,https://www.iso.org/standard/40039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 26422:2014,https://www.iso.org/standard/63727.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3871:2000,https://www.iso.org/standard/9466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4263-2:2003,https://www.iso.org/standard/34279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4263-3:2015,https://www.iso.org/standard/60447.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4404-1:2012,https://www.iso.org/standard/52151.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4404-2:2010,https://www.iso.org/standard/56542.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4406:2017,https://www.iso.org/standard/72618.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 6,https://www.iso.org/contents/data/committee/05/23/52300/x/catalogue/ -ISO 4925:2005,https://www.iso.org/standard/38513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4926:2006,https://www.iso.org/standard/43023.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6743-4:2015,https://www.iso.org/standard/60483.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 7308:1987,https://www.iso.org/standard/13971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7309:1985,https://www.iso.org/standard/13972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7745:2010,https://www.iso.org/standard/50154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 9128:2006,https://www.iso.org/standard/40459.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 10050:2005,https://www.iso.org/standard/35709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 11158:2009,https://www.iso.org/standard/40038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 11365:2017,https://www.iso.org/standard/68230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 12922:2012,https://www.iso.org/standard/43284.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 20763:2004,https://www.iso.org/standard/34262.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20783-1:2011,https://www.iso.org/standard/56511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20783-2:2003,https://www.iso.org/standard/34267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20843:2011,https://www.iso.org/standard/56539.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2137:2007,https://www.iso.org/standard/45650.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 2207:1980,https://www.iso.org/standard/7011.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6244:1982,https://www.iso.org/standard/12524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 334:2013,https://www.iso.org/standard/63441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 540:2008,https://www.iso.org/standard/41484.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 556:1980,https://www.iso.org/standard/4644.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO/CD 556,https://www.iso.org/standard/67874.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 562:2010,https://www.iso.org/standard/55943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 567:1995,https://www.iso.org/standard/1995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 579:2013,https://www.iso.org/standard/62608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 587:1997,https://www.iso.org/standard/2756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 609:1996,https://www.iso.org/standard/4724.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 609:1996/Cor 1:1996,https://www.iso.org/standard/27351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 616:1995,https://www.iso.org/standard/1950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 622:2016,https://www.iso.org/standard/70208.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 625:1996,https://www.iso.org/standard/4746.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 625:1996/Cor 1:1996,https://www.iso.org/standard/27352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 687:2010,https://www.iso.org/standard/55945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 728:1995,https://www.iso.org/standard/4964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 925:1997,https://www.iso.org/standard/23282.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 1013:1995,https://www.iso.org/standard/1968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 1014:1985,https://www.iso.org/standard/5483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 1014:1985/Cor 1:1994,https://www.iso.org/standard/23119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 1170:2013,https://www.iso.org/standard/62609.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 1171:2010,https://www.iso.org/standard/55944.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 1213-2:2016,https://www.iso.org/standard/61543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO 1928:2009,https://www.iso.org/standard/41592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 2325:1986,https://www.iso.org/standard/7159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 11726:2017,https://www.iso.org/standard/70841.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO/DIS 13605,https://www.iso.org/standard/71597.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO/TS 13605:2012,https://www.iso.org/standard/54059.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 13909-1:2016,https://www.iso.org/standard/63907.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-5:2016,https://www.iso.org/standard/63911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-6:2016,https://www.iso.org/standard/63912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-7:2016,https://www.iso.org/standard/63913.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 13909-8:2016,https://www.iso.org/standard/63914.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 15239:2005,https://www.iso.org/standard/41410.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 1,https://www.iso.org/contents/data/committee/04/72/47284/x/catalogue/ -ISO/TS 17225-8:2016,https://www.iso.org/standard/71915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18283:2006,https://www.iso.org/standard/31776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO 18283:2006/Cor 1:2009,https://www.iso.org/standard/54326.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO/TS 18806:2014,https://www.iso.org/standard/63456.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 18894,https://www.iso.org/standard/72266.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 18894:2006,https://www.iso.org/standard/32044.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 3,https://www.iso.org/contents/data/committee/04/73/47314/x/catalogue/ -ISO 19579:2006,https://www.iso.org/standard/39113.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 20336:2017,https://www.iso.org/standard/67726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 21398:2007,https://www.iso.org/standard/40209.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO/DIS 21398,https://www.iso.org/standard/75342.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 27/SC 4,https://www.iso.org/contents/data/committee/04/73/47316/x/catalogue/ -ISO/CD 21640,https://www.iso.org/standard/71309.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 300,https://www.iso.org/contents/data/committee/59/60/5960430/x/catalogue/ -ISO/CD 21654,https://www.iso.org/standard/71319.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 300,https://www.iso.org/contents/data/committee/59/60/5960430/x/catalogue/ -ISO/CD 21656,https://www.iso.org/standard/71321.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 300,https://www.iso.org/contents/data/committee/59/60/5960430/x/catalogue/ -ISO/CD 21660-3,https://www.iso.org/standard/71327.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 300,https://www.iso.org/contents/data/committee/59/60/5960430/x/catalogue/ -ISO/CD 22167,https://www.iso.org/standard/72716.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 300,https://www.iso.org/contents/data/committee/59/60/5960430/x/catalogue/ -ISO 23873:2010,https://www.iso.org/standard/56194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 29541:2010,https://www.iso.org/standard/45546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 27/SC 5,https://www.iso.org/contents/data/committee/04/73/47332/x/catalogue/ -ISO 3012:1999,https://www.iso.org/standard/27546.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3013:1997,https://www.iso.org/standard/21188.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3014:1993,https://www.iso.org/standard/8093.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3648:1994,https://www.iso.org/standard/20774.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3648:1994/Cor 1:1996,https://www.iso.org/standard/27456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3734:1997,https://www.iso.org/standard/9221.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 3735:1999,https://www.iso.org/standard/25980.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 3830:1993,https://www.iso.org/standard/20778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4261:2013,https://www.iso.org/standard/57305.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 4264:2007,https://www.iso.org/standard/45627.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4264:2007/Amd 1:2013,https://www.iso.org/standard/57695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/FDIS 4264,https://www.iso.org/standard/72764.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 5163:2014,https://www.iso.org/standard/61715.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 5164:2014,https://www.iso.org/standard/61716.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 5165:2017,https://www.iso.org/standard/67911.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6246:2017,https://www.iso.org/standard/64844.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6249:1999,https://www.iso.org/standard/27592.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6250:1997,https://www.iso.org/standard/26663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 6297:1997,https://www.iso.org/standard/25982.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 7536:1994,https://www.iso.org/standard/14312.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 8216-1:2017,https://www.iso.org/standard/64246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 8216-2:1986,https://www.iso.org/standard/15314.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 8216-99:2002,https://www.iso.org/standard/28609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 8217:2017,https://www.iso.org/standard/64247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 8691:1994,https://www.iso.org/standard/16095.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 10307-1:2009,https://www.iso.org/standard/44980.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 10307-2:2009,https://www.iso.org/standard/44005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 10307-2:2009/Cor 1:2010,https://www.iso.org/standard/56527.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 10478:1994,https://www.iso.org/standard/18545.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 12156-1:2016,https://www.iso.org/standard/65227.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO/DIS 12156-1,https://www.iso.org/standard/72481.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12156-2:2017,https://www.iso.org/standard/70277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 12205:1995,https://www.iso.org/standard/21187.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 13032:2012,https://www.iso.org/standard/52425.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 13759:1996,https://www.iso.org/standard/22836.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 15167:1999,https://www.iso.org/standard/25979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 15911:2000,https://www.iso.org/standard/29515.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 16861:2015,https://www.iso.org/standard/57835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 17196:2014,https://www.iso.org/standard/59329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 17197:2014,https://www.iso.org/standard/59330.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 17198:2014,https://www.iso.org/standard/59332.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 17786:2015,https://www.iso.org/standard/59333.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO/CD 20782,https://www.iso.org/standard/69071.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 28/SC 7,https://www.iso.org/contents/data/committee/55/19/551957/x/catalogue/ -ISO 20846:2011,https://www.iso.org/standard/51774.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 20846,https://www.iso.org/standard/74313.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4256:1996,https://www.iso.org/standard/24656.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 4257:2001,https://www.iso.org/standard/23699.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4257:2001/Cor 1:2007,https://www.iso.org/standard/45560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 6251:1996,https://www.iso.org/standard/24657.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 7941:1988,https://www.iso.org/standard/14913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 8216-3:1987,https://www.iso.org/standard/15315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 8819:1993,https://www.iso.org/standard/22575.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 8973:1997,https://www.iso.org/standard/16496.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 9162:2013,https://www.iso.org/standard/37164.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 4,https://www.iso.org/contents/data/committee/04/74/47414/x/catalogue/ -ISO 13757:1996,https://www.iso.org/standard/22834.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 13758:1996,https://www.iso.org/standard/22835.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20846:2011,https://www.iso.org/standard/51774.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 20846,https://www.iso.org/standard/74313.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20847:2004,https://www.iso.org/standard/34285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 20884:2011,https://www.iso.org/standard/51814.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO/DIS 20884,https://www.iso.org/standard/74314.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 14780:2017,https://www.iso.org/standard/66480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16559:2014,https://www.iso.org/standard/57111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16948:2015,https://www.iso.org/standard/58004.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16967:2015,https://www.iso.org/standard/58065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16968:2015,https://www.iso.org/standard/58067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16993:2016,https://www.iso.org/standard/70098.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16994:2016,https://www.iso.org/standard/70097.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 16995:2015,https://www.iso.org/standard/58083.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/TS 16996:2015,https://www.iso.org/standard/58084.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-1:2014,https://www.iso.org/standard/59456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-2:2014,https://www.iso.org/standard/59457.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-3:2014,https://www.iso.org/standard/59458.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-4:2014,https://www.iso.org/standard/59459.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-5:2014,https://www.iso.org/standard/59460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-6:2014,https://www.iso.org/standard/59461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17225-7:2014,https://www.iso.org/standard/59462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/TS 17306:2016,https://www.iso.org/standard/67940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 7,https://www.iso.org/contents/data/committee/55/19/551957/x/catalogue/ -ISO/TS 17307:2016,https://www.iso.org/standard/67939.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 7,https://www.iso.org/contents/data/committee/55/19/551957/x/catalogue/ -ISO 17308:2015,https://www.iso.org/standard/59558.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 7,https://www.iso.org/contents/data/committee/55/19/551957/x/catalogue/ -ISO 17315:2014,https://www.iso.org/standard/59559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 7,https://www.iso.org/contents/data/committee/55/19/551957/x/catalogue/ -ISO 17827-1:2016,https://www.iso.org/standard/60685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17827-2:2016,https://www.iso.org/standard/60688.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17828:2015,https://www.iso.org/standard/60687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17829:2015,https://www.iso.org/standard/60693.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17830:2016,https://www.iso.org/standard/60694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17831-1:2015,https://www.iso.org/standard/60695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 17831-2:2015,https://www.iso.org/standard/60696.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18122:2015,https://www.iso.org/standard/61515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18123:2015,https://www.iso.org/standard/61516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18125:2017,https://www.iso.org/standard/61517.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18134-1:2015,https://www.iso.org/standard/61538.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18134-2:2017,https://www.iso.org/standard/71536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18134-3:2015,https://www.iso.org/standard/61637.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18135:2017,https://www.iso.org/standard/66481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18846:2016,https://www.iso.org/standard/63559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 18847:2016,https://www.iso.org/standard/63560.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO 19743:2017,https://www.iso.org/standard/66203.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/DIS 20023,https://www.iso.org/standard/66852.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/CD 20024,https://www.iso.org/standard/71284.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/CD 20049,https://www.iso.org/standard/66904.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/CD 21404,https://www.iso.org/standard/70868.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/CD 21945,https://www.iso.org/standard/72270.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 238,https://www.iso.org/contents/data/committee/55/44/554401/x/catalogue/ -ISO/TR 12489:2013,https://www.iso.org/standard/51456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 14224:2016,https://www.iso.org/standard/64076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15156-1:2015,https://www.iso.org/standard/66640.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15156-2:2015,https://www.iso.org/standard/66641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15156-3:2015,https://www.iso.org/standard/66642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/TS 16901:2015,https://www.iso.org/standard/57889.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO 16903:2015,https://www.iso.org/standard/57891.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO 16904:2016,https://www.iso.org/standard/57892.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO 17348:2016,https://www.iso.org/standard/59611.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 17781:2017,https://www.iso.org/standard/60525.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 20815:2008,https://www.iso.org/standard/39744.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/DIS 20815,https://www.iso.org/standard/69983.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 21457:2010,https://www.iso.org/standard/45938.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 23936-1:2009,https://www.iso.org/standard/41947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 23936-2:2011,https://www.iso.org/standard/41948.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 3977-5:2001,https://www.iso.org/standard/25139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 6807:2003,https://www.iso.org/standard/34470.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/DTR 10400,https://www.iso.org/standard/75259.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO/TR 10400:2007,https://www.iso.org/standard/44107.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 10405:2000,https://www.iso.org/standard/24931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 10407:1993,https://www.iso.org/standard/18468.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10407-2:2008,https://www.iso.org/standard/40801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10407-2:2008/Cor 1:2009,https://www.iso.org/standard/55192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10414-1:2008,https://www.iso.org/standard/41939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10414-2:2011,https://www.iso.org/standard/41192.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10416:2008,https://www.iso.org/standard/41940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10417:2004,https://www.iso.org/standard/24221.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/NP 10417,https://www.iso.org/standard/71296.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10418:2003,https://www.iso.org/standard/38067.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10418:2003/Cor 1:2008,https://www.iso.org/standard/51283.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/DIS 10418,https://www.iso.org/standard/55440.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10423:2009,https://www.iso.org/standard/42757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10424-1:2004,https://www.iso.org/standard/33266.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10424-2:2007,https://www.iso.org/standard/43612.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10425:2003,https://www.iso.org/standard/37526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 10427-1:2001,https://www.iso.org/standard/32500.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10427-2:2004,https://www.iso.org/standard/32501.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10427-3:2003,https://www.iso.org/standard/37867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10428:1993,https://www.iso.org/standard/18490.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10431:1993,https://www.iso.org/standard/18493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 10432:2004,https://www.iso.org/standard/36183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/FDIS 10855-1,https://www.iso.org/standard/46198.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/FDIS 10855-2,https://www.iso.org/standard/65181.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/FDIS 10855-3,https://www.iso.org/standard/65183.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 11960:2014,https://www.iso.org/standard/64101.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO/CD 11960,https://www.iso.org/standard/75278.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 11961:2008,https://www.iso.org/standard/44445.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 11961:2008/Cor 1:2009,https://www.iso.org/standard/53706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO/DIS 11961,https://www.iso.org/standard/73517.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 12736:2014,https://www.iso.org/standard/51655.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO/PAS 12835:2013,https://www.iso.org/standard/51926.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 13085:2014,https://www.iso.org/standard/52741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 13354:2014,https://www.iso.org/standard/53712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13500:2008,https://www.iso.org/standard/46560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13500:2008/Amd 1:2010,https://www.iso.org/standard/54733.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13500:2008/Cor 1:2009,https://www.iso.org/standard/54725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13501:2011,https://www.iso.org/standard/55304.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 13533:2001,https://www.iso.org/standard/35412.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13533:2001/Cor 1:2005,https://www.iso.org/standard/41670.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13534:2000,https://www.iso.org/standard/22178.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13535:2000,https://www.iso.org/standard/34443.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13624-1:2009,https://www.iso.org/standard/22426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/TR 13624-2:2009,https://www.iso.org/standard/46339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13625:2002,https://www.iso.org/standard/22427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13626:2003,https://www.iso.org/standard/39055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-1:2005,https://www.iso.org/standard/36458.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-1:2005/Amd 1:2010,https://www.iso.org/standard/45449.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-2:2006,https://www.iso.org/standard/38613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-2:2006/Cor 1:2009,https://www.iso.org/standard/54023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-3:2000,https://www.iso.org/standard/24202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-4:2010,https://www.iso.org/standard/38563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-4:2010/Cor 1:2011,https://www.iso.org/standard/59711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-5:2009,https://www.iso.org/standard/41322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-6:2006,https://www.iso.org/standard/35530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-7:2005,https://www.iso.org/standard/24210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/CD 13628-7,https://www.iso.org/standard/53701.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-8:2002,https://www.iso.org/standard/37291.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-8:2002/Cor 1:2005,https://www.iso.org/standard/42175.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-9:2000,https://www.iso.org/standard/26453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-10:2005,https://www.iso.org/standard/38796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-11:2007,https://www.iso.org/standard/38614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-11:2007/Cor 1:2008,https://www.iso.org/standard/51685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/DIS 13628-14,https://www.iso.org/standard/51288.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13628-15:2011,https://www.iso.org/standard/45993.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/DIS 13628-16,https://www.iso.org/standard/50386.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/DIS 13628-17,https://www.iso.org/standard/50403.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 13678:2010,https://www.iso.org/standard/57057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 13679:2002,https://www.iso.org/standard/22603.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO/FDIS 13679,https://www.iso.org/standard/44447.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 13680:2010,https://www.iso.org/standard/56098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 13680:2010/CD Amd 1,https://www.iso.org/standard/70785.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 13702:2015,https://www.iso.org/standard/57416.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 13703:2000,https://www.iso.org/standard/22676.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 13703:2000/Cor 1:2002,https://www.iso.org/standard/37260.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 14310:2008,https://www.iso.org/standard/44481.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 14693:2003,https://www.iso.org/standard/37270.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 14998:2013,https://www.iso.org/standard/55308.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 15136-1:2009,https://www.iso.org/standard/44961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 15136-2:2006,https://www.iso.org/standard/38156.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 15138:2007,https://www.iso.org/standard/41321.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/FDIS 15138,https://www.iso.org/standard/66458.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15463:2003,https://www.iso.org/standard/27748.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 15463:2003/Cor 1:2009,https://www.iso.org/standard/54820.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 15544:2000,https://www.iso.org/standard/27091.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15544:2000/Amd 1:2009,https://www.iso.org/standard/46484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15546:2011,https://www.iso.org/standard/52740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15551-1:2015,https://www.iso.org/standard/55442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 16070:2005,https://www.iso.org/standard/39196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 16530-1:2017,https://www.iso.org/standard/63192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 17078-1:2004,https://www.iso.org/standard/33248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 17078-1:2004/Amd 1:2010,https://www.iso.org/standard/55432.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 17078-2:2007,https://www.iso.org/standard/33249.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 17078-2:2007/Cor 1:2009,https://www.iso.org/standard/54557.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 17078-3:2009,https://www.iso.org/standard/33250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 17078-4:2010,https://www.iso.org/standard/42844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 17776:2016,https://www.iso.org/standard/63062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 17824:2009,https://www.iso.org/standard/44632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 17945:2015,https://www.iso.org/standard/61077.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 18647:2017,https://www.iso.org/standard/63128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 18797-1:2016,https://www.iso.org/standard/63415.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 19900:2013,https://www.iso.org/standard/59877.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/DIS 19900,https://www.iso.org/standard/69761.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-1:2015,https://www.iso.org/standard/60183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-2:2017,https://www.iso.org/standard/61142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-3:2014,https://www.iso.org/standard/65041.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-4:2016,https://www.iso.org/standard/61144.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-5:2016,https://www.iso.org/standard/61537.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/AWI 19901-5,https://www.iso.org/standard/73039.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-6:2009,https://www.iso.org/standard/34591.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-6:2009/Cor 1:2011,https://www.iso.org/standard/60691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/AWI 19901-6,https://www.iso.org/standard/66252.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-7:2013,https://www.iso.org/standard/59298.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/DIS 19901-7,https://www.iso.org/standard/65689.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19901-8:2014,https://www.iso.org/standard/61145.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/DIS 19901-9,https://www.iso.org/standard/63630.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19902:2007,https://www.iso.org/standard/27507.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19902:2007/Amd 1:2013,https://www.iso.org/standard/61141.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/DIS 19902,https://www.iso.org/standard/65688.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19903:2006,https://www.iso.org/standard/22994.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/DIS 19903,https://www.iso.org/standard/66910.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19904-1:2006,https://www.iso.org/standard/22995.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/DIS 19904-1,https://www.iso.org/standard/63801.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19905-1:2016,https://www.iso.org/standard/68135.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/TR 19905-2:2012,https://www.iso.org/standard/62346.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19905-3:2017,https://www.iso.org/standard/61143.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 19906:2010,https://www.iso.org/standard/33690.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO/DIS 19906,https://www.iso.org/standard/65477.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 7,https://www.iso.org/contents/data/committee/04/96/49622/x/catalogue/ -ISO 20312:2011,https://www.iso.org/standard/39367.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/DIS 20321,https://www.iso.org/standard/67666.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO/NP TS 27469,https://www.iso.org/standard/75287.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/TS 27469:2010,https://www.iso.org/standard/44174.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 27627:2014,https://www.iso.org/standard/44242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 28781:2010,https://www.iso.org/standard/44951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 4,https://www.iso.org/contents/data/committee/04/95/49570/x/catalogue/ -ISO 3977-5:2001,https://www.iso.org/standard/25139.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 192,https://www.iso.org/contents/data/committee/05/44/54432/x/catalogue/ -ISO 10434:2004,https://www.iso.org/standard/34436.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 10437:2003,https://www.iso.org/standard/37864.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/DIS 10437,https://www.iso.org/standard/50383.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10438-1:2007,https://www.iso.org/standard/40481.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10438-2:2007,https://www.iso.org/standard/40482.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10438-3:2007,https://www.iso.org/standard/40483.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10438-4:2007,https://www.iso.org/standard/40484.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10439-1:2015,https://www.iso.org/standard/56883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10439-2:2015,https://www.iso.org/standard/56884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10439-3:2015,https://www.iso.org/standard/56885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10439-4:2015,https://www.iso.org/standard/56886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10440-1:2007,https://www.iso.org/standard/36211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10440-2:2001,https://www.iso.org/standard/24795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 10441:2007,https://www.iso.org/standard/35107.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 10442:2002,https://www.iso.org/standard/36210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 12211:2012,https://www.iso.org/standard/51280.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 12212:2012,https://www.iso.org/standard/51281.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 13631:2002,https://www.iso.org/standard/34442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 13704:2007,https://www.iso.org/standard/38662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 13704:2007/Cor 1:2008,https://www.iso.org/standard/51686.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 13705:2012,https://www.iso.org/standard/53647.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 13706:2011,https://www.iso.org/standard/45638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 13707:2000,https://www.iso.org/standard/22680.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 118/SC 1,https://www.iso.org/contents/data/committee/05/18/51866/x/catalogue/ -ISO 13709:2009,https://www.iso.org/standard/41612.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO 13710:2004,https://www.iso.org/standard/36129.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO/DIS 13710,https://www.iso.org/standard/55305.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO 14691:2008,https://www.iso.org/standard/45476.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15547-1:2005,https://www.iso.org/standard/37293.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15547-2:2005,https://www.iso.org/standard/37294.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15761:2002,https://www.iso.org/standard/28890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 16812:2007,https://www.iso.org/standard/38661.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/CD 16812,https://www.iso.org/standard/56042.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/DIS 16812,https://www.iso.org/standard/74317.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/WD TR 18624-1,https://www.iso.org/standard/63050.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO/DIS 18796-1,https://www.iso.org/standard/63414.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/DIS 23251,https://www.iso.org/standard/75144.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 24817:2017,https://www.iso.org/standard/70958.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 25457:2008,https://www.iso.org/standard/42929.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 28300:2008,https://www.iso.org/standard/44643.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 28300:2008/Cor 1:2009,https://www.iso.org/standard/54977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO/DIS 28300,https://www.iso.org/standard/55310.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 91:2017,https://www.iso.org/standard/65049.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 2714:2017,https://www.iso.org/standard/65965.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 2715:2017,https://www.iso.org/standard/65966.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 3171:1988,https://www.iso.org/standard/8357.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4124:1994,https://www.iso.org/standard/9875.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4266-1:2002,https://www.iso.org/standard/27584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4266-2:2002,https://www.iso.org/standard/27585.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4266-3:2002,https://www.iso.org/standard/27586.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4266-4:2002,https://www.iso.org/standard/27587.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4266-5:2002,https://www.iso.org/standard/27588.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4266-6:2002,https://www.iso.org/standard/27589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4267-2:1988,https://www.iso.org/standard/10109.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4268:2000,https://www.iso.org/standard/33524.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4269:2001,https://www.iso.org/standard/33525.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 4512:2000,https://www.iso.org/standard/33742.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 6551:1982,https://www.iso.org/standard/12949.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 6578:2017,https://www.iso.org/standard/69289.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 7278-1:1987,https://www.iso.org/standard/13934.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 7278-2:1988,https://www.iso.org/standard/13935.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 7278-3:1998,https://www.iso.org/standard/13937.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 7278-4:1999,https://www.iso.org/standard/13938.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 7507-1:2003,https://www.iso.org/standard/37004.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 7507-2:2005,https://www.iso.org/standard/38912.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 7507-3:2006,https://www.iso.org/standard/38913.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 7507-4:2010,https://www.iso.org/standard/43660.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 7507-5:2000,https://www.iso.org/standard/21674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 8222:2002,https://www.iso.org/standard/30098.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 8310:2012,https://www.iso.org/standard/59501.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 8311:2013,https://www.iso.org/standard/60223.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 8697:1999,https://www.iso.org/standard/16103.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 9200:1993,https://www.iso.org/standard/16826.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 9403:2000,https://www.iso.org/standard/32433.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 10976:2015,https://www.iso.org/standard/68620.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 11223:2004,https://www.iso.org/standard/37085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 11563:2003,https://www.iso.org/standard/33516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO/TR 12748:2015,https://www.iso.org/standard/67034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 193/SC 3,https://www.iso.org/contents/data/committee/05/45/54506/x/catalogue/ -ISO 12917-1:2017,https://www.iso.org/standard/55309.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 12917-2:2002,https://www.iso.org/standard/35927.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO/CD 12917-2,https://www.iso.org/standard/55296.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 13739:2010,https://www.iso.org/standard/43387.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO/CD 13739,https://www.iso.org/standard/70786.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 13740:1998,https://www.iso.org/standard/22335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 15169:2003,https://www.iso.org/standard/26576.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 15970:2008,https://www.iso.org/standard/44868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 193,https://www.iso.org/contents/data/committee/05/44/54448/x/catalogue/ -ISO 16384:2012,https://www.iso.org/standard/56614.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 18132-1:2011,https://www.iso.org/standard/55311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 18132-2:2008,https://www.iso.org/standard/42949.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 18132-3:2011,https://www.iso.org/standard/55892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 19970:2017,https://www.iso.org/standard/66774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 29945:2016,https://www.iso.org/standard/69288.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28/SC 5,https://www.iso.org/contents/data/committee/04/74/47442/x/catalogue/ -ISO 1823:2015,https://www.iso.org/standard/55912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 2928:2003,https://www.iso.org/standard/35653.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 2929:2014,https://www.iso.org/standard/63805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 3183:2012,https://www.iso.org/standard/56843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 3183:2012/Amd 1:2017,https://www.iso.org/standard/72122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 4437-1:2014,https://www.iso.org/standard/59128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 4437-2:2014,https://www.iso.org/standard/59129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 4437-3:2014,https://www.iso.org/standard/59130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 4437-4:2015,https://www.iso.org/standard/62613.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 4437-5:2014,https://www.iso.org/standard/59131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 5772:2015,https://www.iso.org/standard/57302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6808:2014,https://www.iso.org/standard/55656.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6993-1:2006,https://www.iso.org/standard/36964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 6993-2:2006,https://www.iso.org/standard/36965.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 6993-3:2006,https://www.iso.org/standard/36966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 6993-4:2006,https://www.iso.org/standard/36967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 9158:1988,https://www.iso.org/standard/16755.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 9159:1988,https://www.iso.org/standard/16756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 34,https://www.iso.org/contents/data/committee/53/83/5383858/x/catalogue/ -ISO 10464:2004,https://www.iso.org/standard/34234.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 58/SC 4,https://www.iso.org/contents/data/committee/04/90/49062/x/catalogue/ -ISO/TS 10839:2000,https://www.iso.org/standard/32239.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 11299-1:2011,https://www.iso.org/standard/2375.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-1,https://www.iso.org/standard/70123.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-2,https://www.iso.org/standard/70125.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11299-3:2011,https://www.iso.org/standard/41731.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11299-3,https://www.iso.org/standard/70124.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11563:2003,https://www.iso.org/standard/33516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 28/SC 2,https://www.iso.org/contents/data/committee/04/73/47382/x/catalogue/ -ISO 11759:1999,https://www.iso.org/standard/19679.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/FDIS 11759,https://www.iso.org/standard/68046.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 12176-1:2017,https://www.iso.org/standard/67803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-2:2008,https://www.iso.org/standard/46114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-3:2011,https://www.iso.org/standard/57269.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 12176-4:2003,https://www.iso.org/standard/31586.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/TR 12489:2013,https://www.iso.org/standard/51456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 12490:2011,https://www.iso.org/standard/51460.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO/TS 12747:2011,https://www.iso.org/standard/51657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO/PAS 12835:2013,https://www.iso.org/standard/51926.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 12991:2012,https://www.iso.org/standard/52299.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 13623:2017,https://www.iso.org/standard/61251.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 13679:2002,https://www.iso.org/standard/22603.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO/FDIS 13679,https://www.iso.org/standard/44447.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 13847:2013,https://www.iso.org/standard/45120.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 14224:2016,https://www.iso.org/standard/64076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 14313:2007,https://www.iso.org/standard/41110.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 14313:2007/Cor 1:2009,https://www.iso.org/standard/53508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO/DIS 14313,https://www.iso.org/standard/59842.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 14531-1:2002,https://www.iso.org/standard/24631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-2:2004,https://www.iso.org/standard/39313.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-3:2010,https://www.iso.org/standard/57053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14531-4:2006,https://www.iso.org/standard/33854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 14692-1:2017,https://www.iso.org/standard/62256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 14692-2:2017,https://www.iso.org/standard/62257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 14692-3:2017,https://www.iso.org/standard/62258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 14692-4:2017,https://www.iso.org/standard/62259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 14723:2009,https://www.iso.org/standard/45023.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 15589-1:2015,https://www.iso.org/standard/54503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 15589-2:2012,https://www.iso.org/standard/51992.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 15590-1:2009,https://www.iso.org/standard/45121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO/DIS 15590-1,https://www.iso.org/standard/71208.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 15590-2:2003,https://www.iso.org/standard/33104.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 15590-3:2004,https://www.iso.org/standard/33105.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 15649:2001,https://www.iso.org/standard/28195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 16380:2014,https://www.iso.org/standard/56593.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 16380:2014/Amd 1:2016,https://www.iso.org/standard/67833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 41,https://www.iso.org/contents/data/committee/53/91/5391370/x/catalogue/ -ISO 16440:2016,https://www.iso.org/standard/56758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 16486-1:2012,https://www.iso.org/standard/56837.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-1:2012/Amd 1:2014,https://www.iso.org/standard/65074.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-1,https://www.iso.org/standard/74158.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-2:2012,https://www.iso.org/standard/56838.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-2:2012/Amd 1:2014,https://www.iso.org/standard/65075.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-2,https://www.iso.org/standard/74159.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-3:2012,https://www.iso.org/standard/56839.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-3:2012/Amd 1:2014,https://www.iso.org/standard/65076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-3,https://www.iso.org/standard/74160.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-4:2016,https://www.iso.org/standard/65195.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 16486-5:2012,https://www.iso.org/standard/56840.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-5,https://www.iso.org/standard/74161.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-6:2012,https://www.iso.org/standard/56841.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-6,https://www.iso.org/standard/74162.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16708:2006,https://www.iso.org/standard/31046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 16923:2016,https://www.iso.org/standard/57959.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/PC 252,https://www.iso.org/contents/data/committee/60/66/606615/x/catalogue/ -ISO 16924:2016,https://www.iso.org/standard/57960.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/PC 252,https://www.iso.org/contents/data/committee/60/66/606615/x/catalogue/ -ISO 16961:2015,https://www.iso.org/standard/58037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/TR 17177:2015,https://www.iso.org/standard/59247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO 17292:2015,https://www.iso.org/standard/59736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 153,https://www.iso.org/contents/data/committee/05/31/53156/x/catalogue/ -ISO 17885:2015,https://www.iso.org/standard/60932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 17885:2015/Amd 1:2016,https://www.iso.org/standard/70666.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 18225:2012,https://www.iso.org/standard/60931.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/TS 18226:2006,https://www.iso.org/standard/42330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/TS 18683:2015,https://www.iso.org/standard/63190.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO/DIS 19277,https://www.iso.org/standard/64240.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/DIS 19345-1,https://www.iso.org/standard/64659.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO/DIS 19345-2,https://www.iso.org/standard/64660.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 20088-1:2016,https://www.iso.org/standard/67009.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO/DIS 20088-3,https://www.iso.org/standard/67011.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO/CD 20257-1,https://www.iso.org/standard/67430.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -ISO 20815:2008,https://www.iso.org/standard/39744.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO/DIS 20815,https://www.iso.org/standard/69983.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 21307:2017,https://www.iso.org/standard/63773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 21329:2004,https://www.iso.org/standard/35842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 21809-1:2011,https://www.iso.org/standard/35997.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO/FDIS 21809-1,https://www.iso.org/standard/65345.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 21809-2:2014,https://www.iso.org/standard/56763.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 21809-3:2016,https://www.iso.org/standard/61002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 21809-3:2016/CD Amd 1,https://www.iso.org/standard/73791.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 21809-4:2009,https://www.iso.org/standard/39074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 21809-5:2017,https://www.iso.org/standard/68378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO/DIS 21809-11,https://www.iso.org/standard/66497.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 22991:2004,https://www.iso.org/standard/35242.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 58/SC 3,https://www.iso.org/contents/data/committee/04/90/49040/x/catalogue/ -ISO 27127:2014,https://www.iso.org/standard/62013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 28460:2010,https://www.iso.org/standard/44712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 9,https://www.iso.org/contents/data/committee/57/49/5749612/x/catalogue/ -IWA 19:2017,https://www.iso.org/standard/69354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 197-5:1980,https://www.iso.org/standard/4060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 148-1:2016,https://www.iso.org/standard/63802.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 148-2:2016,https://www.iso.org/standard/63812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 148-3:2016,https://www.iso.org/standard/63813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 204:2009,https://www.iso.org/standard/37601.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO/FDIS 204,https://www.iso.org/standard/67737.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 376:2011,https://www.iso.org/standard/44661.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 377:2017,https://www.iso.org/standard/72529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 20,https://www.iso.org/contents/data/committee/04/64/46470/x/catalogue/ -ISO 1099:2017,https://www.iso.org/standard/67847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 1143:2010,https://www.iso.org/standard/41875.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO/DIS 1143,https://www.iso.org/standard/72653.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 1352:2011,https://www.iso.org/standard/42814.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 2566-1:1984,https://www.iso.org/standard/7524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 20,https://www.iso.org/contents/data/committee/04/64/46470/x/catalogue/ -ISO 2566-2:1984,https://www.iso.org/standard/7525.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 20,https://www.iso.org/contents/data/committee/04/64/46470/x/catalogue/ -ISO 2739:2012,https://www.iso.org/standard/53346.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 2740:2009,https://www.iso.org/standard/51243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3312:1987,https://www.iso.org/standard/8569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3325:1996,https://www.iso.org/standard/1584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3325:1996/Amd 1:2001,https://www.iso.org/standard/31250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3327:2009,https://www.iso.org/standard/43511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3738-1:1982,https://www.iso.org/standard/9225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3738-2:1988,https://www.iso.org/standard/9226.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3785:2006,https://www.iso.org/standard/35304.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 3878:1983,https://www.iso.org/standard/9484.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3928:2016,https://www.iso.org/standard/65279.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3995:1985,https://www.iso.org/standard/9660.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4498:2010,https://www.iso.org/standard/55425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 4506,https://www.iso.org/standard/69221.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4506:1979,https://www.iso.org/standard/10402.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4507:2000,https://www.iso.org/standard/22231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 4545-1:2017,https://www.iso.org/standard/63982.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 4545-2:2017,https://www.iso.org/standard/63983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 4545-3:2017,https://www.iso.org/standard/63984.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 4545-4:2017,https://www.iso.org/standard/63985.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 4739:1985,https://www.iso.org/standard/10727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 4965-1:2012,https://www.iso.org/standard/50238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 4965-2:2012,https://www.iso.org/standard/50241.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 5754:2017,https://www.iso.org/standard/69222.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 6506-1:2014,https://www.iso.org/standard/59671.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6506-2:2017,https://www.iso.org/standard/69774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6506-3:2014,https://www.iso.org/standard/59682.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6506-4:2014,https://www.iso.org/standard/59684.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6507-1:2018,https://www.iso.org/standard/64065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6507-2:2018,https://www.iso.org/standard/64066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6507-3:2018,https://www.iso.org/standard/64067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6507-4,https://www.iso.org/standard/64068.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6507-4:2005,https://www.iso.org/standard/37749.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6508-1:2016,https://www.iso.org/standard/70460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6508-2:2015,https://www.iso.org/standard/59685.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6508-3:2015,https://www.iso.org/standard/59687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 6892-1:2016,https://www.iso.org/standard/61856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 6892-2:2011,https://www.iso.org/standard/42610.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO/FDIS 6892-2,https://www.iso.org/standard/72571.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 6892-3:2015,https://www.iso.org/standard/51532.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 6892-4:2015,https://www.iso.org/standard/51516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 7438:2016,https://www.iso.org/standard/67980.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO/DIS 7438,https://www.iso.org/standard/72187.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 7500-1,https://www.iso.org/standard/72572.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 7500-1:2015,https://www.iso.org/standard/62997.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 7500-2:2006,https://www.iso.org/standard/36338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 7799:1985,https://www.iso.org/standard/14693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 7800:2012,https://www.iso.org/standard/54412.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 7801:1984,https://www.iso.org/standard/14695.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 7802:2013,https://www.iso.org/standard/63852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 8491:1998,https://www.iso.org/standard/30444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 8492:2013,https://www.iso.org/standard/63853.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 8493:1998,https://www.iso.org/standard/30446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 8494:2013,https://www.iso.org/standard/63854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 8495:2013,https://www.iso.org/standard/63855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 8496:2013,https://www.iso.org/standard/63856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 9513:2012,https://www.iso.org/standard/41619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 9513:2012/Cor 1:2013,https://www.iso.org/standard/63405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 9649:2016,https://www.iso.org/standard/61814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 10113:2006,https://www.iso.org/standard/35930.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO/DIS 10113,https://www.iso.org/standard/69770.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 10275:2007,https://www.iso.org/standard/40201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 11531:2015,https://www.iso.org/standard/62977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 12004-1:2008,https://www.iso.org/standard/38369.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 12004-2:2008,https://www.iso.org/standard/43621.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO/DTR 12105,https://www.iso.org/standard/72654.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 12106:2017,https://www.iso.org/standard/64687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 12107:2012,https://www.iso.org/standard/50242.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO/DIS 12107,https://www.iso.org/standard/69300.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 12108:2012,https://www.iso.org/standard/42815.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO/DIS 12108,https://www.iso.org/standard/73809.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 12110-1:2013,https://www.iso.org/standard/54712.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 12110-2:2013,https://www.iso.org/standard/54713.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 12111:2011,https://www.iso.org/standard/45583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO/PRF TR 12112,https://www.iso.org/standard/69484.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 12135:2016,https://www.iso.org/standard/60891.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 13314:2011,https://www.iso.org/standard/53669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 14317:2015,https://www.iso.org/standard/61264.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 14556:2015,https://www.iso.org/standard/63814.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 14577-1:2015,https://www.iso.org/standard/56626.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 14577-2:2015,https://www.iso.org/standard/56628.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 14577-3:2015,https://www.iso.org/standard/56627.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 14577-4:2016,https://www.iso.org/standard/61823.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 15363:2017,https://www.iso.org/standard/72569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 15461,https://www.iso.org/standard/67383.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 16630:2017,https://www.iso.org/standard/69771.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 16808:2014,https://www.iso.org/standard/57777.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 16842:2014,https://www.iso.org/standard/57812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 16859-1:2015,https://www.iso.org/standard/57828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 16859-2:2015,https://www.iso.org/standard/57829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 16859-3:2015,https://www.iso.org/standard/57830.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 17340:2014,https://www.iso.org/standard/59594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 18265:2013,https://www.iso.org/standard/53810.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 18338:2015,https://www.iso.org/standard/62210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 20032:2013,https://www.iso.org/standard/62976.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO/DIS 20064,https://www.iso.org/standard/66937.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 20482:2013,https://www.iso.org/standard/63857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO 22889:2013,https://www.iso.org/standard/60890.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 23718:2007,https://www.iso.org/standard/36948.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 164,https://www.iso.org/contents/data/committee/05/35/53550/x/catalogue/ -ISO 23788:2012,https://www.iso.org/standard/41851.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 24213:2017,https://www.iso.org/standard/72570.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 2,https://www.iso.org/contents/data/committee/05/35/53556/x/catalogue/ -ISO/TR 25679:2005,https://www.iso.org/standard/43056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164,https://www.iso.org/contents/data/committee/05/35/53550/x/catalogue/ -ISO 26203-1:2018,https://www.iso.org/standard/72573.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 26203-2:2011,https://www.iso.org/standard/46275.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 1,https://www.iso.org/contents/data/committee/05/35/53554/x/catalogue/ -ISO 26843:2015,https://www.iso.org/standard/65516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 27306:2016,https://www.iso.org/standard/67950.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 164/SC 4,https://www.iso.org/contents/data/committee/05/35/53560/x/catalogue/ -ISO 28079:2009,https://www.iso.org/standard/44495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 28080:2011,https://www.iso.org/standard/44496.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/WD 28080,https://www.iso.org/standard/72769.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/TR 29381:2008,https://www.iso.org/standard/40291.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 164/SC 3,https://www.iso.org/contents/data/committee/05/35/53558/x/catalogue/ -ISO 4986:2010,https://www.iso.org/standard/52300.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/DIS 4986,https://www.iso.org/standard/73041.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4987:2010,https://www.iso.org/standard/52301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/CD 4987,https://www.iso.org/standard/73042.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4992-1:2006,https://www.iso.org/standard/39551.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/CD 4992-1,https://www.iso.org/standard/73044.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4992-2:2006,https://www.iso.org/standard/39552.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/CD 4992-2,https://www.iso.org/standard/73045.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4993:2015,https://www.iso.org/standard/59268.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 5579:2013,https://www.iso.org/standard/57742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 135/SC 5,https://www.iso.org/contents/data/committee/05/24/52418/x/catalogue/ -ISO 5948:1994,https://www.iso.org/standard/1165.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO/DIS 5948,https://www.iso.org/standard/68532.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 6933:1986,https://www.iso.org/standard/13452.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 10332:2010,https://www.iso.org/standard/44660.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-1:2011,https://www.iso.org/standard/44662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-2:2011,https://www.iso.org/standard/44664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-3:2011,https://www.iso.org/standard/44678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-4:2011,https://www.iso.org/standard/44674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-5:2011,https://www.iso.org/standard/44677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-6:2011,https://www.iso.org/standard/44675.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/DIS 10893-6,https://www.iso.org/standard/69805.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-7:2011,https://www.iso.org/standard/46367.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/DIS 10893-7,https://www.iso.org/standard/69806.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-8:2011,https://www.iso.org/standard/44669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-9:2011,https://www.iso.org/standard/44673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-10:2011,https://www.iso.org/standard/44665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-11:2011,https://www.iso.org/standard/44667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-12:2011,https://www.iso.org/standard/44670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 11484:2009,https://www.iso.org/standard/51259.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/CD 11484,https://www.iso.org/standard/69804.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 11971:2008,https://www.iso.org/standard/38864.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 17577:2016,https://www.iso.org/standard/63157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 25902-1:2009,https://www.iso.org/standard/43310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 25902-2:2010,https://www.iso.org/standard/43311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 196:1978,https://www.iso.org/standard/4050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 642:1999,https://www.iso.org/standard/1228.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 643:2012,https://www.iso.org/standard/61697.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO/DIS 643,https://www.iso.org/standard/72193.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 2624:1990,https://www.iso.org/standard/7601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 2626:1973,https://www.iso.org/standard/7603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 3763:1976,https://www.iso.org/standard/9265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 3887:2017,https://www.iso.org/standard/68457.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 4499-1:2008,https://www.iso.org/standard/43500.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/CD 4499-1,https://www.iso.org/standard/74883.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4499-2:2008,https://www.iso.org/standard/43501.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/CD 4499-2,https://www.iso.org/standard/74884.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4499-3:2016,https://www.iso.org/standard/61265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4499-4:2016,https://www.iso.org/standard/61266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4746:1977,https://www.iso.org/standard/10734.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 4967:2013,https://www.iso.org/standard/63156.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO/FDIS 4967,https://www.iso.org/standard/73154.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 4968:1979,https://www.iso.org/standard/10986.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO/AWI 4968,https://www.iso.org/standard/74322.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 4969:2015,https://www.iso.org/standard/57127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 5949:1983,https://www.iso.org/standard/12144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 9042:1988,https://www.iso.org/standard/16609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 16573:2015,https://www.iso.org/standard/57128.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO/CD 16573-1,https://www.iso.org/standard/73153.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 16574:2015,https://www.iso.org/standard/57129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 18203:2016,https://www.iso.org/standard/61748.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 3651-1:1998,https://www.iso.org/standard/9096.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 3651-2:1998,https://www.iso.org/standard/9098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 3651-3:2017,https://www.iso.org/standard/62040.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 6509-1:2014,https://www.iso.org/standard/59999.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 6509-2:2017,https://www.iso.org/standard/63079.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 6957:1988,https://www.iso.org/standard/13507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 7384:1986,https://www.iso.org/standard/14085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7441:2015,https://www.iso.org/standard/53633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-1:2012,https://www.iso.org/standard/54369.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-2:1989,https://www.iso.org/standard/14315.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-3:1989,https://www.iso.org/standard/14316.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-4:1989,https://www.iso.org/standard/14317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-5:1989,https://www.iso.org/standard/14318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-6:2011,https://www.iso.org/standard/57621.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/DIS 7539-6,https://www.iso.org/standard/74172.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-7:2005,https://www.iso.org/standard/34209.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-8:2000,https://www.iso.org/standard/32860.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-9:2003,https://www.iso.org/standard/20991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-10:2013,https://www.iso.org/standard/55856.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 7539-11:2013,https://www.iso.org/standard/43440.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 8044:2015,https://www.iso.org/standard/66233.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/NP 8044,https://www.iso.org/standard/71134.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 8407:2009,https://www.iso.org/standard/42634.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 8407,https://www.iso.org/standard/71866.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 8565:2011,https://www.iso.org/standard/53492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 8993:2010,https://www.iso.org/standard/51498.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 8993,https://www.iso.org/standard/72175.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 8994:2011,https://www.iso.org/standard/51497.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO/DIS 8994,https://www.iso.org/standard/72813.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 79/SC 2,https://www.iso.org/contents/data/committee/05/00/50092/x/catalogue/ -ISO 9223:2012,https://www.iso.org/standard/53499.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 9224:2012,https://www.iso.org/standard/53500.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 9225:2012,https://www.iso.org/standard/53501.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 9226:2012,https://www.iso.org/standard/53502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 9227:2017,https://www.iso.org/standard/63543.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 9400:1990,https://www.iso.org/standard/17098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 9591:2004,https://www.iso.org/standard/29292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 10062:2006,https://www.iso.org/standard/36442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 10270:1995,https://www.iso.org/standard/18310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 10270:1995/Cor 1:1997,https://www.iso.org/standard/29083.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11130:2017,https://www.iso.org/standard/71867.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11303:2002,https://www.iso.org/standard/33271.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/DTR 11303,https://www.iso.org/standard/65685.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11306:1998,https://www.iso.org/standard/19276.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11463:1995,https://www.iso.org/standard/19414.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 11463,https://www.iso.org/standard/73318.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11474:1998,https://www.iso.org/standard/19426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11782-1:1998,https://www.iso.org/standard/1865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11782-2:1998,https://www.iso.org/standard/20363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11844-1:2006,https://www.iso.org/standard/36651.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 11844-1,https://www.iso.org/standard/73253.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11844-2:2005,https://www.iso.org/standard/36649.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 11844-2,https://www.iso.org/standard/73254.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11844-3:2006,https://www.iso.org/standard/36650.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 11844-3,https://www.iso.org/standard/73255.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11845:1995,https://www.iso.org/standard/3208.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 11845,https://www.iso.org/standard/73319.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11846:1995,https://www.iso.org/standard/1703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11881:1999,https://www.iso.org/standard/1784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 11881:1999/Cor 1:1999,https://www.iso.org/standard/32450.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 12473:2017,https://www.iso.org/standard/67729.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 12696:2016,https://www.iso.org/standard/71133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 12732:2006,https://www.iso.org/standard/33261.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 13174:2012,https://www.iso.org/standard/53660.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 13573:2012,https://www.iso.org/standard/53992.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 14802:2012,https://www.iso.org/standard/53991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 14993:2001,https://www.iso.org/standard/24372.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/DIS 14993,https://www.iso.org/standard/71869.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 15158:2014,https://www.iso.org/standard/55375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 15257:2017,https://www.iso.org/standard/61714.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 15324:2000,https://www.iso.org/standard/20988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 15329:2006,https://www.iso.org/standard/38865.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 16151:2005,https://www.iso.org/standard/32126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/FDIS 16151,https://www.iso.org/standard/71880.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/TR 16203:2016,https://www.iso.org/standard/55857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/TR 16208:2014,https://www.iso.org/standard/55868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/TR 16335:2013,https://www.iso.org/standard/56181.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 16539:2013,https://www.iso.org/standard/57069.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 16540:2015,https://www.iso.org/standard/57070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 16701:2015,https://www.iso.org/standard/54460.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 16784-1:2006,https://www.iso.org/standard/39604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 16784-2:2006,https://www.iso.org/standard/29612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17081:2014,https://www.iso.org/standard/64514.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17093:2015,https://www.iso.org/standard/58093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17224:2015,https://www.iso.org/standard/59451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17245:2015,https://www.iso.org/standard/59473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17248:2015,https://www.iso.org/standard/59474.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17474:2012,https://www.iso.org/standard/55376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17475:2005,https://www.iso.org/standard/31392.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17475:2005/Cor 1:2006,https://www.iso.org/standard/44239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17752:2012,https://www.iso.org/standard/53503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17864:2005,https://www.iso.org/standard/33262.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 17918:2015,https://www.iso.org/standard/60994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 18069:2015,https://www.iso.org/standard/61289.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 18070:2015,https://www.iso.org/standard/61290.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 18086:2015,https://www.iso.org/standard/61335.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 18089:2015,https://www.iso.org/standard/61348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/DIS 18897,https://www.iso.org/standard/63695.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 19097-1,https://www.iso.org/standard/69135.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 19097-2,https://www.iso.org/standard/69136.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 19280:2017,https://www.iso.org/standard/64255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/DTR 19735,https://www.iso.org/standard/66194.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/DIS 20728,https://www.iso.org/standard/68923.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/DIS 21153,https://www.iso.org/standard/69987.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 21207:2015,https://www.iso.org/standard/67053.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 21601:2013,https://www.iso.org/standard/54370.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 21608:2012,https://www.iso.org/standard/53990.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 21610:2009,https://www.iso.org/standard/40344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 22410,https://www.iso.org/standard/73129.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 22426,https://www.iso.org/standard/73167.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO/CD 22479,https://www.iso.org/standard/73301.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 26146:2012,https://www.iso.org/standard/54021.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 439:1994,https://www.iso.org/standard/4454.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/NP 439,https://www.iso.org/standard/74714.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 629:1982,https://www.iso.org/standard/4750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 671:1982,https://www.iso.org/standard/4836.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4829-1:1986,https://www.iso.org/standard/10805.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/FDIS 4829-1,https://www.iso.org/standard/67990.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4829-2:2016,https://www.iso.org/standard/63303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4934:2003,https://www.iso.org/standard/28511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4935:1989,https://www.iso.org/standard/10949.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4937:1986,https://www.iso.org/standard/10951.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4938:2016,https://www.iso.org/standard/63304.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4939:2016,https://www.iso.org/standard/63305.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4940:1985,https://www.iso.org/standard/10954.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4941:1994,https://www.iso.org/standard/10957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4942:2016,https://www.iso.org/standard/63306.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4943:1985,https://www.iso.org/standard/10959.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4946:2016,https://www.iso.org/standard/63307.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4947:1986,https://www.iso.org/standard/10962.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/NP 4947,https://www.iso.org/standard/74712.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 9556:1989,https://www.iso.org/standard/17302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 9647:1989,https://www.iso.org/standard/17486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/TR 9769:1991,https://www.iso.org/standard/17630.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/WD TR 9769,https://www.iso.org/standard/74711.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10138:1991,https://www.iso.org/standard/18132.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10280:1991,https://www.iso.org/standard/18322.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10700:1994,https://www.iso.org/standard/18789.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10701:1994,https://www.iso.org/standard/18790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10702:1993,https://www.iso.org/standard/18791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10714:1992,https://www.iso.org/standard/18802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10720:1997,https://www.iso.org/standard/18813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 11652:1997,https://www.iso.org/standard/19581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 13898-1:1997,https://www.iso.org/standard/23268.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 13898-2:1997,https://www.iso.org/standard/25842.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 13898-3:1997,https://www.iso.org/standard/25843.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 13898-4:1997,https://www.iso.org/standard/25844.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 13902:1997,https://www.iso.org/standard/23272.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 13933:2014,https://www.iso.org/standard/54353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 14284:1996,https://www.iso.org/standard/24063.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 14404-1:2013,https://www.iso.org/standard/57298.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 14404-2:2013,https://www.iso.org/standard/57299.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 14404-3:2017,https://www.iso.org/standard/68430.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 15350:2000,https://www.iso.org/standard/27324.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 15351:1999,https://www.iso.org/standard/27325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 15353:2001,https://www.iso.org/standard/27327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 15355:1999,https://www.iso.org/standard/27329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 16918-1:2009,https://www.iso.org/standard/38161.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 17053:2005,https://www.iso.org/standard/39763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 17058:2004,https://www.iso.org/standard/28512.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/TR 21074:2016,https://www.iso.org/standard/69823.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 185:2005,https://www.iso.org/standard/35128.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/DIS 185,https://www.iso.org/standard/67753.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 945-1:2017,https://www.iso.org/standard/66644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/TR 945-2:2011,https://www.iso.org/standard/53971.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/TR 945-3:2016,https://www.iso.org/standard/62382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/DIS 945-4,https://www.iso.org/standard/69360.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 1083:2004,https://www.iso.org/standard/33243.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/FDIS 1083,https://www.iso.org/standard/66643.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 2892:2007,https://www.iso.org/standard/34783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 2892:2007/Cor 1:2009,https://www.iso.org/standard/54127.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 5922:2005,https://www.iso.org/standard/34666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 9147:1987,https://www.iso.org/standard/16744.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/TS 10719:2016,https://www.iso.org/standard/67991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/TR 10809-1:2009,https://www.iso.org/standard/46132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/TR 10809-2:2011,https://www.iso.org/standard/46133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/TR 15931:2004,https://www.iso.org/standard/37661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/TR 16078:2013,https://www.iso.org/standard/55633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 16112:2017,https://www.iso.org/standard/67755.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 17804:2005,https://www.iso.org/standard/33244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO/AWI 17804,https://www.iso.org/standard/67754.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 21988:2006,https://www.iso.org/standard/34784.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 25,https://www.iso.org/contents/data/committee/04/72/47206/x/catalogue/ -ISO 404:2013,https://www.iso.org/standard/56861.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 20,https://www.iso.org/contents/data/committee/04/64/46470/x/catalogue/ -ISO 4945:1977,https://www.iso.org/standard/10960.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/DIS 4945,https://www.iso.org/standard/67387.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 4948-1:1982,https://www.iso.org/standard/10963.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 4948-2:1981,https://www.iso.org/standard/10964.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO/TS 4949:2016,https://www.iso.org/standard/67751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO/TS 7705:2017,https://www.iso.org/standard/65584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 20,https://www.iso.org/contents/data/committee/04/64/46470/x/catalogue/ -ISO 9441:1988,https://www.iso.org/standard/17144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 9658:1990,https://www.iso.org/standard/17503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10153:1997,https://www.iso.org/standard/24826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10278:1995,https://www.iso.org/standard/18320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10697-1:1992,https://www.iso.org/standard/18785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10697-2:1994,https://www.iso.org/standard/18786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 10698:1994,https://www.iso.org/standard/18787.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 11653:1997,https://www.iso.org/standard/19582.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/TS 13899-1:2004,https://www.iso.org/standard/36298.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 13899-2:2005,https://www.iso.org/standard/37719.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/TS 13899-3:2005,https://www.iso.org/standard/35384.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 13900:1997,https://www.iso.org/standard/23270.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 14250:2000,https://www.iso.org/standard/22731.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 15349-2:1999,https://www.iso.org/standard/27522.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/NP 15349-2,https://www.iso.org/standard/74713.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 17054:2010,https://www.iso.org/standard/51404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/TR 17055:2002,https://www.iso.org/standard/28510.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 17925:2004,https://www.iso.org/standard/33283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/DTR 20580,https://www.iso.org/standard/68451.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO/DIS 20915,https://www.iso.org/standard/69447.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 3713:1987,https://www.iso.org/standard/9190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4139:1979,https://www.iso.org/standard/9898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4140:1979,https://www.iso.org/standard/9899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4158:1978,https://www.iso.org/standard/9925.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4159:1978,https://www.iso.org/standard/9926.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4173:1980,https://www.iso.org/standard/9944.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4346:1977,https://www.iso.org/standard/10225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 4551:1987,https://www.iso.org/standard/10475.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4552-1:1987,https://www.iso.org/standard/10476.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 4552-2:1987,https://www.iso.org/standard/10477.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5445:1980,https://www.iso.org/standard/11490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5446:2017,https://www.iso.org/standard/65346.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5447:1980,https://www.iso.org/standard/11492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5448:1981,https://www.iso.org/standard/11493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5449:1980,https://www.iso.org/standard/11494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5450:1980,https://www.iso.org/standard/11495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5451:1980,https://www.iso.org/standard/11496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5452:1980,https://www.iso.org/standard/11497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5453:1980,https://www.iso.org/standard/11498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 5454:1980,https://www.iso.org/standard/11499.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6352:1985,https://www.iso.org/standard/12654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 6467:2018,https://www.iso.org/standard/65347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 6501:1988,https://www.iso.org/standard/12877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7087:1984,https://www.iso.org/standard/13663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 7347:1987,https://www.iso.org/standard/14031.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 7373:1987,https://www.iso.org/standard/14064.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 7520:1985,https://www.iso.org/standard/14289.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7524:1985,https://www.iso.org/standard/14293.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7526:1985,https://www.iso.org/standard/14295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7527:1985,https://www.iso.org/standard/14296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7692:1983,https://www.iso.org/standard/14511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 7693:1984,https://www.iso.org/standard/14512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8049:2016,https://www.iso.org/standard/65091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 8050:1988,https://www.iso.org/standard/15065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 8343:1985,https://www.iso.org/standard/15487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 8954-1:1990,https://www.iso.org/standard/16478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8954-2:1990,https://www.iso.org/standard/16479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 8954-3:1990,https://www.iso.org/standard/16480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 10386:1994,https://www.iso.org/standard/18450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 10387:1994,https://www.iso.org/standard/18451.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 132,https://www.iso.org/contents/data/committee/05/23/52364/x/catalogue/ -ISO 11400:1992,https://www.iso.org/standard/19341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO/TR 7242:1981,https://www.iso.org/standard/13893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 115:2003,https://www.iso.org/standard/34681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 4,https://www.iso.org/contents/data/committee/05/01/50118/x/catalogue/ -ISO 793:1973,https://www.iso.org/standard/5128.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 795:1976,https://www.iso.org/standard/5130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 796:1973,https://www.iso.org/standard/5131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 797:1973,https://www.iso.org/standard/5135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 808:1973,https://www.iso.org/standard/5153.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 886:1973,https://www.iso.org/standard/5275.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 1118:1978,https://www.iso.org/standard/5642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 1784:1976,https://www.iso.org/standard/6416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 2107:2007,https://www.iso.org/standard/43401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 9,https://www.iso.org/contents/data/committee/05/01/50156/x/catalogue/ -ISO 2297:1973,https://www.iso.org/standard/7124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 3256:1977,https://www.iso.org/standard/8470.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 3978:1976,https://www.iso.org/standard/9645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 3980:1977,https://www.iso.org/standard/9647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 3981:1977,https://www.iso.org/standard/9648.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 4192:1981,https://www.iso.org/standard/9974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 4193:1981,https://www.iso.org/standard/9975.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 5194:1981,https://www.iso.org/standard/11199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 6827:1981,https://www.iso.org/standard/13335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 17615:2007,https://www.iso.org/standard/38416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 7,https://www.iso.org/contents/data/committee/05/01/50152/x/catalogue/ -ISO 17615:2007/Cor 1:2008,https://www.iso.org/standard/51142.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 7,https://www.iso.org/contents/data/committee/05/01/50152/x/catalogue/ -ISO 20203:2005,https://www.iso.org/standard/35321.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 226,https://www.iso.org/contents/data/committee/36/33/363319/x/catalogue/ -ISO 791:1973,https://www.iso.org/standard/5126.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 792:1973,https://www.iso.org/standard/5127.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 794:1976,https://www.iso.org/standard/5129.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 809:1973,https://www.iso.org/standard/5154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 810:1973,https://www.iso.org/standard/5155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 1178:1976,https://www.iso.org/standard/5763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 1783:1973,https://www.iso.org/standard/6415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 1975:1973,https://www.iso.org/standard/6706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 2353:1972,https://www.iso.org/standard/7194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 2354:1976,https://www.iso.org/standard/7195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 2355:1972,https://www.iso.org/standard/7196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 3116:2007,https://www.iso.org/standard/45467.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO 3255:1974,https://www.iso.org/standard/8469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 4194:1981,https://www.iso.org/standard/9976.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 5196-1:1980,https://www.iso.org/standard/11200.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 5196-2:1980,https://www.iso.org/standard/11201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79,https://www.iso.org/contents/data/committee/05/00/50084/x/catalogue/ -ISO 8287:2011,https://www.iso.org/standard/55434.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO/CD 8287,https://www.iso.org/standard/75101.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO 11707:2011,https://www.iso.org/standard/50702.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO 16374:2016,https://www.iso.org/standard/56536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO/DIS 20258,https://www.iso.org/standard/67431.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO/DIS 20260,https://www.iso.org/standard/67432.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO 23079:2005,https://www.iso.org/standard/36620.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO 26202:2007,https://www.iso.org/standard/43439.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO/CD 26202,https://www.iso.org/standard/73870.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO 197-1:1983,https://www.iso.org/standard/4053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 197-5:1980,https://www.iso.org/standard/4060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 1190-1:1982,https://www.iso.org/standard/5783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 1554:1976,https://www.iso.org/standard/6144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 1811-1:1988,https://www.iso.org/standard/6452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 1811-2:1988,https://www.iso.org/standard/6453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 1812:1976,https://www.iso.org/standard/6455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 2624:1990,https://www.iso.org/standard/7601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 3220:1975,https://www.iso.org/standard/8427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 4382-1:1991,https://www.iso.org/standard/10270.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4382-2:1991,https://www.iso.org/standard/10272.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 4741:1984,https://www.iso.org/standard/10729.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 4742:1984,https://www.iso.org/standard/10730.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 4744:1984,https://www.iso.org/standard/10732.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 4748:1984,https://www.iso.org/standard/10736.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 4749:1984,https://www.iso.org/standard/10737.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 4751:1984,https://www.iso.org/standard/10738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 5956:1984,https://www.iso.org/standard/12152.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 5959:1984,https://www.iso.org/standard/12154.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 5960:1984,https://www.iso.org/standard/12155.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 6437:1984,https://www.iso.org/standard/12792.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 7266:1984,https://www.iso.org/standard/13919.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 6283:2017,https://www.iso.org/standard/70444.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 6351:1985,https://www.iso.org/standard/12653.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 6372:2017,https://www.iso.org/standard/69352.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7523:1985,https://www.iso.org/standard/14292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7524:1985,https://www.iso.org/standard/14293.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7525:1985,https://www.iso.org/standard/14294.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7526:1985,https://www.iso.org/standard/14295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7527:1985,https://www.iso.org/standard/14296.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7529:2017,https://www.iso.org/standard/70202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7530-1:2015,https://www.iso.org/standard/65092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7530-7:1992,https://www.iso.org/standard/14305.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7530-8:1992,https://www.iso.org/standard/14306.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 7530-9:1993,https://www.iso.org/standard/14307.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 9388:1992,https://www.iso.org/standard/17080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 11400:1992,https://www.iso.org/standard/19341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 11433:1993,https://www.iso.org/standard/19373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 11433:1993/Amd 1:2013,https://www.iso.org/standard/57411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 11435:2011,https://www.iso.org/standard/57803.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 11436:1993,https://www.iso.org/standard/19376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 11437:2018,https://www.iso.org/standard/72983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO/TS 18223:2015,https://www.iso.org/standard/61812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 22033:2011,https://www.iso.org/standard/57804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO/DIS 23166,https://www.iso.org/standard/74804.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 13092:2012,https://www.iso.org/standard/52780.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 22960:2008,https://www.iso.org/standard/41252.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 22961:2008,https://www.iso.org/standard/41253.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 22962:2008,https://www.iso.org/standard/41254.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 22963:2008,https://www.iso.org/standard/41255.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 28401:2010,https://www.iso.org/standard/44689.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 301:2006,https://www.iso.org/standard/40410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 714:1975,https://www.iso.org/standard/4934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 752:2004,https://www.iso.org/standard/32445.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 752:2004/Cor 1:2006,https://www.iso.org/standard/43696.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 1169:2006,https://www.iso.org/standard/35631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 3750:2006,https://www.iso.org/standard/35950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 3815-1:2005,https://www.iso.org/standard/36189.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 3815-2:2005,https://www.iso.org/standard/35592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 4381:2011,https://www.iso.org/standard/57025.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 15201:2006,https://www.iso.org/standard/40411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 20081:2005,https://www.iso.org/standard/35285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 18,https://www.iso.org/contents/data/committee/04/64/46474/x/catalogue/ -ISO 404:2013,https://www.iso.org/standard/56861.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 20,https://www.iso.org/contents/data/committee/04/64/46470/x/catalogue/ -ISO 630-1:2011,https://www.iso.org/standard/52321.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO/NP 630-1,https://www.iso.org/standard/73841.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 630-2:2011,https://www.iso.org/standard/52322.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO/NP 630-2,https://www.iso.org/standard/73842.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 630-3:2012,https://www.iso.org/standard/54736.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO/NP 630-3,https://www.iso.org/standard/73843.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 630-4:2012,https://www.iso.org/standard/54737.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO/NP 630-4,https://www.iso.org/standard/73844.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4885,https://www.iso.org/standard/74642.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 4885:2017,https://www.iso.org/standard/63072.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 6929:2013,https://www.iso.org/standard/52949.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17,https://www.iso.org/contents/data/committee/04/62/46232/x/catalogue/ -ISO 10474:2013,https://www.iso.org/standard/53736.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 20,https://www.iso.org/contents/data/committee/04/64/46470/x/catalogue/ -ISO 683-1:2016,https://www.iso.org/standard/70642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-2:2016,https://www.iso.org/standard/70643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-3:2016,https://www.iso.org/standard/70644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-4:2016,https://www.iso.org/standard/70645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-5:2017,https://www.iso.org/standard/73273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-15:1992,https://www.iso.org/standard/4874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-17:2014,https://www.iso.org/standard/57231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-18:2014,https://www.iso.org/standard/59954.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 4954:1993,https://www.iso.org/standard/10976.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO/DIS 4954,https://www.iso.org/standard/68959.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 5949:1983,https://www.iso.org/standard/12144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 9443:1991,https://www.iso.org/standard/17146.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO/FDIS 9443,https://www.iso.org/standard/70647.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 11692:1994,https://www.iso.org/standard/19621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 6934-1:1991,https://www.iso.org/standard/13453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-2:1991,https://www.iso.org/standard/13454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-3:1991,https://www.iso.org/standard/13455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-4:1991,https://www.iso.org/standard/13456.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-4:1991/Cor 1:1992,https://www.iso.org/standard/20805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-4:1991/Cor 2:2000,https://www.iso.org/standard/33812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/NP 6934-4,https://www.iso.org/standard/75086.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-5:1991,https://www.iso.org/standard/13457.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6935-1:2007,https://www.iso.org/standard/38618.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6935-2:2015,https://www.iso.org/standard/57860.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/CD 6935-2,https://www.iso.org/standard/72763.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6935-3:1992,https://www.iso.org/standard/13461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6935-3:1992/Cor 1:2000,https://www.iso.org/standard/33813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 10144:1991,https://www.iso.org/standard/18138.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/DIS 10144,https://www.iso.org/standard/67969.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 10544:1992,https://www.iso.org/standard/18614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 11082:1992,https://www.iso.org/standard/19069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 12696:2016,https://www.iso.org/standard/71133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 13270:2013,https://www.iso.org/standard/53580.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 14654:1999,https://www.iso.org/standard/25114.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 14655:1999,https://www.iso.org/standard/25115.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 14656:1999,https://www.iso.org/standard/25116.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 15630-1:2010,https://www.iso.org/standard/45325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/DIS 15630-1,https://www.iso.org/standard/66130.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 15630-2:2010,https://www.iso.org/standard/45326.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/DIS 15630-2,https://www.iso.org/standard/66443.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 15630-3:2010,https://www.iso.org/standard/45327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/DIS 15630-3,https://www.iso.org/standard/66444.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 15698-1:2012,https://www.iso.org/standard/45618.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 15698-2:2012,https://www.iso.org/standard/45619.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 15835-1:2009,https://www.iso.org/standard/36903.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/DIS 15835-1,https://www.iso.org/standard/67967.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 15835-2:2009,https://www.iso.org/standard/36904.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/DIS 15835-2,https://www.iso.org/standard/67968.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/DIS 15835-3,https://www.iso.org/standard/71921.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 16020:2005,https://www.iso.org/standard/40078.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 630-5:2014,https://www.iso.org/standard/60901.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 683-1:2016,https://www.iso.org/standard/70642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-2:2016,https://www.iso.org/standard/70643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-3:2016,https://www.iso.org/standard/70644.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-4:2016,https://www.iso.org/standard/70645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-5:2017,https://www.iso.org/standard/73273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-15:1992,https://www.iso.org/standard/4874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-17:2014,https://www.iso.org/standard/57231.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-18:2014,https://www.iso.org/standard/59954.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 4954:1993,https://www.iso.org/standard/10976.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO/DIS 4954,https://www.iso.org/standard/68959.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 4955:2016,https://www.iso.org/standard/65940.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 5949:1983,https://www.iso.org/standard/12144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 7153-1:2016,https://www.iso.org/standard/66850.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 170,https://www.iso.org/contents/data/committee/05/36/53648/x/catalogue/ -ISO 9443:1991,https://www.iso.org/standard/17146.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO/FDIS 9443,https://www.iso.org/standard/70647.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 9444-1:2009,https://www.iso.org/standard/50338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 9444-2:2009,https://www.iso.org/standard/50345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 9445-1:2009,https://www.iso.org/standard/44433.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 9445-2:2009,https://www.iso.org/standard/44434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 11692:1994,https://www.iso.org/standard/19621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 11972:2015,https://www.iso.org/standard/59271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 11973:2015,https://www.iso.org/standard/59272.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 15510:2014,https://www.iso.org/standard/61187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 16143-1:2014,https://www.iso.org/standard/59410.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 16143-2:2014,https://www.iso.org/standard/59411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 16143-3:2014,https://www.iso.org/standard/59412.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 18632:2010,https://www.iso.org/standard/52226.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO/DIS 18632,https://www.iso.org/standard/73383.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 19272:2015,https://www.iso.org/standard/52227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 1,https://www.iso.org/contents/data/committee/04/62/46250/x/catalogue/ -ISO 683-14:2004,https://www.iso.org/standard/30944.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 6931-1:2016,https://www.iso.org/standard/67122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 6931-2:2005,https://www.iso.org/standard/36212.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 8458-1:2002,https://www.iso.org/standard/26562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 8458-2:2002,https://www.iso.org/standard/30088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 8458-3:2002,https://www.iso.org/standard/30087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 9442:1988,https://www.iso.org/standard/17145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 2605-3:1985,https://www.iso.org/standard/7599.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 4978:1983,https://www.iso.org/standard/10991.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO/DIS 4978,https://www.iso.org/standard/69962.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 4991:2015,https://www.iso.org/standard/59267.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 6303:1981,https://www.iso.org/standard/12589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO/TR 7468:1981,https://www.iso.org/standard/14205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-1:1999,https://www.iso.org/standard/16994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-2:1999,https://www.iso.org/standard/16995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-3:1999,https://www.iso.org/standard/16996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-4:1999,https://www.iso.org/standard/16997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-5:1999,https://www.iso.org/standard/16998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-1,https://www.iso.org/standard/72060.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-1:2011,https://www.iso.org/standard/51718.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-2,https://www.iso.org/standard/72061.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-2:2011,https://www.iso.org/standard/53419.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-3,https://www.iso.org/standard/72062.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-3:2011,https://www.iso.org/standard/57549.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-4,https://www.iso.org/standard/72063.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-4:2011,https://www.iso.org/standard/57550.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-5,https://www.iso.org/standard/72064.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-5:2011,https://www.iso.org/standard/57551.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-6,https://www.iso.org/standard/72065.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-6:2011,https://www.iso.org/standard/57552.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-7,https://www.iso.org/standard/72066.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-7:2011,https://www.iso.org/standard/51726.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 4957:1999,https://www.iso.org/standard/23194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO/DIS 4957,https://www.iso.org/standard/70646.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 5949:1983,https://www.iso.org/standard/12144.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 11054:2006,https://www.iso.org/standard/38556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 683-1:2016,https://www.iso.org/standard/70642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-2:2016,https://www.iso.org/standard/70643.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 683-18:2014,https://www.iso.org/standard/59954.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 3573:2012,https://www.iso.org/standard/60587.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 3574:2012,https://www.iso.org/standard/60589.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 3575:2016,https://www.iso.org/standard/67384.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 4950-1:1995,https://www.iso.org/standard/10967.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4950-1:1995/Amd 1:2003,https://www.iso.org/standard/35545.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4950-2:1995,https://www.iso.org/standard/10969.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4950-2:1995/Amd 1:2003,https://www.iso.org/standard/35546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4950-3:1995,https://www.iso.org/standard/10971.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4950-3:1995/Amd 1:2003,https://www.iso.org/standard/35547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4960:2007,https://www.iso.org/standard/42302.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/DIS 4960,https://www.iso.org/standard/73347.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 4995:2014,https://www.iso.org/standard/64678.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 4996:2014,https://www.iso.org/standard/65586.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 4997:2015,https://www.iso.org/standard/64676.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 4998:2014,https://www.iso.org/standard/63647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 5000:2011,https://www.iso.org/standard/53482.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/DIS 5000,https://www.iso.org/standard/73348.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 5001:2012,https://www.iso.org/standard/58059.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 5002:2013,https://www.iso.org/standard/60588.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 5950:2012,https://www.iso.org/standard/60963.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 5951:2013,https://www.iso.org/standard/61300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 5952:2011,https://www.iso.org/standard/53483.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/DIS 5952,https://www.iso.org/standard/73349.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 5954:2014,https://www.iso.org/standard/63645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 6316:2012,https://www.iso.org/standard/60962.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/CD 6930,https://www.iso.org/standard/69127.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 6930-1:2001,https://www.iso.org/standard/25858.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 6930-2:2004,https://www.iso.org/standard/28688.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 6932:2014,https://www.iso.org/standard/63646.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 7452:2013,https://www.iso.org/standard/54403.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 7778:2014,https://www.iso.org/standard/59632.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 7788:1985,https://www.iso.org/standard/14676.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO/NP 7788,https://www.iso.org/standard/73845.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 9034:1987,https://www.iso.org/standard/16595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 9328-1,https://www.iso.org/standard/72060.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-1:2011,https://www.iso.org/standard/51718.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-2,https://www.iso.org/standard/72061.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-2:2011,https://www.iso.org/standard/53419.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-3,https://www.iso.org/standard/72062.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-3:2011,https://www.iso.org/standard/57549.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-4,https://www.iso.org/standard/72063.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-4:2011,https://www.iso.org/standard/57550.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-5,https://www.iso.org/standard/72064.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-5:2011,https://www.iso.org/standard/57551.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-6,https://www.iso.org/standard/72065.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-6:2011,https://www.iso.org/standard/57552.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-7,https://www.iso.org/standard/72066.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9328-7:2011,https://www.iso.org/standard/51726.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9364:2017,https://www.iso.org/standard/70237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 9444-1:2009,https://www.iso.org/standard/50338.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 9444-2:2009,https://www.iso.org/standard/50345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 9445-1:2009,https://www.iso.org/standard/44433.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 9445-2:2009,https://www.iso.org/standard/44434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 9473-1:2006,https://www.iso.org/standard/34517.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 9473-2:2006,https://www.iso.org/standard/34519.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 72/SC 3,https://www.iso.org/contents/data/committee/04/99/49966/x/catalogue/ -ISO 10384:2012,https://www.iso.org/standard/61299.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 11949:2016,https://www.iso.org/standard/59157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 9,https://www.iso.org/contents/data/committee/04/63/46378/x/catalogue/ -ISO 11950:2016,https://www.iso.org/standard/59158.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 9,https://www.iso.org/contents/data/committee/04/63/46378/x/catalogue/ -ISO 11951:2016,https://www.iso.org/standard/59159.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 9,https://www.iso.org/contents/data/committee/04/63/46378/x/catalogue/ -ISO 13887:2017,https://www.iso.org/standard/70238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 13976:2016,https://www.iso.org/standard/67385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 14590:2016,https://www.iso.org/standard/67386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 14788:2017,https://www.iso.org/standard/70239.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 15177:2012,https://www.iso.org/standard/55378.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/AWI 15177,https://www.iso.org/standard/74888.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 15179:2012,https://www.iso.org/standard/55379.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/AWI 15179,https://www.iso.org/standard/74889.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 15208:2012,https://www.iso.org/standard/55380.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/AWI 15208,https://www.iso.org/standard/74890.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 15211:2012,https://www.iso.org/standard/55381.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/AWI 15211,https://www.iso.org/standard/74891.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 16160:2012,https://www.iso.org/standard/59320.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 16162:2012,https://www.iso.org/standard/58018.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 16163:2012,https://www.iso.org/standard/58019.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 16172:2011,https://www.iso.org/standard/55771.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO/DIS 16172,https://www.iso.org/standard/73350.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 17577:2016,https://www.iso.org/standard/63157.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 7,https://www.iso.org/contents/data/committee/04/63/46366/x/catalogue/ -ISO 18286:2008,https://www.iso.org/standard/51853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 20805:2017,https://www.iso.org/standard/70240.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 12,https://www.iso.org/contents/data/committee/04/64/46426/x/catalogue/ -ISO 722:1991,https://www.iso.org/standard/4954.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 82,https://www.iso.org/contents/data/committee/05/01/50164/x/catalogue/ -ISO 1035-1:1980,https://www.iso.org/standard/5507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 1035-2:1980,https://www.iso.org/standard/5508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 1035-3:1980,https://www.iso.org/standard/5509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 1035-4:1982,https://www.iso.org/standard/5510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 2938:1974,https://www.iso.org/standard/7985.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 4951-1:2001,https://www.iso.org/standard/1075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4951-2:2001,https://www.iso.org/standard/27818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4951-3:2001,https://www.iso.org/standard/27819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 9443:1991,https://www.iso.org/standard/17146.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO/FDIS 9443,https://www.iso.org/standard/70647.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 16120-1:2017,https://www.iso.org/standard/63741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 16120-2:2017,https://www.iso.org/standard/63742.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 16120-3:2011,https://www.iso.org/standard/45633.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 16120-4:2017,https://www.iso.org/standard/63743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 20723:2004,https://www.iso.org/standard/34260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 2232:1990,https://www.iso.org/standard/7039.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO/CD 2232,https://www.iso.org/standard/69722.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 2408:2017,https://www.iso.org/standard/66635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 2532:1974,https://www.iso.org/standard/7471.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 3108:2017,https://www.iso.org/standard/66725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 3189-1:1985,https://www.iso.org/standard/8380.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 3189-1:1985/Cor 1:2002,https://www.iso.org/standard/36292.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 3189-2:1985,https://www.iso.org/standard/8381.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 3189-3:1985,https://www.iso.org/standard/8382.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 4101:1983,https://www.iso.org/standard/9842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 4344:2004,https://www.iso.org/standard/31563.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 4345:1988,https://www.iso.org/standard/10224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 4346:1977,https://www.iso.org/standard/10225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 6984:1990,https://www.iso.org/standard/13544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 7531:1987,https://www.iso.org/standard/14308.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 7900:2006,https://www.iso.org/standard/39138.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 7989-1:2006,https://www.iso.org/standard/39137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 7989-2:2007,https://www.iso.org/standard/39818.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO/NP 7989-2,https://www.iso.org/standard/74866.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 8792:1986,https://www.iso.org/standard/16219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 8793:1986,https://www.iso.org/standard/16220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 8794:1986,https://www.iso.org/standard/16221.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO/CD 8794,https://www.iso.org/standard/74043.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 10425:2003,https://www.iso.org/standard/37526.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 12076:2002,https://www.iso.org/standard/32197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 16124:2015,https://www.iso.org/standard/59563.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 16143-3:2014,https://www.iso.org/standard/59412.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 4,https://www.iso.org/contents/data/committee/04/63/46358/x/catalogue/ -ISO 16650:2004,https://www.iso.org/standard/30400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 16839:2013,https://www.iso.org/standard/57810.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 16841:2014,https://www.iso.org/standard/57811.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 17558:2006,https://www.iso.org/standard/38408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 17745:2016,https://www.iso.org/standard/60382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 17746:2016,https://www.iso.org/standard/60383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 17832:2009,https://www.iso.org/standard/38499.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO/FDIS 17832,https://www.iso.org/standard/69351.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 17893:2004,https://www.iso.org/standard/31617.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 17893:2004/Amd 1:2010,https://www.iso.org/standard/50607.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO/FDIS 19203,https://www.iso.org/standard/63988.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO/DIS 19427,https://www.iso.org/standard/69760.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO/CD 21123,https://www.iso.org/standard/69950.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO/CD 21124,https://www.iso.org/standard/69951.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 21669:2005,https://www.iso.org/standard/35962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 22034-1:2007,https://www.iso.org/standard/40649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 22034-2:2016,https://www.iso.org/standard/62680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 23717:2006,https://www.iso.org/standard/36947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 630-6:2014,https://www.iso.org/standard/60902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-1:1989,https://www.iso.org/standard/4791.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-2:1989,https://www.iso.org/standard/4793.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-5:1976,https://www.iso.org/standard/4796.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-11:1980,https://www.iso.org/standard/4802.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-15:1980,https://www.iso.org/standard/4806.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-16:1980,https://www.iso.org/standard/4807.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-18:1980,https://www.iso.org/standard/4808.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-19:1980,https://www.iso.org/standard/4809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 657-21:1983,https://www.iso.org/standard/4811.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4951-1:2001,https://www.iso.org/standard/1075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4951-2:2001,https://www.iso.org/standard/27818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 4951-3:2001,https://www.iso.org/standard/27819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 7452:2013,https://www.iso.org/standard/54403.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 20723:2004,https://www.iso.org/standard/34260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 559:1991,https://www.iso.org/standard/4648.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 1129:1980,https://www.iso.org/standard/5662.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 2037:1992,https://www.iso.org/standard/6810.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 2531:2009,https://www.iso.org/standard/40396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 2531:2009/Cor 1:2010,https://www.iso.org/standard/57470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 2937:1974,https://www.iso.org/standard/7984.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 3183:2012,https://www.iso.org/standard/56843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 3183:2012/Amd 1:2017,https://www.iso.org/standard/72122.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 4179:2005,https://www.iso.org/standard/35244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 6594:2006,https://www.iso.org/standard/35248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 6758:1980,https://www.iso.org/standard/13252.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 6759:1980,https://www.iso.org/standard/13253.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9329-1:1989,https://www.iso.org/standard/17004.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9329-2:1997,https://www.iso.org/standard/17005.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9329-3:1997,https://www.iso.org/standard/17006.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9329-4:1997,https://www.iso.org/standard/17007.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-1:1990,https://www.iso.org/standard/17008.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-2:1997,https://www.iso.org/standard/17009.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-3:1997,https://www.iso.org/standard/17010.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-4:2000,https://www.iso.org/standard/32441.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-5:2000,https://www.iso.org/standard/32443.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9330-6:1997,https://www.iso.org/standard/17013.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 9349:2017,https://www.iso.org/standard/64770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 10332:2010,https://www.iso.org/standard/44660.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10763:1994,https://www.iso.org/standard/1620.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO/CD 10763,https://www.iso.org/standard/73040.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 10799-1:2011,https://www.iso.org/standard/52311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 10799-2:2011,https://www.iso.org/standard/52312.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 10893-1:2011,https://www.iso.org/standard/44662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-2:2011,https://www.iso.org/standard/44664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-3:2011,https://www.iso.org/standard/44678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-4:2011,https://www.iso.org/standard/44674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-5:2011,https://www.iso.org/standard/44677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-6:2011,https://www.iso.org/standard/44675.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/DIS 10893-6,https://www.iso.org/standard/69805.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-7:2011,https://www.iso.org/standard/46367.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO/DIS 10893-7,https://www.iso.org/standard/69806.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-8:2011,https://www.iso.org/standard/44669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-9:2011,https://www.iso.org/standard/44673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-10:2011,https://www.iso.org/standard/44665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-11:2011,https://www.iso.org/standard/44667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 10893-12:2011,https://www.iso.org/standard/44670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 19,https://www.iso.org/contents/data/committee/04/64/46464/x/catalogue/ -ISO 11960:2014,https://www.iso.org/standard/64101.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO/CD 11960,https://www.iso.org/standard/75278.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 11961:2008,https://www.iso.org/standard/44445.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 11961:2008/Cor 1:2009,https://www.iso.org/standard/53706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO/DIS 11961,https://www.iso.org/standard/73517.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 12633-1:2011,https://www.iso.org/standard/52309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 12633-2:2011,https://www.iso.org/standard/52310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 13470:2012,https://www.iso.org/standard/53811.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 13680:2010,https://www.iso.org/standard/56098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 13680:2010/CD Amd 1,https://www.iso.org/standard/70785.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 67/SC 5,https://www.iso.org/contents/data/committee/04/95/49588/x/catalogue/ -ISO 16132:2016,https://www.iso.org/standard/65495.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 16440:2016,https://www.iso.org/standard/56758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 2,https://www.iso.org/contents/data/committee/04/95/49532/x/catalogue/ -ISO 16631:2016,https://www.iso.org/standard/57331.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 4986:2010,https://www.iso.org/standard/52300.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/DIS 4986,https://www.iso.org/standard/73041.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4987:2010,https://www.iso.org/standard/52301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/CD 4987,https://www.iso.org/standard/73042.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4990:2015,https://www.iso.org/standard/59266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4991:2015,https://www.iso.org/standard/59267.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4992-1:2006,https://www.iso.org/standard/39551.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/CD 4992-1,https://www.iso.org/standard/73044.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4992-2:2006,https://www.iso.org/standard/39552.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/CD 4992-2,https://www.iso.org/standard/73045.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 4993:2015,https://www.iso.org/standard/59268.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 7186:2011,https://www.iso.org/standard/50913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 9477:2015,https://www.iso.org/standard/59269.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 10679:2010,https://www.iso.org/standard/46040.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 10679:2010/Cor 1:2010,https://www.iso.org/standard/56228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/CD 10679,https://www.iso.org/standard/73043.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 11970:2016,https://www.iso.org/standard/59270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 11971:2008,https://www.iso.org/standard/38864.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 11972:2015,https://www.iso.org/standard/59271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 11973:2015,https://www.iso.org/standard/59272.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 13520:2015,https://www.iso.org/standard/59273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 13521:2015,https://www.iso.org/standard/59274.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 13583-1:2015,https://www.iso.org/standard/59275.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 13583-2:2015,https://www.iso.org/standard/59276.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 14737:2015,https://www.iso.org/standard/59277.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 16468:2015,https://www.iso.org/standard/59278.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 19959:2005,https://www.iso.org/standard/34022.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO/CD 19959,https://www.iso.org/standard/73046.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 19960:2015,https://www.iso.org/standard/59279.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 11,https://www.iso.org/contents/data/committee/04/63/46390/x/catalogue/ -ISO 9327-1:1999,https://www.iso.org/standard/16994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-2:1999,https://www.iso.org/standard/16995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-3:1999,https://www.iso.org/standard/16996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-4:1999,https://www.iso.org/standard/16997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 9327-5:1999,https://www.iso.org/standard/16998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 15461,https://www.iso.org/standard/67383.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 17/SC 10,https://www.iso.org/contents/data/committee/04/63/46388/x/catalogue/ -ISO 1005-1:1994,https://www.iso.org/standard/1201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-2:1986,https://www.iso.org/standard/5460.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-3:1982,https://www.iso.org/standard/5461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-4:1986,https://www.iso.org/standard/5463.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-6:1994,https://www.iso.org/standard/5466.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-7:1982,https://www.iso.org/standard/5467.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-8:1986,https://www.iso.org/standard/5468.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 1005-9:1986,https://www.iso.org/standard/5469.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 15,https://www.iso.org/contents/data/committee/04/64/46434/x/catalogue/ -ISO 14657:2005,https://www.iso.org/standard/40756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6537:1982,https://www.iso.org/standard/12931.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 131/SC 3,https://www.iso.org/contents/data/committee/05/22/52254/x/catalogue/ -ISO 209:2007,https://www.iso.org/standard/35310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 3522:2007,https://www.iso.org/standard/45815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 7,https://www.iso.org/contents/data/committee/05/01/50152/x/catalogue/ -ISO 6279:2017,https://www.iso.org/standard/70401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 6361-1:2011,https://www.iso.org/standard/51842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6361-2:2014,https://www.iso.org/standard/65056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6361-3:2014,https://www.iso.org/standard/65057.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6361-4:2014,https://www.iso.org/standard/65058.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6361-5:2011,https://www.iso.org/standard/51846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6362-1:2012,https://www.iso.org/standard/52235.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6362-2:2014,https://www.iso.org/standard/65059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6362-3:2012,https://www.iso.org/standard/52237.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6362-4:2012,https://www.iso.org/standard/52238.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6362-5:2012,https://www.iso.org/standard/52239.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6362-6:2012,https://www.iso.org/standard/52240.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6362-7:2014,https://www.iso.org/standard/65060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-1:2012,https://www.iso.org/standard/54486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-2:2012,https://www.iso.org/standard/54488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-3:2012,https://www.iso.org/standard/54489.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-4:2012,https://www.iso.org/standard/54490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-5:2012,https://www.iso.org/standard/54491.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 6363-6:2012,https://www.iso.org/standard/54493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 7271:2011,https://www.iso.org/standard/53665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 6,https://www.iso.org/contents/data/committee/05/01/50126/x/catalogue/ -ISO 13085:2014,https://www.iso.org/standard/52741.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 15546:2011,https://www.iso.org/standard/52740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 27627:2014,https://www.iso.org/standard/44242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67,https://www.iso.org/contents/data/committee/04/95/49506/x/catalogue/ -ISO 16220:2017,https://www.iso.org/standard/70697.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 5,https://www.iso.org/contents/data/committee/05/01/50120/x/catalogue/ -ISO 197-1:1983,https://www.iso.org/standard/4053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 197-2:1983,https://www.iso.org/standard/4055.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 197-3:1983,https://www.iso.org/standard/4057.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 197-4:1983,https://www.iso.org/standard/4059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 431:1981,https://www.iso.org/standard/4442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 26,https://www.iso.org/contents/data/committee/04/72/47228/x/catalogue/ -ISO 9725:2017,https://www.iso.org/standard/69353.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 12725:1997,https://www.iso.org/standard/1766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO/CD 12725,https://www.iso.org/standard/70212.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 155,https://www.iso.org/contents/data/committee/05/32/53216/x/catalogue/ -ISO 18762:2016,https://www.iso.org/standard/63310.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 25902-1:2009,https://www.iso.org/standard/43310.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 25902-2:2010,https://www.iso.org/standard/43311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 79/SC 11,https://www.iso.org/contents/data/committee/30/95/309568/x/catalogue/ -ISO 2738:1999,https://www.iso.org/standard/21494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 2739:2012,https://www.iso.org/standard/53346.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 2740:2009,https://www.iso.org/standard/51243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3252:1999,https://www.iso.org/standard/26045.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119,https://www.iso.org/contents/data/committee/05/18/51896/x/catalogue/ -ISO/CD 3252,https://www.iso.org/standard/69828.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119,https://www.iso.org/contents/data/committee/05/18/51896/x/catalogue/ -ISO 3312:1987,https://www.iso.org/standard/8569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3325:1996,https://www.iso.org/standard/1584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3325:1996/Amd 1:2001,https://www.iso.org/standard/31250.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3327:2009,https://www.iso.org/standard/43511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3369:2006,https://www.iso.org/standard/44435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3738-1:1982,https://www.iso.org/standard/9225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3738-2:1988,https://www.iso.org/standard/9226.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3878:1983,https://www.iso.org/standard/9484.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3907:2009,https://www.iso.org/standard/43509.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3908:2009,https://www.iso.org/standard/43510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3909:1976,https://www.iso.org/standard/9530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 3923-1:2008,https://www.iso.org/standard/41716.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO/FDIS 3923-1,https://www.iso.org/standard/69219.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 3923-2:1981,https://www.iso.org/standard/9559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 3927:2017,https://www.iso.org/standard/72858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 3928:2016,https://www.iso.org/standard/65279.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 3953:2011,https://www.iso.org/standard/56508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 3954:2007,https://www.iso.org/standard/43430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 3995:1985,https://www.iso.org/standard/9660.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4003:1977,https://www.iso.org/standard/9678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 4022:1987,https://www.iso.org/standard/9708.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO/DIS 4022,https://www.iso.org/standard/72838.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 4489:1978,https://www.iso.org/standard/10381.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/CD 4489,https://www.iso.org/standard/74887.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/DIS 4489,https://www.iso.org/standard/72771.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4490:2014,https://www.iso.org/standard/65132.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO/FDIS 4490,https://www.iso.org/standard/69218.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4491-1:1989,https://www.iso.org/standard/10384.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4491-2:1997,https://www.iso.org/standard/25354.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4491-3:1997,https://www.iso.org/standard/25355.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4491-4:2013,https://www.iso.org/standard/61879.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4492:2017,https://www.iso.org/standard/72857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4496:2017,https://www.iso.org/standard/69210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4497:1983,https://www.iso.org/standard/10393.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 4498:2010,https://www.iso.org/standard/55425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 4499-1:2008,https://www.iso.org/standard/43500.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/CD 4499-1,https://www.iso.org/standard/74883.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4499-2:2008,https://www.iso.org/standard/43501.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/CD 4499-2,https://www.iso.org/standard/74884.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4499-3:2016,https://www.iso.org/standard/61265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4499-4:2016,https://www.iso.org/standard/61266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4501:1978,https://www.iso.org/standard/10399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4503:1978,https://www.iso.org/standard/10400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4506,https://www.iso.org/standard/69221.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4506:1979,https://www.iso.org/standard/10402.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4507:2000,https://www.iso.org/standard/22231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 4883:1978,https://www.iso.org/standard/10876.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 4884:1978,https://www.iso.org/standard/10877.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/CD 4884,https://www.iso.org/standard/74886.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/DIS 4884,https://www.iso.org/standard/72770.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 5754:2017,https://www.iso.org/standard/69222.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 5755:2012,https://www.iso.org/standard/42225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119,https://www.iso.org/contents/data/committee/05/18/51896/x/catalogue/ -ISO 7625:2012,https://www.iso.org/standard/57412.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 7627-1:1983,https://www.iso.org/standard/14427.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 7627-2:1983,https://www.iso.org/standard/14428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 7627-3:1983,https://www.iso.org/standard/14429.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 7627-4:1983,https://www.iso.org/standard/14430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 7627-5:1983,https://www.iso.org/standard/14431.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 7627-6:1985,https://www.iso.org/standard/14432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 10070:1991,https://www.iso.org/standard/18040.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO/CD 10070,https://www.iso.org/standard/74872.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 11873:2005,https://www.iso.org/standard/33001.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 11873:2005/Cor 1:2008,https://www.iso.org/standard/52850.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 11876:2010,https://www.iso.org/standard/43512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 11877:2008,https://www.iso.org/standard/32998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 13517:2013,https://www.iso.org/standard/53972.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 13944:2012,https://www.iso.org/standard/60516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 13947:2011,https://www.iso.org/standard/59928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 14168:2011,https://www.iso.org/standard/56859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 14317:2015,https://www.iso.org/standard/61264.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 17352:2008,https://www.iso.org/standard/43502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 18549-1:2009,https://www.iso.org/standard/45451.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 18549-2:2009,https://www.iso.org/standard/45452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 2,https://www.iso.org/contents/data/committee/05/19/51902/x/catalogue/ -ISO 22068:2012,https://www.iso.org/standard/50373.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119,https://www.iso.org/contents/data/committee/05/18/51896/x/catalogue/ -ISO 23519:2010,https://www.iso.org/standard/41635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 26482:2010,https://www.iso.org/standard/43596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 28079:2009,https://www.iso.org/standard/44495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 28080:2011,https://www.iso.org/standard/44496.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO/WD 28080,https://www.iso.org/standard/72769.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 119/SC 4,https://www.iso.org/contents/data/committee/05/19/51960/x/catalogue/ -ISO 28279:2010,https://www.iso.org/standard/44599.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 119/SC 3,https://www.iso.org/contents/data/committee/05/19/51926/x/catalogue/ -ISO 8965:2013,https://www.iso.org/standard/52488.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/CD 8965,https://www.iso.org/standard/74837.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/DIS 38200,https://www.iso.org/standard/70179.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/PC 287,https://www.iso.org/contents/data/committee/49/52/4952370/x/catalogue/ -ISO 737:1975,https://www.iso.org/standard/4987.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 738:2015,https://www.iso.org/standard/62870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 1029:1974,https://www.iso.org/standard/5501.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 1030:1975,https://www.iso.org/standard/5502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 1031:1974,https://www.iso.org/standard/5503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 1032:1974,https://www.iso.org/standard/5504.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 2299:1973,https://www.iso.org/standard/7126.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 2300:1973,https://www.iso.org/standard/7127.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 2301:1973,https://www.iso.org/standard/7128.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 3129:2012,https://www.iso.org/standard/52489.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/CD 3129,https://www.iso.org/standard/74839.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 3132:1975,https://www.iso.org/standard/8290.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 3179:1974,https://www.iso.org/standard/8368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 3347:1976,https://www.iso.org/standard/8631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 4470:1981,https://www.iso.org/standard/10365.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 4471:1982,https://www.iso.org/standard/10366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 4472:1983,https://www.iso.org/standard/10367.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 4475:1989,https://www.iso.org/standard/10370.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 8903:2016,https://www.iso.org/standard/62871.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 8904:1990,https://www.iso.org/standard/16431.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 8905:1988,https://www.iso.org/standard/16432.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 8906:1988,https://www.iso.org/standard/16433.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 9086-1:1987,https://www.iso.org/standard/16673.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 9709:2005,https://www.iso.org/standard/31451.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/DIS 9709,https://www.iso.org/standard/69946.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 13059:2011,https://www.iso.org/standard/52486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-1:2014,https://www.iso.org/standard/60063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-1:2014/Amd 1:2017,https://www.iso.org/standard/70885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-2:2014,https://www.iso.org/standard/60064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-2:2014/Amd 1:2017,https://www.iso.org/standard/70886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-3:2014,https://www.iso.org/standard/60065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-3:2014/Amd 1:2017,https://www.iso.org/standard/70887.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-4:2014,https://www.iso.org/standard/60066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-4:2014/Amd 1:2017,https://www.iso.org/standard/70888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/CD 13061-5,https://www.iso.org/standard/74335.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/DIS 13061-5,https://www.iso.org/standard/60067.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-6:2014,https://www.iso.org/standard/60068.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-6:2014/DAmd 1,https://www.iso.org/standard/70889.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-7:2014,https://www.iso.org/standard/60069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-7:2014/DAmd 1,https://www.iso.org/standard/70890.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-10:2017,https://www.iso.org/standard/60072.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-11:2017,https://www.iso.org/standard/60073.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-12:2017,https://www.iso.org/standard/60074.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-13:2016,https://www.iso.org/standard/60075.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-14:2016,https://www.iso.org/standard/60076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-15:2017,https://www.iso.org/standard/60077.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-16:2017,https://www.iso.org/standard/60078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13061-17:2017,https://www.iso.org/standard/60079.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 13912:2017,https://www.iso.org/standard/69945.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 16415:2012,https://www.iso.org/standard/56707.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 17959:2014,https://www.iso.org/standard/61132.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 19474,https://www.iso.org/standard/65043.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 21887:2007,https://www.iso.org/standard/40502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165/SC 1,https://www.iso.org/contents/data/committee/05/36/53604/x/catalogue/ -ISO/DIS 22157,https://www.iso.org/standard/65950.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 22157-1:2004,https://www.iso.org/standard/36150.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 24294:2013,https://www.iso.org/standard/52502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 9424:2003,https://www.iso.org/standard/25155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 9426:2003,https://www.iso.org/standard/32854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 9427:2003,https://www.iso.org/standard/32853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 12460-1:2007,https://www.iso.org/standard/2564.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO/DIS 12460-2,https://www.iso.org/standard/64064.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 12460-3:2015,https://www.iso.org/standard/63065.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO/NP 12460-3,https://www.iso.org/standard/75055.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 12460-4:2016,https://www.iso.org/standard/64998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 12460-5:2015,https://www.iso.org/standard/63066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16572:2008,https://www.iso.org/standard/37996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 16978:2003,https://www.iso.org/standard/32836.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16979:2003,https://www.iso.org/standard/32837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16981:2003,https://www.iso.org/standard/32839.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16983:2003,https://www.iso.org/standard/32840.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16984:2003,https://www.iso.org/standard/32841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16985:2003,https://www.iso.org/standard/32842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16987:2003,https://www.iso.org/standard/32845.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16998:2003,https://www.iso.org/standard/32847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16999:2003,https://www.iso.org/standard/32848.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 18775:2008,https://www.iso.org/standard/38868.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO/NP 18775,https://www.iso.org/standard/75050.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 20585:2005,https://www.iso.org/standard/35481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 21887:2007,https://www.iso.org/standard/40502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165/SC 1,https://www.iso.org/contents/data/committee/05/36/53604/x/catalogue/ -ISO 27528:2009,https://www.iso.org/standard/44217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 1096:2014,https://www.iso.org/standard/61092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 1954:2013,https://www.iso.org/standard/61093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 2074:2007,https://www.iso.org/standard/43024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 2074:2007/Amd 1:2017,https://www.iso.org/standard/69392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 2426-1:2000,https://www.iso.org/standard/7334.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO/NP 2426-1,https://www.iso.org/standard/75110.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 2426-2:2000,https://www.iso.org/standard/30475.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO/NP 2426-2,https://www.iso.org/standard/75111.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 2426-3:2000,https://www.iso.org/standard/30476.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO/DIS 2426-4,https://www.iso.org/standard/69456.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 12465:2007,https://www.iso.org/standard/40333.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 12466-1:2007,https://www.iso.org/standard/40123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 12466-1:2007/Amd 1:2013,https://www.iso.org/standard/61018.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 12466-2:2007,https://www.iso.org/standard/40124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 13608:2014,https://www.iso.org/standard/54078.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 3340:1976,https://www.iso.org/standard/8621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89,https://www.iso.org/contents/data/committee/05/04/50428/x/catalogue/ -ISO 16893:2016,https://www.iso.org/standard/60033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 2,https://www.iso.org/contents/data/committee/05/04/50458/x/catalogue/ -ISO 16894:2009,https://www.iso.org/standard/32475.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 2,https://www.iso.org/contents/data/committee/05/04/50458/x/catalogue/ -ISO 16895:2016,https://www.iso.org/standard/60032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 1,https://www.iso.org/contents/data/committee/05/04/50446/x/catalogue/ -ISO 17064:2016,https://www.iso.org/standard/66407.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 1,https://www.iso.org/contents/data/committee/05/04/50446/x/catalogue/ -ISO 27769:2016,https://www.iso.org/standard/68639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 1,https://www.iso.org/contents/data/committee/05/04/50446/x/catalogue/ -ISO 10033-1:2011,https://www.iso.org/standard/52667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 10033-2:2011,https://www.iso.org/standard/52668.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 13609:2014,https://www.iso.org/standard/54080.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 18776:2008,https://www.iso.org/standard/38869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 18776:2008/Amd 1:2013,https://www.iso.org/standard/61016.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 27567:2009,https://www.iso.org/standard/44225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 89/SC 3,https://www.iso.org/contents/data/committee/05/04/50472/x/catalogue/ -ISO 631:1975,https://www.iso.org/standard/4754.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 1072:1975,https://www.iso.org/standard/5566.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 1324:1985,https://www.iso.org/standard/5893.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 2036:1976,https://www.iso.org/standard/6808.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 2457:1976,https://www.iso.org/standard/7372.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 3397:1977,https://www.iso.org/standard/8697.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/NP 3397,https://www.iso.org/standard/70007.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 3398:1977,https://www.iso.org/standard/8698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 3399:1976,https://www.iso.org/standard/8699.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 3810:1987,https://www.iso.org/standard/9349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 5320:1980,https://www.iso.org/standard/11327.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5321:1978,https://www.iso.org/standard/11329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5323:1984,https://www.iso.org/standard/11331.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO/CD 5323,https://www.iso.org/standard/74838.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5326:1978,https://www.iso.org/standard/11334.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5327:1978,https://www.iso.org/standard/11335.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5328:1978,https://www.iso.org/standard/11336.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5329:1978,https://www.iso.org/standard/11337.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5333:1978,https://www.iso.org/standard/11340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 5334:1978,https://www.iso.org/standard/11341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 218,https://www.iso.org/contents/data/committee/05/49/54976/x/catalogue/ -ISO 24337:2006,https://www.iso.org/standard/37132.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/NP 24337,https://www.iso.org/standard/74517.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 633:2007,https://www.iso.org/standard/38938.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/DIS 633,https://www.iso.org/standard/67048.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 1215:2015,https://www.iso.org/standard/65024.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 1216:2017,https://www.iso.org/standard/67768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 1997:1992,https://www.iso.org/standard/6752.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/DIS 1997,https://www.iso.org/standard/73876.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2030:1990,https://www.iso.org/standard/6802.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/DIS 2030,https://www.iso.org/standard/73875.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2031:2015,https://www.iso.org/standard/68750.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2066:2004,https://www.iso.org/standard/38157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2067:1998,https://www.iso.org/standard/23233.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/NP 2067,https://www.iso.org/standard/69752.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2190:2016,https://www.iso.org/standard/69749.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2219:2010,https://www.iso.org/standard/44779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2385:2015,https://www.iso.org/standard/67067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2386:2015,https://www.iso.org/standard/67767.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2509:1989,https://www.iso.org/standard/7441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 3810:1987,https://www.iso.org/standard/9349.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 3813:2004,https://www.iso.org/standard/38158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 3850:2004,https://www.iso.org/standard/40069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 3867:2017,https://www.iso.org/standard/71185.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 3869:2017,https://www.iso.org/standard/71186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 4708:2017,https://www.iso.org/standard/71702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 4709:2017,https://www.iso.org/standard/69751.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 4710:2000,https://www.iso.org/standard/23234.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 4714:2000,https://www.iso.org/standard/28118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 7322:2014,https://www.iso.org/standard/62402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 8724:2009,https://www.iso.org/standard/44780.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9149:2010,https://www.iso.org/standard/52197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9366:2001,https://www.iso.org/standard/28119.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-1:2007,https://www.iso.org/standard/36660.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-2:2007,https://www.iso.org/standard/36662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-3:2007,https://www.iso.org/standard/36663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-4:2007,https://www.iso.org/standard/36664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-5:2007,https://www.iso.org/standard/36666.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-6:2007,https://www.iso.org/standard/36667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9727-7:2007,https://www.iso.org/standard/36668.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9986:2014,https://www.iso.org/standard/62403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 10106:2003,https://www.iso.org/standard/34945.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/DIS 10106,https://www.iso.org/standard/69750.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 10718:2015,https://www.iso.org/standard/65028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 16419:2013,https://www.iso.org/standard/56717.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 16420:2013,https://www.iso.org/standard/56718.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 17727:2012,https://www.iso.org/standard/60315.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO/NP 17727,https://www.iso.org/standard/69753.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 20752:2014,https://www.iso.org/standard/62646.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 21128:2006,https://www.iso.org/standard/35672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 22308:2005,https://www.iso.org/standard/34938.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 7006:1981,https://www.iso.org/standard/13576.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7568:1986,https://www.iso.org/standard/14351.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7569:1986,https://www.iso.org/standard/14352.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7570:1986,https://www.iso.org/standard/14353.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7571:1986,https://www.iso.org/standard/14354.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7945:1985,https://www.iso.org/standard/14922.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7946:1985,https://www.iso.org/standard/14923.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7947:1985,https://www.iso.org/standard/14924.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7948:1987,https://www.iso.org/standard/14925.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7949:1985,https://www.iso.org/standard/14926.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7950:1985,https://www.iso.org/standard/14927.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7957:1987,https://www.iso.org/standard/14934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7958:1987,https://www.iso.org/standard/14935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7959:1987,https://www.iso.org/standard/14936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7960:1995,https://www.iso.org/standard/14937.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO/NP 7960,https://www.iso.org/standard/72302.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 39/SC 6,https://www.iso.org/contents/data/committee/04/83/48394/x/catalogue/ -ISO 7983:1988,https://www.iso.org/standard/14980.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7984:1988,https://www.iso.org/standard/14981.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7987:1985,https://www.iso.org/standard/14984.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 7988:1988,https://www.iso.org/standard/14985.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 9264:1988,https://www.iso.org/standard/16914.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 9265:1988,https://www.iso.org/standard/16915.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 9266:1988,https://www.iso.org/standard/16916.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 9267:1988,https://www.iso.org/standard/16917.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 18217:2015,https://www.iso.org/standard/61786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-1:2017,https://www.iso.org/standard/63896.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-2:2017,https://www.iso.org/standard/63897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-3:2017,https://www.iso.org/standard/63898.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/FDIS 19085-4.2,https://www.iso.org/standard/63899.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-5:2017,https://www.iso.org/standard/63900.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-6:2017,https://www.iso.org/standard/66333.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/DIS 19085-7,https://www.iso.org/standard/66780.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-8:2017,https://www.iso.org/standard/67635.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/DIS 19085-9,https://www.iso.org/standard/67636.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 19085-10,https://www.iso.org/standard/67637.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/CD 19085-11,https://www.iso.org/standard/67638.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/FDIS 19085-12,https://www.iso.org/standard/67639.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/FDIS 19085-13,https://www.iso.org/standard/67640.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/CD 19085-14,https://www.iso.org/standard/67641.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO/CD 19085-15,https://www.iso.org/standard/71274.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 39/SC 4,https://www.iso.org/contents/data/committee/04/83/48390/x/catalogue/ -ISO 2729:1995,https://www.iso.org/standard/7703.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29,https://www.iso.org/contents/data/committee/04/74/47464/x/catalogue/ -ISO 2935:1974,https://www.iso.org/standard/7982.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 3295:1975,https://www.iso.org/standard/8531.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 7294:1983,https://www.iso.org/standard/13953.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 29/SC 9,https://www.iso.org/contents/data/committee/04/75/47530/x/catalogue/ -ISO 695:1991,https://www.iso.org/standard/4895.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 719:1985,https://www.iso.org/standard/4948.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 720:1985,https://www.iso.org/standard/4950.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 76,https://www.iso.org/contents/data/committee/05/00/50044/x/catalogue/ -ISO 1776:1985,https://www.iso.org/standard/6411.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 3585:1998,https://www.iso.org/standard/24774.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7884-1:1987,https://www.iso.org/standard/14825.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7884-2:1987,https://www.iso.org/standard/14826.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7884-3:1987,https://www.iso.org/standard/14827.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7884-4:1987,https://www.iso.org/standard/14828.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7884-5:1987,https://www.iso.org/standard/14829.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7884-6:1987,https://www.iso.org/standard/14830.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7884-7:1987,https://www.iso.org/standard/14831.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7884-8:1987,https://www.iso.org/standard/14832.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 7991:1987,https://www.iso.org/standard/14988.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 9385:1990,https://www.iso.org/standard/17077.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 10136-1:1993,https://www.iso.org/standard/18125.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-2:1993,https://www.iso.org/standard/18126.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-3:1993,https://www.iso.org/standard/18127.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-4:1993,https://www.iso.org/standard/18128.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-5:1993,https://www.iso.org/standard/18129.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10136-6:1993,https://www.iso.org/standard/18130.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10345-1:1992,https://www.iso.org/standard/18396.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 10345-2:1992,https://www.iso.org/standard/18397.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 12775:1997,https://www.iso.org/standard/1798.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 14719:2011,https://www.iso.org/standard/54941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21078-1:2008,https://www.iso.org/standard/39979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21078-2:2006,https://www.iso.org/standard/43838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 8424:1996,https://www.iso.org/standard/22561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 9689:1990,https://www.iso.org/standard/17544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 9802:1996,https://www.iso.org/standard/17667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 9802:1996/Cor 1:2005,https://www.iso.org/standard/42464.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 10629:1996,https://www.iso.org/standard/22283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 11455:1995,https://www.iso.org/standard/19407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 12123:2010,https://www.iso.org/standard/45848.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO/DIS 12123,https://www.iso.org/standard/69905.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 12844:1999,https://www.iso.org/standard/2452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 1288-1:2016,https://www.iso.org/standard/62743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 1288-2:2016,https://www.iso.org/standard/62744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 1288-3:2016,https://www.iso.org/standard/62745.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/NP 1288-3,https://www.iso.org/standard/75039.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 1288-4:2016,https://www.iso.org/standard/62746.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 1288-5:2016,https://www.iso.org/standard/62747.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 3009:2003,https://www.iso.org/standard/37415.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 9050:2003,https://www.iso.org/standard/35062.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/DIS 9050,https://www.iso.org/standard/54111.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 10291:1994,https://www.iso.org/standard/18333.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 10292:1994,https://www.iso.org/standard/18334.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/CD 10292,https://www.iso.org/standard/54112.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 10293:1997,https://www.iso.org/standard/18335.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 11479-1:2011,https://www.iso.org/standard/50538.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 11479-2:2011,https://www.iso.org/standard/50539.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 11485-1:2011,https://www.iso.org/standard/50541.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 11485-2:2011,https://www.iso.org/standard/50542.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 11485-3:2014,https://www.iso.org/standard/62576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12540:2017,https://www.iso.org/standard/62574.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12543-1:2011,https://www.iso.org/standard/46375.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12543-2:2011,https://www.iso.org/standard/46376.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12543-3:2011,https://www.iso.org/standard/46377.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12543-4:2011,https://www.iso.org/standard/46378.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12543-5:2011,https://www.iso.org/standard/46379.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12543-6:2011,https://www.iso.org/standard/46380.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 12543-6:2011/Cor 1:2012,https://www.iso.org/standard/61531.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 14438:2002,https://www.iso.org/standard/35995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16293-1:2008,https://www.iso.org/standard/42917.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 16293-2:2017,https://www.iso.org/standard/55513.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 16293-3:2017,https://www.iso.org/standard/55514.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 16293-4:2016,https://www.iso.org/standard/55515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 16293-5:2016,https://www.iso.org/standard/55516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 16932:2016,https://www.iso.org/standard/61766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/NP 16932,https://www.iso.org/standard/75041.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16933:2007,https://www.iso.org/standard/38166.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16933:2007/Cor 1:2008,https://www.iso.org/standard/51690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/DIS 16933,https://www.iso.org/standard/72726.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16934:2007,https://www.iso.org/standard/38167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16934:2007/Cor 1:2008,https://www.iso.org/standard/51691.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/DIS 16934,https://www.iso.org/standard/72727.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16935:2007,https://www.iso.org/standard/38168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16935:2007/Cor 1:2008,https://www.iso.org/standard/51689.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/DIS 16935,https://www.iso.org/standard/72731.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16936-1:2005,https://www.iso.org/standard/38169.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16936-2:2005,https://www.iso.org/standard/38170.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/DIS 16936-2,https://www.iso.org/standard/72728.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16936-3:2005,https://www.iso.org/standard/38171.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/DIS 16936-3,https://www.iso.org/standard/72729.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16936-4:2005,https://www.iso.org/standard/38172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/DIS 16936-4,https://www.iso.org/standard/72730.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 16940:2008,https://www.iso.org/standard/45788.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 18543:2017,https://www.iso.org/standard/62851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO/CD 19597,https://www.iso.org/standard/65438.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/DIS 19916-1,https://www.iso.org/standard/66547.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 20492-1:2008,https://www.iso.org/standard/39500.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 20492-2:2008,https://www.iso.org/standard/39501.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 20492-3:2010,https://www.iso.org/standard/39502.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 20492-4:2010,https://www.iso.org/standard/39503.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 20657:2017,https://www.iso.org/standard/68760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 21690:2006,https://www.iso.org/standard/35971.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 22897:2003,https://www.iso.org/standard/36546.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO/NP 22897,https://www.iso.org/standard/75040.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 25537:2008,https://www.iso.org/standard/42965.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 160/SC 1,https://www.iso.org/contents/data/committee/05/34/53410/x/catalogue/ -ISO 28278-1:2011,https://www.iso.org/standard/44598.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 28278-2:2010,https://www.iso.org/standard/44600.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 29584:2015,https://www.iso.org/standard/62469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 614:2012,https://www.iso.org/standard/54514.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 8/SC 8,https://www.iso.org/contents/data/committee/04/58/45868/x/catalogue/ -ISO 3536:2016,https://www.iso.org/standard/59694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3537:2015,https://www.iso.org/standard/56215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3538:1997,https://www.iso.org/standard/8928.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 3917:2016,https://www.iso.org/standard/57636.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 4795:1996,https://www.iso.org/standard/10774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48/SC 3,https://www.iso.org/contents/data/committee/04/89/48918/x/catalogue/ -ISO 6486-1:1999,https://www.iso.org/standard/27280.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/CD 6486-1,https://www.iso.org/standard/67561.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 6486-2:1999,https://www.iso.org/standard/27281.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/NP 6486-2,https://www.iso.org/standard/68475.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 7086-1:2000,https://www.iso.org/standard/27146.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/CD 7086-1,https://www.iso.org/standard/67562.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 7086-2:2000,https://www.iso.org/standard/27147.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/NP 7086-2,https://www.iso.org/standard/68476.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 13837:2008,https://www.iso.org/standard/40670.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO 9385:1990,https://www.iso.org/standard/17077.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 172/SC 3,https://www.iso.org/contents/data/committee/05/37/53700/x/catalogue/ -ISO 14719:2011,https://www.iso.org/standard/54941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21078-1:2008,https://www.iso.org/standard/39979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21078-2:2006,https://www.iso.org/standard/43838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 14720-1:2013,https://www.iso.org/standard/54942.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 14720-2:2013,https://www.iso.org/standard/54943.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 6486-1:1999,https://www.iso.org/standard/27280.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/CD 6486-1,https://www.iso.org/standard/67561.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 6486-2:1999,https://www.iso.org/standard/27281.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/NP 6486-2,https://www.iso.org/standard/68475.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 8391-1:1986,https://www.iso.org/standard/15556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 8391-2:1986,https://www.iso.org/standard/15557.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 10676:2010,https://www.iso.org/standard/46017.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 10677:2011,https://www.iso.org/standard/46018.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 10678:2010,https://www.iso.org/standard/46019.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 11894-1:2013,https://www.iso.org/standard/50984.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 13124:2011,https://www.iso.org/standard/53007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 13125:2013,https://www.iso.org/standard/53009.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 13383-1:2012,https://www.iso.org/standard/53721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 13383-2:2012,https://www.iso.org/standard/53722.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14544:2013,https://www.iso.org/standard/54891.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14574:2013,https://www.iso.org/standard/54893.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14603:2012,https://www.iso.org/standard/54895.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14604:2012,https://www.iso.org/standard/54896.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14605:2013,https://www.iso.org/standard/54897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14610:2012,https://www.iso.org/standard/54898.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14627:2012,https://www.iso.org/standard/54899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14628:2012,https://www.iso.org/standard/54900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14629:2012,https://www.iso.org/standard/54901.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14703:2008,https://www.iso.org/standard/43924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14704:2016,https://www.iso.org/standard/65411.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 14705:2016,https://www.iso.org/standard/65412.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 15165:2001,https://www.iso.org/standard/25807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 15490:2008,https://www.iso.org/standard/43927.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 15732:2003,https://www.iso.org/standard/28366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 15733:2015,https://www.iso.org/standard/62149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17092:2005,https://www.iso.org/standard/38218.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17094:2014,https://www.iso.org/standard/58094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17095:2013,https://www.iso.org/standard/58095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17138:2014,https://www.iso.org/standard/59195.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17139:2014,https://www.iso.org/standard/59196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17140:2014,https://www.iso.org/standard/59198.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17142:2014,https://www.iso.org/standard/59199.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17161:2014,https://www.iso.org/standard/59200.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17162:2014,https://www.iso.org/standard/59201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 17167,https://www.iso.org/standard/68233.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 17168-1,https://www.iso.org/standard/64037.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 17168-2,https://www.iso.org/standard/64034.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 17168-3,https://www.iso.org/standard/64035.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 17168-4,https://www.iso.org/standard/64036.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 17168-5,https://www.iso.org/standard/64032.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17170:2015,https://www.iso.org/standard/59205.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17172:2014,https://www.iso.org/standard/59207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17561:2016,https://www.iso.org/standard/65413.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17562:2016,https://www.iso.org/standard/63895.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17565:2003,https://www.iso.org/standard/30752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17841:2015,https://www.iso.org/standard/60763.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17859:2015,https://www.iso.org/standard/60834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17860:2014,https://www.iso.org/standard/60835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17861:2014,https://www.iso.org/standard/60836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17942:2014,https://www.iso.org/standard/61075.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 17947:2014,https://www.iso.org/standard/61080.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18061:2014,https://www.iso.org/standard/61245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18071:2016,https://www.iso.org/standard/64033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18452:2005,https://www.iso.org/standard/38701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18550:2016,https://www.iso.org/standard/62872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18558:2015,https://www.iso.org/standard/62884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18560-1:2014,https://www.iso.org/standard/59204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18591:2015,https://www.iso.org/standard/62980.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18608:2017,https://www.iso.org/standard/62998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18610:2016,https://www.iso.org/standard/62999.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18753:2017,https://www.iso.org/standard/65414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18754:2013,https://www.iso.org/standard/55448.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/NP 18754,https://www.iso.org/standard/69745.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18755:2005,https://www.iso.org/standard/31901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18756:2003,https://www.iso.org/standard/31902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 18757:2003,https://www.iso.org/standard/31903.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19603:2016,https://www.iso.org/standard/65454.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/FDIS 19604,https://www.iso.org/standard/65455.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19606:2017,https://www.iso.org/standard/65457.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/FDIS 19613,https://www.iso.org/standard/65476.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19618:2017,https://www.iso.org/standard/65505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/PRF 19622,https://www.iso.org/standard/65515.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19628:2017,https://www.iso.org/standard/65569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 19629,https://www.iso.org/standard/65570.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19630:2017,https://www.iso.org/standard/65571.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19634:2017,https://www.iso.org/standard/65572.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19635:2016,https://www.iso.org/standard/65574.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/FDIS 19652,https://www.iso.org/standard/65676.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19674:2017,https://www.iso.org/standard/65990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19722:2017,https://www.iso.org/standard/66118.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 19810:2017,https://www.iso.org/standard/66243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/PRF 20323,https://www.iso.org/standard/67672.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20343:2017,https://www.iso.org/standard/67752.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20351:2017,https://www.iso.org/standard/67758.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20379,https://www.iso.org/standard/67856.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20407:2017,https://www.iso.org/standard/67912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20501:2003,https://www.iso.org/standard/34188.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20501:2003/Cor 1:2009,https://www.iso.org/standard/55056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 20501,https://www.iso.org/standard/69875.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20502:2005,https://www.iso.org/standard/34189.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20502:2005/Cor 1:2009,https://www.iso.org/standard/53641.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20504:2006,https://www.iso.org/standard/34191.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 20504,https://www.iso.org/standard/72346.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20505:2005,https://www.iso.org/standard/40156.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20506:2005,https://www.iso.org/standard/40157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20507:2014,https://www.iso.org/standard/59566.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/AWI 20507,https://www.iso.org/standard/74705.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20508:2003,https://www.iso.org/standard/34195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20509:2003,https://www.iso.org/standard/34196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 20808:2016,https://www.iso.org/standard/65415.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 21066,https://www.iso.org/standard/69815.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 21113,https://www.iso.org/standard/69929.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/CD 21618,https://www.iso.org/standard/71248.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 21714,https://www.iso.org/standard/71452.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 21813,https://www.iso.org/standard/71858.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 21814,https://www.iso.org/standard/71859.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 21819-1,https://www.iso.org/standard/71874.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/DIS 21819-2,https://www.iso.org/standard/71875.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 22197-1:2016,https://www.iso.org/standard/65416.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 22197-2:2011,https://www.iso.org/standard/45742.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/NP 22197-2,https://www.iso.org/standard/72347.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 22197-3:2011,https://www.iso.org/standard/46016.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/NP 22197-3,https://www.iso.org/standard/72348.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 22197-4:2013,https://www.iso.org/standard/53010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 22197-5:2013,https://www.iso.org/standard/53011.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 22214:2006,https://www.iso.org/standard/36167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 22215:2006,https://www.iso.org/standard/36168.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 23145-1:2007,https://www.iso.org/standard/41330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 23145-2:2012,https://www.iso.org/standard/53005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 23146:2012,https://www.iso.org/standard/62093.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 24235:2007,https://www.iso.org/standard/37114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 24369:2005,https://www.iso.org/standard/37172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 24370:2005,https://www.iso.org/standard/37173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 26423:2009,https://www.iso.org/standard/43578.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 26424:2008,https://www.iso.org/standard/43579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 26443:2008,https://www.iso.org/standard/43584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 26602:2017,https://www.iso.org/standard/65456.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 27447:2009,https://www.iso.org/standard/44156.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO/NP 27447,https://www.iso.org/standard/69874.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 27448:2009,https://www.iso.org/standard/53953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 28703:2011,https://www.iso.org/standard/44890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 28704:2011,https://www.iso.org/standard/53008.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 206,https://www.iso.org/contents/data/committee/05/47/54756/x/catalogue/ -ISO 528:1983,https://www.iso.org/standard/4596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 836:2001,https://www.iso.org/standard/33872.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1893:2007,https://www.iso.org/standard/44297.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1927-1:2012,https://www.iso.org/standard/50738.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1927-2:2012,https://www.iso.org/standard/51437.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1927-3:2012,https://www.iso.org/standard/51438.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1927-4:2012,https://www.iso.org/standard/51439.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1927-5:2012,https://www.iso.org/standard/51440.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1927-6:2012,https://www.iso.org/standard/51441.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1927-7:2012,https://www.iso.org/standard/51442.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 1927-8:2012,https://www.iso.org/standard/51443.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 2245:2006,https://www.iso.org/standard/38367.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 2477:2005,https://www.iso.org/standard/36181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 2478:1987,https://www.iso.org/standard/7398.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 3187:1989,https://www.iso.org/standard/8378.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5013:1985,https://www.iso.org/standard/11030.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5014:1997,https://www.iso.org/standard/20289.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5016:1997,https://www.iso.org/standard/20290.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5017:2013,https://www.iso.org/standard/56179.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5018:1983,https://www.iso.org/standard/11034.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5019-1:1984,https://www.iso.org/standard/11035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5019-2:1984,https://www.iso.org/standard/11036.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5019-3:1984,https://www.iso.org/standard/11038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5019-4:1988,https://www.iso.org/standard/11040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5019-5:1984,https://www.iso.org/standard/11041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5019-6:2005,https://www.iso.org/standard/40215.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5022:1979,https://www.iso.org/standard/11044.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 5417:1986,https://www.iso.org/standard/11457.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 8656-1:1988,https://www.iso.org/standard/16035.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 8840:1987,https://www.iso.org/standard/16317.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 8841:1991,https://www.iso.org/standard/16318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 8890:1988,https://www.iso.org/standard/16416.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 8894-1:2010,https://www.iso.org/standard/50737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 8894-2:2007,https://www.iso.org/standard/44465.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 8895:2004,https://www.iso.org/standard/36214.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 9205:1988,https://www.iso.org/standard/16832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10059-1:1992,https://www.iso.org/standard/18024.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10059-2:2003,https://www.iso.org/standard/36154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10060:1993,https://www.iso.org/standard/18026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10080:1990,https://www.iso.org/standard/18051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10081-1:2003,https://www.iso.org/standard/36115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10081-2:2003,https://www.iso.org/standard/36116.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10081-2:2003/Cor 1:2008,https://www.iso.org/standard/50929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10081-3:2003,https://www.iso.org/standard/35697.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10081-4:2014,https://www.iso.org/standard/65201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 10635:1999,https://www.iso.org/standard/18729.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 12676:2000,https://www.iso.org/standard/33870.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 12677:2011,https://www.iso.org/standard/51445.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 12678-1:1996,https://www.iso.org/standard/1097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 12678-2:1996,https://www.iso.org/standard/21276.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 12680-1:2005,https://www.iso.org/standard/37670.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 13765-1:2004,https://www.iso.org/standard/35314.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 13765-2:2004,https://www.iso.org/standard/35315.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 13765-3:2004,https://www.iso.org/standard/35316.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 13765-4:2004,https://www.iso.org/standard/35317.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 13765-5:2004,https://www.iso.org/standard/35318.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 13765-6:2004,https://www.iso.org/standard/35319.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 14719:2011,https://www.iso.org/standard/54941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO/FDIS 16169,https://www.iso.org/standard/69056.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 16282:2007,https://www.iso.org/standard/32176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 16334:2013,https://www.iso.org/standard/56180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 16349:2015,https://www.iso.org/standard/56253.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 16835:2014,https://www.iso.org/standard/57790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 18886:2016,https://www.iso.org/standard/63665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 20182:2008,https://www.iso.org/standard/44232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 20565-1:2008,https://www.iso.org/standard/41173.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 20565-2:2008,https://www.iso.org/standard/43834.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 20565-3:2008,https://www.iso.org/standard/43835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21068-1:2008,https://www.iso.org/standard/35628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21068-2:2008,https://www.iso.org/standard/43830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21068-3:2008,https://www.iso.org/standard/43831.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21079-1:2008,https://www.iso.org/standard/39982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21079-2:2008,https://www.iso.org/standard/43832.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21079-3:2008,https://www.iso.org/standard/43833.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21587-1:2007,https://www.iso.org/standard/43854.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21587-2:2007,https://www.iso.org/standard/43855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 21587-3:2007,https://www.iso.org/standard/43856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO/TR 21828:2010,https://www.iso.org/standard/40461.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 22016:2015,https://www.iso.org/standard/62803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO 26845:2008,https://www.iso.org/standard/43836.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 33,https://www.iso.org/contents/data/committee/04/78/47812/x/catalogue/ -ISO/TR 21275:2017,https://www.iso.org/standard/70362.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/TS 21522:2017,https://www.iso.org/standard/71023.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 20299-1:2015,https://www.iso.org/standard/68069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 20299-2:2017,https://www.iso.org/standard/65690.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 20299-3:2008,https://www.iso.org/standard/41156.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 35:2004,https://www.iso.org/standard/35175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 35:2004/Amd 1:2006,https://www.iso.org/standard/42823.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 123:2001,https://www.iso.org/standard/23281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 124:2014,https://www.iso.org/standard/61884.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 125:2011,https://www.iso.org/standard/59265.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/CD 125,https://www.iso.org/standard/72849.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 126:2005,https://www.iso.org/standard/35176.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 127:2012,https://www.iso.org/standard/57896.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/DIS 127,https://www.iso.org/standard/75102.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 248-1:2011,https://www.iso.org/standard/53032.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 248-2:2012,https://www.iso.org/standard/51796.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 249:2016,https://www.iso.org/standard/70283.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 498:1992,https://www.iso.org/standard/4550.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 506:1992,https://www.iso.org/standard/4563.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 705:2015,https://www.iso.org/standard/68060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 706:2004,https://www.iso.org/standard/40329.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 976:2013,https://www.iso.org/standard/60896.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1147:1995,https://www.iso.org/standard/24339.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 1147,https://www.iso.org/standard/70410.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1409:2006,https://www.iso.org/standard/43680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1629:1995/Amd 1:2007/Cor 1:2009,https://www.iso.org/standard/54703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 1629:2013,https://www.iso.org/standard/60242.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 1652:2011,https://www.iso.org/standard/57378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1656:2014,https://www.iso.org/standard/63607.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/CD 1656,https://www.iso.org/standard/74331.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1657:1986,https://www.iso.org/standard/6275.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1795:2017,https://www.iso.org/standard/70280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1802:1992,https://www.iso.org/standard/6438.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2000:2014,https://www.iso.org/standard/51091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2004:2017,https://www.iso.org/standard/70281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2005:2014,https://www.iso.org/standard/63554.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2006-1:2009,https://www.iso.org/standard/46007.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2006-2:2009,https://www.iso.org/standard/44323.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2027:1990,https://www.iso.org/standard/6798.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2028:2015,https://www.iso.org/standard/68061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2115:1996,https://www.iso.org/standard/6910.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2453:1991,https://www.iso.org/standard/7369.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2453:1991/Cor 1:2003,https://www.iso.org/standard/38907.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/CD 2453,https://www.iso.org/standard/72854.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2930:2017,https://www.iso.org/standard/68068.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 3136:1983,https://www.iso.org/standard/8301.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 3899:2005,https://www.iso.org/standard/41624.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 3900:1995,https://www.iso.org/standard/21884.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 4660:2011,https://www.iso.org/standard/57377.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/NP 4660,https://www.iso.org/standard/72853.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 6225-1:2006,https://www.iso.org/standard/43685.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 6225-2:1990,https://www.iso.org/standard/12503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 6235:2016,https://www.iso.org/standard/70305.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 7323:2006,https://www.iso.org/standard/43675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7664:2000,https://www.iso.org/standard/31521.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 7780:1998,https://www.iso.org/standard/14661.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 7781:2017,https://www.iso.org/standard/68071.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 8053:1995,https://www.iso.org/standard/20154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 9026:2007,https://www.iso.org/standard/45390.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 10638:2017,https://www.iso.org/standard/70336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 11089:2010,https://www.iso.org/standard/51277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 11344:2016,https://www.iso.org/standard/63870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 11852:2017,https://www.iso.org/standard/67224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 12000:2014,https://www.iso.org/standard/59255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 12243:2003,https://www.iso.org/standard/34001.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 12243:2003/Amd 1:2012,https://www.iso.org/standard/57938.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 12492:2012,https://www.iso.org/standard/51473.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 13741-1:1998,https://www.iso.org/standard/22804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 13741-2:1998,https://www.iso.org/standard/22805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 13773:1997,https://www.iso.org/standard/22511.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/TS 16095:2014,https://www.iso.org/standard/55671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/TS 16096:2014,https://www.iso.org/standard/55672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/TS 16097:2013,https://www.iso.org/standard/55675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/TR 16314:2010,https://www.iso.org/standard/56156.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 16564:2004,https://www.iso.org/standard/32311.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 16564:2004/Amd 1:2006,https://www.iso.org/standard/41783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 17052:2007,https://www.iso.org/standard/41510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 17278:2013,https://www.iso.org/standard/59507.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 17403:2014,https://www.iso.org/standard/60801.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 19043:2015,https://www.iso.org/standard/63791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 19050:2015,https://www.iso.org/standard/63828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 19051:2015,https://www.iso.org/standard/63829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 19246:2016,https://www.iso.org/standard/64133.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 19846:2017,https://www.iso.org/standard/66373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 20851:2017,https://www.iso.org/standard/69357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 21461:2012,https://www.iso.org/standard/57940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 22768:2017,https://www.iso.org/standard/68070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 24698-1:2008,https://www.iso.org/standard/42437.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/CD 24698-1,https://www.iso.org/standard/73998.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 24698-2:2008,https://www.iso.org/standard/42438.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/CD 24698-2,https://www.iso.org/standard/73997.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1124:1988,https://www.iso.org/standard/5653.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1125:2015,https://www.iso.org/standard/68062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1126:2015,https://www.iso.org/standard/68063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1138:2007,https://www.iso.org/standard/44982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1138:2007/Amd 1:2012,https://www.iso.org/standard/57937.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1304:2016,https://www.iso.org/standard/68066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1306:1995,https://www.iso.org/standard/21883.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1435:1996,https://www.iso.org/standard/23843.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1437:2017,https://www.iso.org/standard/70381.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 3858:2008,https://www.iso.org/standard/51675.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/DIS 3858,https://www.iso.org/standard/72850.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 4652:2012,https://www.iso.org/standard/55612.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/NP 4652,https://www.iso.org/standard/75103.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 4656:2012,https://www.iso.org/standard/61211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 5435:2017,https://www.iso.org/standard/72851.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 5794-1:2010,https://www.iso.org/standard/55846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 5794-2:2014,https://www.iso.org/standard/65595.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 5794-3:2011,https://www.iso.org/standard/52921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 5796:2000,https://www.iso.org/standard/27011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 6209:2009,https://www.iso.org/standard/45776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 6472:2017,https://www.iso.org/standard/70337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 8312:2015,https://www.iso.org/standard/68064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 8332:2011,https://www.iso.org/standard/55616.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/DIS 8332,https://www.iso.org/standard/72852.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 8511:2011,https://www.iso.org/standard/57933.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 8942:2010,https://www.iso.org/standard/45400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 9298:2017,https://www.iso.org/standard/70403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 10638:2017,https://www.iso.org/standard/70336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 11234:1995,https://www.iso.org/standard/19215.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 11235:2016,https://www.iso.org/standard/68065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 11236:2017,https://www.iso.org/standard/70404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 14932:2012,https://www.iso.org/standard/55273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 15825:2017,https://www.iso.org/standard/70282.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/TR 16098:2012,https://www.iso.org/standard/55676.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/TS 16176:2011,https://www.iso.org/standard/55795.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 18852:2015,https://www.iso.org/standard/66259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/CD 20927,https://www.iso.org/standard/69473.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 21869:2006,https://www.iso.org/standard/34757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 21870:2005,https://www.iso.org/standard/34758.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 28343:2010,https://www.iso.org/standard/44655.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 28641:2010,https://www.iso.org/standard/44842.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/DIS 28641,https://www.iso.org/standard/70405.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1043-2:2011,https://www.iso.org/standard/52829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1043-3:2016,https://www.iso.org/standard/61140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1043-4:1998,https://www.iso.org/standard/24297.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1043-4:1998/Amd 1:2016,https://www.iso.org/standard/65281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 15038:1999,https://www.iso.org/standard/25589.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 34-1:2015,https://www.iso.org/standard/65926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 34-2:2015,https://www.iso.org/standard/65927.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 36:2017,https://www.iso.org/standard/72773.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/NP 36,https://www.iso.org/standard/74942.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 37:2017,https://www.iso.org/standard/68116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 48:2010,https://www.iso.org/standard/54100.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 48,https://www.iso.org/standard/64146.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 132:2017,https://www.iso.org/standard/72788.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 188:2011,https://www.iso.org/standard/57738.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 247:2006,https://www.iso.org/standard/43677.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 247-1.2,https://www.iso.org/standard/66372.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 247-2,https://www.iso.org/standard/72113.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 289-1:2015,https://www.iso.org/standard/68108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 289-2:2016,https://www.iso.org/standard/68109.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 289-3:2015,https://www.iso.org/standard/68110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/TS 289-4:2017,https://www.iso.org/standard/65925.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 812:2017,https://www.iso.org/standard/72774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 813:2016,https://www.iso.org/standard/70296.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 814:2017,https://www.iso.org/standard/72775.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 815-1:2014,https://www.iso.org/standard/61761.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/NP 815-1,https://www.iso.org/standard/74943.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 815-2:2014,https://www.iso.org/standard/61762.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/NP 815-2,https://www.iso.org/standard/74944.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1382:2012,https://www.iso.org/standard/60252.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/CD 1382,https://www.iso.org/standard/68018.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 1407:2011,https://www.iso.org/standard/51794.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1408:1995,https://www.iso.org/standard/21816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1431-1:2012,https://www.iso.org/standard/55604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1431-3:2017,https://www.iso.org/standard/70223.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1432:2013,https://www.iso.org/standard/55608.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1434:2016,https://www.iso.org/standard/60897.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1629:1995/Amd 1:2007/Cor 1:2009,https://www.iso.org/standard/54703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 1629:2013,https://www.iso.org/standard/60242.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 1658:2015,https://www.iso.org/standard/68067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1817:2015,https://www.iso.org/standard/63612.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1827:2016,https://www.iso.org/standard/70363.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 1853:2011,https://www.iso.org/standard/53024.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 1853,https://www.iso.org/standard/72776.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2007:2007,https://www.iso.org/standard/45386.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 2007.2,https://www.iso.org/standard/70324.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2230:2002,https://www.iso.org/standard/35946.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2285:2013,https://www.iso.org/standard/57737.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2302:2014,https://www.iso.org/standard/65596.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2303:2011,https://www.iso.org/standard/52995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2322:2014,https://www.iso.org/standard/61315.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2393:2014,https://www.iso.org/standard/61314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2454:1995,https://www.iso.org/standard/2150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2475:2011,https://www.iso.org/standard/55617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2476:2014,https://www.iso.org/standard/61316.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 2781:2008,https://www.iso.org/standard/43668.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2781:2008/Amd 1:2010,https://www.iso.org/standard/53039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 2781,https://www.iso.org/standard/72777.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2782-1:2016,https://www.iso.org/standard/63792.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2782-2:2012,https://www.iso.org/standard/55601.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 2782-2,https://www.iso.org/standard/74939.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2878:2017,https://www.iso.org/standard/72778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2921:2011,https://www.iso.org/standard/53020.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/CD 2921,https://www.iso.org/standard/72779.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 2951:2012,https://www.iso.org/standard/55605.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/NP 2951,https://www.iso.org/standard/74940.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 3384-1:2011,https://www.iso.org/standard/53028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 3384-1:2011/Amd 1:2013,https://www.iso.org/standard/61287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/CD 3384-1,https://www.iso.org/standard/72787.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 3384-2:2012,https://www.iso.org/standard/56503.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 3387:2012,https://www.iso.org/standard/55606.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/CD 3387,https://www.iso.org/standard/74941.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 3417:2008,https://www.iso.org/standard/42239.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 3865:2005,https://www.iso.org/standard/40387.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4097:2014,https://www.iso.org/standard/61853.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 4645:1984,https://www.iso.org/standard/10605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4645:1984/Cor 1:1991,https://www.iso.org/standard/10606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4647:2010,https://www.iso.org/standard/50753.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4649:2017,https://www.iso.org/standard/70325.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4650:2012,https://www.iso.org/standard/53026.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4658:1999,https://www.iso.org/standard/27917.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 4658:1999/Amd 1:2004,https://www.iso.org/standard/35839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 4659:2014,https://www.iso.org/standard/65597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 4661-2:1987,https://www.iso.org/standard/10636.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 4661-2,https://www.iso.org/standard/74945.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4662:2017,https://www.iso.org/standard/68111.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4664-1:2011,https://www.iso.org/standard/53027.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4664-2:2006,https://www.iso.org/standard/41463.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4665:2016,https://www.iso.org/standard/68112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4666-1:2010,https://www.iso.org/standard/50755.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4666-3:2016,https://www.iso.org/standard/70329.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 4666-4:2007,https://www.iso.org/standard/41348.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 4666-4,https://www.iso.org/standard/72789.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 5600:2017,https://www.iso.org/standard/72780.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 5603:2017,https://www.iso.org/standard/72781.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6101-1:1991,https://www.iso.org/standard/12298.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/CD 6101-1,https://www.iso.org/standard/72792.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6101-2:1997,https://www.iso.org/standard/20152.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6101-3:2014,https://www.iso.org/standard/63605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6101-4:2014,https://www.iso.org/standard/63606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6101-5:2006,https://www.iso.org/standard/43684.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 6101-5.2,https://www.iso.org/standard/68115.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6101-6:2011,https://www.iso.org/standard/59440.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 6101-6,https://www.iso.org/standard/72793.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6133:2015,https://www.iso.org/standard/65921.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6502:2016,https://www.iso.org/standard/68356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 6502-1,https://www.iso.org/standard/70967.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 6502-2,https://www.iso.org/standard/70968.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 6502-3,https://www.iso.org/standard/70969.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6505:2015,https://www.iso.org/standard/65922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6528-1:1992,https://www.iso.org/standard/2222.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6914:2013,https://www.iso.org/standard/61760.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6943:2017,https://www.iso.org/standard/72790.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7269:1995,https://www.iso.org/standard/21819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7269:1995/Cor 1:2002,https://www.iso.org/standard/36910.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7270-1:2003,https://www.iso.org/standard/33761.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7270-1:2003/Amd 1:2010,https://www.iso.org/standard/53037.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7270-2:2012,https://www.iso.org/standard/53025.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7323:2006,https://www.iso.org/standard/43675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7619-1:2010,https://www.iso.org/standard/50756.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 7619-1,https://www.iso.org/standard/70364.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7619-2:2010,https://www.iso.org/standard/50757.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/TR 7620:2005,https://www.iso.org/standard/37026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7663:2014,https://www.iso.org/standard/65598.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 7725:1991,https://www.iso.org/standard/14560.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/CD 7725,https://www.iso.org/standard/72794.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7743:2017,https://www.iso.org/standard/72784.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7780:1998,https://www.iso.org/standard/14661.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 8013:2012,https://www.iso.org/standard/55610.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 8053:1995,https://www.iso.org/standard/20154.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 9026:2007,https://www.iso.org/standard/45390.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 9028:2006,https://www.iso.org/standard/43686.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/TR 9272:2005,https://www.iso.org/standard/36984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 9924-1:2016,https://www.iso.org/standard/70333.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 9924-2:2016,https://www.iso.org/standard/70335.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 9924-3:2009,https://www.iso.org/standard/44151.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 10398:1998,https://www.iso.org/standard/18459.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 11345:2006,https://www.iso.org/standard/40388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 11346:2014,https://www.iso.org/standard/63438.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/TR 12134:2010,https://www.iso.org/standard/51230.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 12493:2017,https://www.iso.org/standard/72785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 12965:2000,https://www.iso.org/standard/2274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 12965:2000/Cor 1:2006,https://www.iso.org/standard/44153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 13145:2012,https://www.iso.org/standard/53389.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 13226:2011,https://www.iso.org/standard/53034.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/PRF 13226,https://www.iso.org/standard/72791.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 13507:2012,https://www.iso.org/standard/53946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 14309:2011,https://www.iso.org/standard/54607.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/CD 14309,https://www.iso.org/standard/72786.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 14558:2016,https://www.iso.org/standard/70306.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 15113:2005,https://www.iso.org/standard/41458.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 15671:2000,https://www.iso.org/standard/27438.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/NP 15671,https://www.iso.org/standard/74946.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 15672:2000,https://www.iso.org/standard/27439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 16565:2013,https://www.iso.org/standard/61917.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 17257:2013,https://www.iso.org/standard/60977.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 17564:2008,https://www.iso.org/standard/45394.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/TS 17796:2013,https://www.iso.org/standard/60564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 18517:2015,https://www.iso.org/standard/65923.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 18766:2014,https://www.iso.org/standard/63330.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 18898:2016,https://www.iso.org/standard/65920.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 18899:2013,https://www.iso.org/standard/63326.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 19003:2006,https://www.iso.org/standard/41459.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 19004:2004,https://www.iso.org/standard/38540.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 19051:2015,https://www.iso.org/standard/63829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 19242:2015,https://www.iso.org/standard/64126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 19983:2017,https://www.iso.org/standard/66785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 19984-1:2017,https://www.iso.org/standard/66786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 19984-2:2017,https://www.iso.org/standard/66787.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 19984-3:2017,https://www.iso.org/standard/66788.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/DIS 20163.2,https://www.iso.org/standard/67175.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/PRF 20463,https://www.iso.org/standard/68114.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/TS 21396:2017,https://www.iso.org/standard/70858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 21561-1:2015,https://www.iso.org/standard/66501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 21561-2:2016,https://www.iso.org/standard/64125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO/DTS 22638,https://www.iso.org/standard/73634.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/DTS 22640,https://www.iso.org/standard/73636.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/DTS 22687,https://www.iso.org/standard/73681.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 22768:2017,https://www.iso.org/standard/68070.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 23233:2016,https://www.iso.org/standard/68113.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 23233:2016/Amd 1:2017,https://www.iso.org/standard/72136.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 23337:2016,https://www.iso.org/standard/70330.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 23529:2016,https://www.iso.org/standard/70323.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 23794:2015,https://www.iso.org/standard/63763.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 24453:2008,https://www.iso.org/standard/42243.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 24454:2008,https://www.iso.org/standard/42244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 27588:2012,https://www.iso.org/standard/61509.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 27727:2008,https://www.iso.org/standard/44288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 62:2008,https://www.iso.org/standard/41672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 75-1:2013,https://www.iso.org/standard/57703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 171:1980,https://www.iso.org/standard/4005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 175:2010,https://www.iso.org/standard/55483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 176:2005,https://www.iso.org/standard/38743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 177:2016,https://www.iso.org/standard/70279.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 178:2010,https://www.iso.org/standard/45091.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 178:2010/Amd 1:2013,https://www.iso.org/standard/60778.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 178,https://www.iso.org/standard/70513.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 179-1:2010,https://www.iso.org/standard/44852.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 179-2:1997,https://www.iso.org/standard/22950.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 179-2:1997/Amd 1:2011,https://www.iso.org/standard/50484.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 179-2:1997/Cor 1:1998,https://www.iso.org/standard/31162.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 180:2000,https://www.iso.org/standard/26802.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 180:2000/Amd 1:2006,https://www.iso.org/standard/38233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 180:2000/Amd 2:2013,https://www.iso.org/standard/60777.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 180,https://www.iso.org/standard/72820.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 291:2008,https://www.iso.org/standard/50572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 458-1:1985,https://www.iso.org/standard/4482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 472:2013,https://www.iso.org/standard/44102.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 472:2013/FDAmd 1,https://www.iso.org/standard/45082.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 489:1999,https://www.iso.org/standard/1772.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 527-1:2012,https://www.iso.org/standard/56045.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 527-2:2012,https://www.iso.org/standard/56046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 604:2002,https://www.iso.org/standard/31261.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 846:1997,https://www.iso.org/standard/20578.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/CD 846,https://www.iso.org/standard/70278.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/DIS 846,https://www.iso.org/standard/74599.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 868:2003,https://www.iso.org/standard/34804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 871:2006,https://www.iso.org/standard/40775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 877-1:2009,https://www.iso.org/standard/41657.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/DIS 877-1,https://www.iso.org/standard/67567.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 877-2:2009,https://www.iso.org/standard/41658.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/DIS 877-2,https://www.iso.org/standard/67568.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 877-3:2009,https://www.iso.org/standard/43425.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/FDIS 877-3,https://www.iso.org/standard/67566.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 899-1:2017,https://www.iso.org/standard/72819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 899-2:2003,https://www.iso.org/standard/31263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 899-2:2003/Amd 1:2015,https://www.iso.org/standard/60782.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 974:2000,https://www.iso.org/standard/28169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 1043-1:2011,https://www.iso.org/standard/50590.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1043-1:2011/Amd 1:2016,https://www.iso.org/standard/65280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1043-2:2011,https://www.iso.org/standard/52829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1043-3:2016,https://www.iso.org/standard/61140.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1043-4:1998,https://www.iso.org/standard/24297.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1043-4:1998/Amd 1:2016,https://www.iso.org/standard/65281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 1147:1995,https://www.iso.org/standard/24339.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 1147,https://www.iso.org/standard/70410.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1183-1:2012,https://www.iso.org/standard/55640.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 1183-1,https://www.iso.org/standard/74990.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 1183-2:2004,https://www.iso.org/standard/29806.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 1183-2,https://www.iso.org/standard/74991.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 1183-3:1999,https://www.iso.org/standard/29808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 1409:2006,https://www.iso.org/standard/43680.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 3,https://www.iso.org/contents/data/committee/04/87/48716/x/catalogue/ -ISO 1628-1:2009,https://www.iso.org/standard/51946.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 1628-1:2009/Amd 1:2012,https://www.iso.org/standard/56473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 1675:1985,https://www.iso.org/standard/6290.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 2039-1:2001,https://www.iso.org/standard/31264.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 2039-2:1987,https://www.iso.org/standard/6815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 2115:1996,https://www.iso.org/standard/6910.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2555:1989,https://www.iso.org/standard/7504.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/FDIS 2555,https://www.iso.org/standard/70023.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 2578:1993,https://www.iso.org/standard/7547.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 2818:1994,https://www.iso.org/standard/7816.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2818:1994/Cor 1:2007,https://www.iso.org/standard/50618.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 2818,https://www.iso.org/standard/70414.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 3146:2000,https://www.iso.org/standard/8319.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 3146:2000/Cor 1:2002,https://www.iso.org/standard/37642.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 3167:2014,https://www.iso.org/standard/65105.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 3219:1993,https://www.iso.org/standard/8426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3251:2008,https://www.iso.org/standard/44649.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/NP 3251,https://www.iso.org/standard/73848.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3451-1:2008,https://www.iso.org/standard/41663.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 3451-1,https://www.iso.org/standard/71205.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 3915:1981,https://www.iso.org/standard/9547.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 4576:1996,https://www.iso.org/standard/24335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4582:2017,https://www.iso.org/standard/67791.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 4589-1:2017,https://www.iso.org/standard/60785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 4589-2:2017,https://www.iso.org/standard/60786.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 4589-3:2017,https://www.iso.org/standard/60787.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 4611:2010,https://www.iso.org/standard/54099.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 4892-1:2016,https://www.iso.org/standard/60048.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 4892-2:2013,https://www.iso.org/standard/55481.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 4892-3:2016,https://www.iso.org/standard/67793.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 4892-4:2013,https://www.iso.org/standard/63681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 5659-2:2017,https://www.iso.org/standard/65243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 6133:2015,https://www.iso.org/standard/65921.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6427:2013,https://www.iso.org/standard/62009.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6601:2002,https://www.iso.org/standard/34803.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 6603-1:2000,https://www.iso.org/standard/26800.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 6603-2:2000,https://www.iso.org/standard/25172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 6721-1:2011,https://www.iso.org/standard/57312.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 6721-1,https://www.iso.org/standard/73142.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-2:2008,https://www.iso.org/standard/43492.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 6721-2,https://www.iso.org/standard/73143.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-3:1994,https://www.iso.org/standard/13169.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-3:1994/Cor 1:1995,https://www.iso.org/standard/25657.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 6721-4:2008,https://www.iso.org/standard/43493.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 6721-4,https://www.iso.org/standard/73144.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-5:1996,https://www.iso.org/standard/23978.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-5:1996/Amd 1:2007,https://www.iso.org/standard/36259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 6721-5,https://www.iso.org/standard/73145.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-6:1996,https://www.iso.org/standard/23979.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-6:1996/Amd 1:2007,https://www.iso.org/standard/36261.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 6721-6,https://www.iso.org/standard/73146.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-7:1996,https://www.iso.org/standard/24332.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-7:1996/Amd 1:2007,https://www.iso.org/standard/36262.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 6721-7,https://www.iso.org/standard/73147.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-8:1997,https://www.iso.org/standard/25169.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 6721-8,https://www.iso.org/standard/74986.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-9:1997,https://www.iso.org/standard/25913.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-9:1997/Amd 1:2007,https://www.iso.org/standard/38238.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/CD 6721-9,https://www.iso.org/standard/74987.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-10:2015,https://www.iso.org/standard/62159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-11:2012,https://www.iso.org/standard/52845.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 6721-11,https://www.iso.org/standard/74988.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6721-12:2009,https://www.iso.org/standard/42531.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 8256:2004,https://www.iso.org/standard/35900.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 8660:2002,https://www.iso.org/standard/32225.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 9352:2012,https://www.iso.org/standard/55507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 9370:2017,https://www.iso.org/standard/67569.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 9773:1998,https://www.iso.org/standard/26822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 9773:1998/Amd 1:2003,https://www.iso.org/standard/34807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/DTR 10093,https://www.iso.org/standard/75298.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/TR 10093:2017,https://www.iso.org/standard/67762.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 10210:2012,https://www.iso.org/standard/45851.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 10640:2011,https://www.iso.org/standard/46024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 10840:2008,https://www.iso.org/standard/41636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 10927:2011,https://www.iso.org/standard/46417.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 10927,https://www.iso.org/standard/72462.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-1:2016,https://www.iso.org/standard/70024.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-2:2013,https://www.iso.org/standard/57966.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-3,https://www.iso.org/standard/72460.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-3:2011,https://www.iso.org/standard/41638.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-4:2014,https://www.iso.org/standard/65087.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-5:2013,https://www.iso.org/standard/57967.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-6,https://www.iso.org/standard/72461.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-6:2008,https://www.iso.org/standard/42718.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11357-7:2015,https://www.iso.org/standard/61654.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11358-1:2014,https://www.iso.org/standard/59710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11358-2:2014,https://www.iso.org/standard/65086.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11358-3:2013,https://www.iso.org/standard/54366.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11359-1:2014,https://www.iso.org/standard/59709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11359-2:1999,https://www.iso.org/standard/25175.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11359-3:2002,https://www.iso.org/standard/36587.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 11359-3,https://www.iso.org/standard/74989.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11403-1:2014,https://www.iso.org/standard/60783.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 11403-2:2012,https://www.iso.org/standard/61088.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 11403-3:2014,https://www.iso.org/standard/55462.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 11443:2014,https://www.iso.org/standard/65101.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11469:2016,https://www.iso.org/standard/63434.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 11907-1:1998,https://www.iso.org/standard/22158.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/CD 11907-1,https://www.iso.org/standard/65244.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 11907-2:1995,https://www.iso.org/standard/20405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 11907-3:1998,https://www.iso.org/standard/20406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 11907-4:1998,https://www.iso.org/standard/24920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 12058-1:1997,https://www.iso.org/standard/20843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 12058-1,https://www.iso.org/standard/74985.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 12992:2017,https://www.iso.org/standard/65245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 13468-1:1996,https://www.iso.org/standard/22055.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 13468-2:1999,https://www.iso.org/standard/22056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 13586:2000,https://www.iso.org/standard/22321.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 13586:2000/Amd 1:2003,https://www.iso.org/standard/33807.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 13586,https://www.iso.org/standard/67721.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 13741-1:1998,https://www.iso.org/standard/22804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 13741-2:1998,https://www.iso.org/standard/22805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 13927:2015,https://www.iso.org/standard/52841.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 13975:2012,https://www.iso.org/standard/54396.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/CD 13975,https://www.iso.org/standard/74992.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 14782:1999,https://www.iso.org/standard/25544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 14782:1999/Cor 1:2005,https://www.iso.org/standard/42174.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 14851:1999,https://www.iso.org/standard/25765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 14851:1999/Cor 1:2005,https://www.iso.org/standard/42153.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 14851,https://www.iso.org/standard/70026.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 14852:1999,https://www.iso.org/standard/25766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 14852:1999/Cor 1:2005,https://www.iso.org/standard/42154.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/DIS 14852,https://www.iso.org/standard/72051.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 14853:2016,https://www.iso.org/standard/67804.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 14855-1:2012,https://www.iso.org/standard/57902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 14855-2:2007,https://www.iso.org/standard/40617.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 14855-2:2007/Cor 1:2009,https://www.iso.org/standard/54131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/DIS 14855-2,https://www.iso.org/standard/72046.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 15033:2007,https://www.iso.org/standard/40095.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 15033,https://www.iso.org/standard/70036.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 15270:2008,https://www.iso.org/standard/45089.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 15314:2004,https://www.iso.org/standard/40530.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/DIS 15314,https://www.iso.org/standard/74668.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 15512:2016,https://www.iso.org/standard/70025.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/NP 15512,https://www.iso.org/standard/73834.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 15791-1:2014,https://www.iso.org/standard/50594.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/TS 15791-2:2017,https://www.iso.org/standard/63435.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 15850:2014,https://www.iso.org/standard/63978.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 15985:2014,https://www.iso.org/standard/63366.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 16012:2015,https://www.iso.org/standard/63481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 16014-1:2012,https://www.iso.org/standard/52892.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 16014-1,https://www.iso.org/standard/74995.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16014-2:2012,https://www.iso.org/standard/52893.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 16014-2,https://www.iso.org/standard/74996.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16014-3:2012,https://www.iso.org/standard/52894.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 16014-3,https://www.iso.org/standard/74997.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16014-4:2012,https://www.iso.org/standard/52895.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 16014-4,https://www.iso.org/standard/74998.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16014-5:2012,https://www.iso.org/standard/52335.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 16014-5,https://www.iso.org/standard/74999.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16152:2005,https://www.iso.org/standard/32127.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 16620-1:2015,https://www.iso.org/standard/63766.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16620-2:2015,https://www.iso.org/standard/63767.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/NP 16620-2,https://www.iso.org/standard/72474.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16620-3:2015,https://www.iso.org/standard/63768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16620-4:2016,https://www.iso.org/standard/63817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16620-5:2017,https://www.iso.org/standard/65218.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 16869:2008,https://www.iso.org/standard/45066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 16929:2013,https://www.iso.org/standard/62948.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/DIS 16929,https://www.iso.org/standard/72473.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 17088:2012,https://www.iso.org/standard/57901.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/CD 17088,https://www.iso.org/standard/74994.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 17221:2014,https://www.iso.org/standard/59447.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 17223:2014,https://www.iso.org/standard/61192.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 17281:2002,https://www.iso.org/standard/30590.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 17281,https://www.iso.org/standard/68099.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 17282:2004,https://www.iso.org/standard/30591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 17282:2004/DAmd 1,https://www.iso.org/standard/55655.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/CD 17282,https://www.iso.org/standard/64827.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 17422:2002,https://www.iso.org/standard/33053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 17422,https://www.iso.org/standard/70028.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 17541:2014,https://www.iso.org/standard/60018.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 17556:2012,https://www.iso.org/standard/56089.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/CD 17556,https://www.iso.org/standard/74993.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 17744:2004,https://www.iso.org/standard/33196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/TR 17801:2014,https://www.iso.org/standard/60575.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/DIS 18485,https://www.iso.org/standard/62581.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DTR 18486,https://www.iso.org/standard/74667.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/TR 18486:2016,https://www.iso.org/standard/62582.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 18830:2016,https://www.iso.org/standard/63515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/TS 19022:2016,https://www.iso.org/standard/63749.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/TR 19032:2006,https://www.iso.org/standard/38947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 19252:2008,https://www.iso.org/standard/39005.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DTR 19278,https://www.iso.org/standard/64253.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 19679:2016,https://www.iso.org/standard/66003.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/CD 19721,https://www.iso.org/standard/66117.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 19929:2017,https://www.iso.org/standard/66563.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/DIS 19935-1.2,https://www.iso.org/standard/66570.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 19935-2,https://www.iso.org/standard/71529.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 20200:2015,https://www.iso.org/standard/63367.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/CD 20329,https://www.iso.org/standard/67709.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 20753:2008,https://www.iso.org/standard/37251.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/FDIS 20753,https://www.iso.org/standard/72818.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 20965:2005,https://www.iso.org/standard/35591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 21367:2007,https://www.iso.org/standard/34492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/CD 21475,https://www.iso.org/standard/70964.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 21509:2006,https://www.iso.org/standard/35899.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 21702,https://www.iso.org/standard/71365.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 22007-1:2017,https://www.iso.org/standard/67901.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 22007-2:2015,https://www.iso.org/standard/61190.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 22007-3:2008,https://www.iso.org/standard/41063.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 22007-4:2017,https://www.iso.org/standard/65085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/TR 22007-5:2011,https://www.iso.org/standard/52866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 22007-6:2014,https://www.iso.org/standard/59508.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 22088-1:2006,https://www.iso.org/standard/34861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 22088-2:2006,https://www.iso.org/standard/34862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 22088-3:2006,https://www.iso.org/standard/34874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 22088-4:2006,https://www.iso.org/standard/34875.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 22088-5:2006,https://www.iso.org/standard/37650.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 22088-6:2006,https://www.iso.org/standard/38220.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 22196:2011,https://www.iso.org/standard/54431.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO/CD 22403,https://www.iso.org/standard/73121.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/CD 22404,https://www.iso.org/standard/73123.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO/CD 22526-1,https://www.iso.org/standard/73389.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 22526-2,https://www.iso.org/standard/73390.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 22526-3,https://www.iso.org/standard/73391.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO/CD 22766,https://www.iso.org/standard/73856.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 61/SC 14,https://www.iso.org/contents/data/committee/65/78/6578018/x/catalogue/ -ISO 25337:2010,https://www.iso.org/standard/42874.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 25762:2009,https://www.iso.org/standard/43211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO/CD 26723,https://www.iso.org/standard/70764.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 29221:2014,https://www.iso.org/standard/45354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 29664:2010,https://www.iso.org/standard/45636.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 30021:2013,https://www.iso.org/standard/57863.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -IEC 60695-11-10:1999,https://www.iso.org/standard/26271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -IEC 60695-11-10:1999/Amd 1:2003,https://www.iso.org/standard/34808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -IEC 60695-11-20:1999,https://www.iso.org/standard/26272.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -IEC 60695-11-20:1999/Amd 1:2003,https://www.iso.org/standard/34809.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 60:1977,https://www.iso.org/standard/3698.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 61:1976,https://www.iso.org/standard/3699.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 75-2:2013,https://www.iso.org/standard/55653.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 75-3:2004,https://www.iso.org/standard/31257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 119:1977,https://www.iso.org/standard/3921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 120:1977,https://www.iso.org/standard/3922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 172:1978,https://www.iso.org/standard/4006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 295:2004,https://www.iso.org/standard/28180.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 308:1994,https://www.iso.org/standard/22998.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 584:1982,https://www.iso.org/standard/4681.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 1628-5:1998,https://www.iso.org/standard/25183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2114:2000,https://www.iso.org/standard/29827.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 2535:2001,https://www.iso.org/standard/30340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 2554:1997,https://www.iso.org/standard/27071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 2577:2007,https://www.iso.org/standard/43620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3001:1999,https://www.iso.org/standard/29610.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3521:1997,https://www.iso.org/standard/8895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3521:1997/Cor 1:2003,https://www.iso.org/standard/38108.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3671:1976,https://www.iso.org/standard/9128.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3672-1:2000,https://www.iso.org/standard/25206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3672-2:2000,https://www.iso.org/standard/9130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3673-1:1996,https://www.iso.org/standard/27072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3673-2:2012,https://www.iso.org/standard/59248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 4597-1:2005,https://www.iso.org/standard/41680.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 4614:1977,https://www.iso.org/standard/10552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 4615:1979,https://www.iso.org/standard/10553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 4895:2014,https://www.iso.org/standard/63354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 7327:1994,https://www.iso.org/standard/14003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 7808:1992,https://www.iso.org/standard/14705.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 8619:2003,https://www.iso.org/standard/36284.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 8974:2002,https://www.iso.org/standard/29947.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 8975:1989,https://www.iso.org/standard/16498.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 8987:2005,https://www.iso.org/standard/36286.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 8988:2006,https://www.iso.org/standard/36285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 8989:1995,https://www.iso.org/standard/24003.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 9396:1997,https://www.iso.org/standard/25105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 9702:1996,https://www.iso.org/standard/17558.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 9771:1995,https://www.iso.org/standard/25125.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 9944:1990,https://www.iso.org/standard/17839.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 9944:1990/Cor 1:1997,https://www.iso.org/standard/27069.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 10082:1999,https://www.iso.org/standard/28610.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 10724-1:1998,https://www.iso.org/standard/26828.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 10724-2:1998,https://www.iso.org/standard/28181.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 11248:1993,https://www.iso.org/standard/19229.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 11401:1993,https://www.iso.org/standard/19342.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 11402:2004,https://www.iso.org/standard/39058.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 11409:1993,https://www.iso.org/standard/19351.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14322:2012,https://www.iso.org/standard/54611.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO/DIS 14322,https://www.iso.org/standard/74606.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14526-1:1999,https://www.iso.org/standard/24609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14526-2:1999,https://www.iso.org/standard/24610.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14526-3:1999,https://www.iso.org/standard/24611.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14527-1:1999,https://www.iso.org/standard/24612.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14527-2:1999,https://www.iso.org/standard/24613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14527-3:1999,https://www.iso.org/standard/24614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14528-1:1999,https://www.iso.org/standard/24615.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14528-2:1999,https://www.iso.org/standard/24616.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14528-3:1999,https://www.iso.org/standard/24617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14529-1:1999,https://www.iso.org/standard/24618.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14529-2:1999,https://www.iso.org/standard/24619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14529-3:1999,https://www.iso.org/standard/24620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14530-1:1999,https://www.iso.org/standard/24621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14530-2:1999,https://www.iso.org/standard/24622.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14530-3:1999,https://www.iso.org/standard/24623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14848:1998,https://www.iso.org/standard/22372.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14849:1999,https://www.iso.org/standard/25746.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14896:2006/Amd 1:2007,https://www.iso.org/standard/45081.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14896:2009,https://www.iso.org/standard/50601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14897:2002,https://www.iso.org/standard/34859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14898:1999,https://www.iso.org/standard/25886.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14898:1999/Amd 1:2011,https://www.iso.org/standard/55454.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14899:2001,https://www.iso.org/standard/25887.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 14900:2017,https://www.iso.org/standard/72375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 15028:2014,https://www.iso.org/standard/63436.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 15063:2011,https://www.iso.org/standard/52878.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 15064:2017,https://www.iso.org/standard/70269.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 15252-1:1999,https://www.iso.org/standard/27083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 15252-2:1999,https://www.iso.org/standard/27084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 15252-3:1999,https://www.iso.org/standard/27085.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 17710:2002,https://www.iso.org/standard/33185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 18280:2010,https://www.iso.org/standard/52877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 18872:2007,https://www.iso.org/standard/38914.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 20368:2017,https://www.iso.org/standard/67794.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 21048:2014,https://www.iso.org/standard/63357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO/CD 21257,https://www.iso.org/standard/70271.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 21318:2007,https://www.iso.org/standard/40164.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 21627-1:2009,https://www.iso.org/standard/50598.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 21627-2:2009,https://www.iso.org/standard/50599.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 21627-3:2009,https://www.iso.org/standard/50600.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 25761:2014,https://www.iso.org/standard/63437.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 26603:2017,https://www.iso.org/standard/72472.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 182-1:1990,https://www.iso.org/standard/4024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 182-2:1990,https://www.iso.org/standard/4025.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 182-3:1993,https://www.iso.org/standard/4026.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 182-4:1993,https://www.iso.org/standard/4027.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 293:2004,https://www.iso.org/standard/39885.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 294-1:2017,https://www.iso.org/standard/67036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 294-2:1996,https://www.iso.org/standard/25186.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 294-2:1996/Amd 1:2004,https://www.iso.org/standard/40061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 294-2,https://www.iso.org/standard/70412.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 294-3:2002,https://www.iso.org/standard/32205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 294-3:2002/Amd 1:2006,https://www.iso.org/standard/34837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 294-4:2001,https://www.iso.org/standard/31273.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 294-4,https://www.iso.org/standard/70413.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 294-5:2017,https://www.iso.org/standard/65481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 305:1990,https://www.iso.org/standard/4240.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 305,https://www.iso.org/standard/70415.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 306:2013,https://www.iso.org/standard/55647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 307:2007,https://www.iso.org/standard/37361.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 307:2007/Amd 1:2013,https://www.iso.org/standard/60408.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 307,https://www.iso.org/standard/70409.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 458-2:1985,https://www.iso.org/standard/4483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 585:1990,https://www.iso.org/standard/4683.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1060-1:1998,https://www.iso.org/standard/25189.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1060-2:1998,https://www.iso.org/standard/25190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1061:1990,https://www.iso.org/standard/5553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1068:1975,https://www.iso.org/standard/5561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1110:1995,https://www.iso.org/standard/22176.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1133-1:2011,https://www.iso.org/standard/44273.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 1133-2:2011,https://www.iso.org/standard/44274.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 1158:1998,https://www.iso.org/standard/26725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1163-1:1995,https://www.iso.org/standard/23984.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1163-2:1995,https://www.iso.org/standard/5738.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1264:1980,https://www.iso.org/standard/5866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1265:2007,https://www.iso.org/standard/34842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1269:2006,https://www.iso.org/standard/39135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1598:1990,https://www.iso.org/standard/6192.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 1598,https://www.iso.org/standard/70418.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1599:1990,https://www.iso.org/standard/6194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 1599,https://www.iso.org/standard/70419.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1600:1990,https://www.iso.org/standard/6196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1622-1:2012,https://www.iso.org/standard/55459.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1622-2:1995,https://www.iso.org/standard/6222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1624:2001,https://www.iso.org/standard/31279.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1628-2:1998,https://www.iso.org/standard/25191.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1628-3:2010,https://www.iso.org/standard/42083.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1628-4:1999,https://www.iso.org/standard/25180.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 1628-4,https://www.iso.org/standard/70411.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1628-6:1990,https://www.iso.org/standard/6233.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 1875:1982,https://www.iso.org/standard/6553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2561:2012,https://www.iso.org/standard/55457.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2580-2:2003,https://www.iso.org/standard/33333.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2897-2:2003,https://www.iso.org/standard/33334.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2898-1:1996,https://www.iso.org/standard/20474.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 2898-2:2008,https://www.iso.org/standard/50605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 3451-2:1998,https://www.iso.org/standard/27077.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 3451-3:1984,https://www.iso.org/standard/8784.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 3451-4:1998,https://www.iso.org/standard/27078.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 3451-5:2002,https://www.iso.org/standard/29805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 4574:1978,https://www.iso.org/standard/10497.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 4574,https://www.iso.org/standard/70417.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4575:2007,https://www.iso.org/standard/43695.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4577:1983,https://www.iso.org/standard/10501.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 4577,https://www.iso.org/standard/70407.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4581:1994,https://www.iso.org/standard/10506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 4608:1998,https://www.iso.org/standard/25192.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4610:2001,https://www.iso.org/standard/30966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4612:1999,https://www.iso.org/standard/25193.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 4612,https://www.iso.org/standard/70416.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4613-1:1993,https://www.iso.org/standard/10550.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4613-2:1995,https://www.iso.org/standard/21112.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4613-2:1995/Amd 1:2004,https://www.iso.org/standard/34832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 4894-2:1995,https://www.iso.org/standard/10904.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 6186:1998,https://www.iso.org/standard/25202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 6401:2008,https://www.iso.org/standard/38253.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 6402-2:2003,https://www.iso.org/standard/33336.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 6691:2000,https://www.iso.org/standard/30440.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 123/SC 2,https://www.iso.org/contents/data/committee/05/20/52096/x/catalogue/ -ISO 7391-1:2006,https://www.iso.org/standard/36275.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 7391-2:2006,https://www.iso.org/standard/36276.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 8257-1:1998,https://www.iso.org/standard/26815.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 8257-2:2001,https://www.iso.org/standard/26816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 8985:1998,https://www.iso.org/standard/26813.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 8986-1:2009,https://www.iso.org/standard/45084.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 8986-2:2009,https://www.iso.org/standard/45085.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 9113:1986,https://www.iso.org/standard/16708.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 9113,https://www.iso.org/standard/70408.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 9988-1:2004,https://www.iso.org/standard/40594.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 9988-2:2006,https://www.iso.org/standard/41674.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 10350-1:2017,https://www.iso.org/standard/70314.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 10366-2:2003,https://www.iso.org/standard/33335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 11337:2010,https://www.iso.org/standard/50595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 11468:1997,https://www.iso.org/standard/19420.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 11542-1:2001,https://www.iso.org/standard/30102.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 11542-2:1998,https://www.iso.org/standard/21108.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 11542-2:1998/Cor 1:2007,https://www.iso.org/standard/46331.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 12000:2014,https://www.iso.org/standard/59255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 12086-1:2006/Cor 1:2006,https://www.iso.org/standard/44486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 12086-2:2006/Cor 1:2006,https://www.iso.org/standard/44487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 12418-1:2012,https://www.iso.org/standard/51421.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 12418-2:2012,https://www.iso.org/standard/51422.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 14446:1999,https://www.iso.org/standard/22507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 14663-1:1999,https://www.iso.org/standard/22050.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 14663-2:1999,https://www.iso.org/standard/22051.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 15023-1:2017,https://www.iso.org/standard/65482.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 15023-2:2003,https://www.iso.org/standard/25580.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 15023-2,https://www.iso.org/standard/70420.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 15103-2:2007,https://www.iso.org/standard/39602.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 15373:2001,https://www.iso.org/standard/26930.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 15853:1999,https://www.iso.org/standard/29282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 16365-1:2014,https://www.iso.org/standard/56513.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 16365-2:2014,https://www.iso.org/standard/56514.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 16365-3:2014,https://www.iso.org/standard/56515.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 16396-1:2015,https://www.iso.org/standard/56516.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 16396-2:2017,https://www.iso.org/standard/67792.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 16770:2004,https://www.iso.org/standard/31061.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 16770,https://www.iso.org/standard/70480.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/CD 16770-2,https://www.iso.org/standard/70481.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 16790:2005,https://www.iso.org/standard/41632.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 17855-1:2014,https://www.iso.org/standard/60831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 17855-2:2016,https://www.iso.org/standard/66827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 18064:2014,https://www.iso.org/standard/65365.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 18263-1:2015,https://www.iso.org/standard/61908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 18263-2:2015,https://www.iso.org/standard/61907.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 19062-1:2015,https://www.iso.org/standard/63846.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 19062-2,https://www.iso.org/standard/70487.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 19063-1:2015,https://www.iso.org/standard/63847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 19064-1:2015,https://www.iso.org/standard/63848.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 19065-1:2014,https://www.iso.org/standard/63849.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 19065-2,https://www.iso.org/standard/70488.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 19066-1:2014,https://www.iso.org/standard/63850.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 19069-1:2015,https://www.iso.org/standard/63872.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 19069-2:2016,https://www.iso.org/standard/66828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 19892:2011,https://www.iso.org/standard/56540.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 20028-1:2017,https://www.iso.org/standard/66866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 20028-2:2017,https://www.iso.org/standard/66867.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 20029-1:2017,https://www.iso.org/standard/66868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 20029-2:2017,https://www.iso.org/standard/66869.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/FDIS 20557-1,https://www.iso.org/standard/68365.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/PRF 20557-2,https://www.iso.org/standard/68366.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/PRF 20558-1,https://www.iso.org/standard/68367.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/PRF 20558-2,https://www.iso.org/standard/68368.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 20568-1:2017,https://www.iso.org/standard/68422.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 20568-2:2017,https://www.iso.org/standard/68423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21301-1,https://www.iso.org/standard/70502.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21301-2,https://www.iso.org/standard/70503.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21302-1,https://www.iso.org/standard/70504.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21302-2,https://www.iso.org/standard/70505.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21304-1,https://www.iso.org/standard/70506.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21305-1,https://www.iso.org/standard/70507.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21305-2,https://www.iso.org/standard/70508.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21306-1,https://www.iso.org/standard/70509.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21306-2,https://www.iso.org/standard/70510.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21309-1,https://www.iso.org/standard/70511.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21309-2,https://www.iso.org/standard/70512.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21970-1,https://www.iso.org/standard/72322.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/DIS 21970-2,https://www.iso.org/standard/72323.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 22498:2005,https://www.iso.org/standard/36277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 24538:2008,https://www.iso.org/standard/42280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 25137-1:2009,https://www.iso.org/standard/42772.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 25137-2:2009,https://www.iso.org/standard/42773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 27547-1:2010,https://www.iso.org/standard/44222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 28078-1:2009,https://www.iso.org/standard/44506.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 28078-2:2009,https://www.iso.org/standard/44494.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 28941-1:2008,https://www.iso.org/standard/41627.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/FDIS 29988-1,https://www.iso.org/standard/68341.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO/FDIS 29988-2,https://www.iso.org/standard/68340.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 844:2014,https://www.iso.org/standard/55473.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 845:2006,https://www.iso.org/standard/39408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 1209-1:2007,https://www.iso.org/standard/45079.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 1209-2:2007,https://www.iso.org/standard/45080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 1663:2007,https://www.iso.org/standard/41676.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 1798:2008,https://www.iso.org/standard/41059.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 1856:2000,https://www.iso.org/standard/2330.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 1856:2000/Amd 1:2007,https://www.iso.org/standard/43717.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 1856,https://www.iso.org/standard/70213.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 1922:2012,https://www.iso.org/standard/60770.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO/DIS 1922.2,https://www.iso.org/standard/65039.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 1923:1981,https://www.iso.org/standard/6613.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 1926:2009,https://www.iso.org/standard/52864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 2439:2008,https://www.iso.org/standard/42717.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2440:1997,https://www.iso.org/standard/2298.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2440:1997/Amd 1:2010,https://www.iso.org/standard/50767.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2440:1997/Amd 2:2014,https://www.iso.org/standard/63705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 2796:1986,https://www.iso.org/standard/7786.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 2896:2001,https://www.iso.org/standard/30408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 3385:2014,https://www.iso.org/standard/55743.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3386-1:1986,https://www.iso.org/standard/8683.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3386-1:1986/Amd 1:2010,https://www.iso.org/standard/50768.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3386-2:1997,https://www.iso.org/standard/25481.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3386-2:1997/Amd 1:2010,https://www.iso.org/standard/50769.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3582:2000,https://www.iso.org/standard/2202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3582:2000/Amd 1:2007,https://www.iso.org/standard/43718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4590:2016,https://www.iso.org/standard/60771.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 4638:1984,https://www.iso.org/standard/10595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4651:1988,https://www.iso.org/standard/10617.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4651:1988/Amd 1:2006,https://www.iso.org/standard/43719.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4897:1985,https://www.iso.org/standard/10909.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 4898:2010,https://www.iso.org/standard/52865.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO/FDIS 4898,https://www.iso.org/standard/70322.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 5999:2013,https://www.iso.org/standard/59740.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6187:2001,https://www.iso.org/standard/32224.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 6453:1985,https://www.iso.org/standard/12809.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6915:1991,https://www.iso.org/standard/13433.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6916-1:1995,https://www.iso.org/standard/13434.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6916-1:1995/Amd 1:2007,https://www.iso.org/standard/43720.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6916-1:1995/Cor 1:2002,https://www.iso.org/standard/37065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6916-2:2001,https://www.iso.org/standard/13435.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7214:2012,https://www.iso.org/standard/60772.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO/DIS 7214,https://www.iso.org/standard/65040.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 7231:2010,https://www.iso.org/standard/43778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7616:1986,https://www.iso.org/standard/14405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 7850:1986,https://www.iso.org/standard/14771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 8067:2008,https://www.iso.org/standard/42716.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 8067,https://www.iso.org/standard/72855.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8307:2007,https://www.iso.org/standard/41057.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 8307,https://www.iso.org/standard/70214.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8873-1:2006,https://www.iso.org/standard/39378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 8873-2:2007,https://www.iso.org/standard/39406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 8873-3:2007,https://www.iso.org/standard/39407.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 9054:1990,https://www.iso.org/standard/16623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 9772:2012,https://www.iso.org/standard/54778.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 9774:2004,https://www.iso.org/standard/29776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 10066:1991,https://www.iso.org/standard/18035.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 11752:2000,https://www.iso.org/standard/19673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 11752:2000/Amd 1:2006,https://www.iso.org/standard/43721.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 13362:2000,https://www.iso.org/standard/21855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 20392:2007,https://www.iso.org/standard/39409.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 20393:2007,https://www.iso.org/standard/39410.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 20394:2007,https://www.iso.org/standard/39411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 21844,https://www.iso.org/standard/71960.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 24999:2008,https://www.iso.org/standard/42737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 75-3:2004,https://www.iso.org/standard/31257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 527-4:1997,https://www.iso.org/standard/4595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 527-5:2009,https://www.iso.org/standard/52991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1172:1996,https://www.iso.org/standard/5750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-1:2001,https://www.iso.org/standard/25213.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-2:2001,https://www.iso.org/standard/27244.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-3:2000,https://www.iso.org/standard/27245.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-4:2005,https://www.iso.org/standard/27246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-4:2005/Amd 1:2010,https://www.iso.org/standard/53442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-5:2001,https://www.iso.org/standard/27247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-6:2002,https://www.iso.org/standard/27248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-7:2001,https://www.iso.org/standard/27249.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-8:2004,https://www.iso.org/standard/27250.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-9:2003,https://www.iso.org/standard/27251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-10:2005,https://www.iso.org/standard/34856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 1268-11:2005,https://www.iso.org/standard/34857.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3597-1:2003,https://www.iso.org/standard/31284.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3597-2:2003,https://www.iso.org/standard/31285.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3597-3:2003,https://www.iso.org/standard/31286.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3597-4:2003,https://www.iso.org/standard/31287.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 4899:1993,https://www.iso.org/standard/10917.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 4901:2011,https://www.iso.org/standard/52876.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 7822:1990,https://www.iso.org/standard/14740.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 8604:1988,https://www.iso.org/standard/15909.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 1,https://www.iso.org/contents/data/committee/04/92/49262/x/catalogue/ -ISO 8605:2001,https://www.iso.org/standard/33329.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 8606:1990,https://www.iso.org/standard/15911.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 9782:1993,https://www.iso.org/standard/17645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 10350-2:2011,https://www.iso.org/standard/45088.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/CD 10350-2,https://www.iso.org/standard/70315.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 10352:2010,https://www.iso.org/standard/50602.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/CD 10352,https://www.iso.org/standard/70572.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 10406-1:2015,https://www.iso.org/standard/63657.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 10406-2:2015,https://www.iso.org/standard/63658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO/CD 10406-3,https://www.iso.org/standard/72162.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 11667:1997,https://www.iso.org/standard/19591.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 12114:1997,https://www.iso.org/standard/20939.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 12115:1997,https://www.iso.org/standard/20940.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 12115:1997/Cor 1:1998,https://www.iso.org/standard/31163.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 12815:2013,https://www.iso.org/standard/51805.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 12817:2013,https://www.iso.org/standard/51807.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 13003:2003,https://www.iso.org/standard/32190.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/TR 13883:1995,https://www.iso.org/standard/23167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14125:1998,https://www.iso.org/standard/23637.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14125:1998/Amd 1:2011,https://www.iso.org/standard/52874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14125:1998/Cor 1:2001,https://www.iso.org/standard/35638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14126:1999,https://www.iso.org/standard/23638.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14126:1999/Cor 1:2001,https://www.iso.org/standard/35639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14127:2008,https://www.iso.org/standard/37222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14129:1997,https://www.iso.org/standard/23641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14130:1997,https://www.iso.org/standard/23642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14130:1997/Cor 1:2003,https://www.iso.org/standard/39018.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 14484:2013,https://www.iso.org/standard/54847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 15024:2001,https://www.iso.org/standard/25581.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 15034:1999,https://www.iso.org/standard/26268.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 15040:1999,https://www.iso.org/standard/26278.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 15114:2014,https://www.iso.org/standard/55357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 15310:1999,https://www.iso.org/standard/26468.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 17771:2003,https://www.iso.org/standard/30841.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 18352:2009,https://www.iso.org/standard/38658.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 19044:2016,https://www.iso.org/standard/63793.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO/DIS 19927,https://www.iso.org/standard/66560.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/CD 20144,https://www.iso.org/standard/67148.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/DIS 20337,https://www.iso.org/standard/67730.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/DIS 20975-2,https://www.iso.org/standard/69671.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/DIS 21022,https://www.iso.org/standard/69715.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO/CD 21746,https://www.iso.org/standard/71550.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO/CD 21914,https://www.iso.org/standard/72163.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 22314:2006,https://www.iso.org/standard/36185.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 13,https://www.iso.org/contents/data/committee/04/94/49462/x/catalogue/ -ISO 3302-1:2014,https://www.iso.org/standard/62492.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3302-2:2008,https://www.iso.org/standard/45996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6072:2011,https://www.iso.org/standard/53353.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/TR 9272:2005,https://www.iso.org/standard/36984.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 13000-1:2005,https://www.iso.org/standard/37664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 13000-2:2005,https://www.iso.org/standard/37665.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 9,https://www.iso.org/contents/data/committee/04/93/49366/x/catalogue/ -ISO 15082:2016,https://www.iso.org/standard/68489.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 22/SC 35,https://www.iso.org/contents/data/committee/53/83/5383897/x/catalogue/ -ISO/DIS 20457,https://www.iso.org/standard/68097.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 61,https://www.iso.org/contents/data/committee/04/92/49256/x/catalogue/ -ISO/TR 24699:2009,https://www.iso.org/standard/42439.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 527-3:1995,https://www.iso.org/standard/4594.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 527-3:1995/Cor 1:1998,https://www.iso.org/standard/30480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 527-3:1995/Cor 2:2001,https://www.iso.org/standard/35453.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/DIS 527-3,https://www.iso.org/standard/70307.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 2556:1974,https://www.iso.org/standard/7506.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 5,https://www.iso.org/contents/data/committee/04/93/49318/x/catalogue/ -ISO 4591:1992,https://www.iso.org/standard/10527.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4592:1992,https://www.iso.org/standard/10529.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4593:1993,https://www.iso.org/standard/20759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 6179:2017,https://www.iso.org/standard/70356.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 6383-1:2015,https://www.iso.org/standard/67565.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 6383-2:1983,https://www.iso.org/standard/12716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 7765-1:1988,https://www.iso.org/standard/14629.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 7765-2:1994,https://www.iso.org/standard/14630.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 7823-1:2003,https://www.iso.org/standard/33450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 7823-2:2003,https://www.iso.org/standard/28757.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 7823-3:2007,https://www.iso.org/standard/38964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 8295:1995,https://www.iso.org/standard/20760.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 8296:2003,https://www.iso.org/standard/38451.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 8570:1991,https://www.iso.org/standard/15834.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11501:1995,https://www.iso.org/standard/19452.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11502:1995,https://www.iso.org/standard/19453.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/DIS 11502,https://www.iso.org/standard/70308.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11833-1:2012,https://www.iso.org/standard/54741.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11833-2:1998,https://www.iso.org/standard/22014.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11963:2012,https://www.iso.org/standard/56232.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 12017:1995,https://www.iso.org/standard/20761.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 13636:2012,https://www.iso.org/standard/54102.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 14616:1997,https://www.iso.org/standard/24972.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 14631:1999,https://www.iso.org/standard/24988.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 14632:1998,https://www.iso.org/standard/24989.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15013:2007,https://www.iso.org/standard/42043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15014:2007,https://www.iso.org/standard/43217.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15015:2011,https://www.iso.org/standard/56472.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15105-1:2007,https://www.iso.org/standard/41677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15105-2:2003,https://www.iso.org/standard/37514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15106-1:2003,https://www.iso.org/standard/25926.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15106-2:2003,https://www.iso.org/standard/29782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15106-3:2003,https://www.iso.org/standard/29783.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15106-4:2008,https://www.iso.org/standard/44101.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15106-5:2015,https://www.iso.org/standard/62026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15106-6:2015,https://www.iso.org/standard/62027.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15106-7:2015,https://www.iso.org/standard/62028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15527:2010,https://www.iso.org/standard/54743.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/DIS 15527,https://www.iso.org/standard/70309.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15987:2003,https://www.iso.org/standard/29044.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15988:2003,https://www.iso.org/standard/29045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15989:2004,https://www.iso.org/standard/29046.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15989:2004/Cor 1:2007,https://www.iso.org/standard/46117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 17555:2003,https://www.iso.org/standard/30583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 17557:2003,https://www.iso.org/standard/31119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 23559:2011,https://www.iso.org/standard/60303.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4586-1:2015,https://www.iso.org/standard/67771.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/PRF 4586-1,https://www.iso.org/standard/72959.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4586-2:2015,https://www.iso.org/standard/67780.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/FDIS 4586-2,https://www.iso.org/standard/72960.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4586-3:2015,https://www.iso.org/standard/67774.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/PRF 4586-3,https://www.iso.org/standard/72961.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4586-4:2015,https://www.iso.org/standard/67775.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/PRF 4586-4,https://www.iso.org/standard/72962.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4586-5:2015,https://www.iso.org/standard/67776.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/PRF 4586-5,https://www.iso.org/standard/72963.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4586-6:2015,https://www.iso.org/standard/67777.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/PRF 4586-6,https://www.iso.org/standard/72964.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4586-7:2015,https://www.iso.org/standard/67778.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/PRF 4586-7,https://www.iso.org/standard/72965.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4586-8:2015,https://www.iso.org/standard/67779.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/PRF 4586-8,https://www.iso.org/standard/72966.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 13894-1:2000,https://www.iso.org/standard/22052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 13894-2:2005,https://www.iso.org/standard/37037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19712-1:2008,https://www.iso.org/standard/45044.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19712-2:2007,https://www.iso.org/standard/41511.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19712-3:2007,https://www.iso.org/standard/41512.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4437-1:2014,https://www.iso.org/standard/59128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 4437-2:2014,https://www.iso.org/standard/59129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 4437-3:2014,https://www.iso.org/standard/59130.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 4437-4:2015,https://www.iso.org/standard/62613.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 4437-5:2014,https://www.iso.org/standard/59131.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 6993-1:2006,https://www.iso.org/standard/36964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 6993-2:2006,https://www.iso.org/standard/36965.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 6993-3:2006,https://www.iso.org/standard/36966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 6993-4:2006,https://www.iso.org/standard/36967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 7628:2010,https://www.iso.org/standard/50497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 8233:1988,https://www.iso.org/standard/15335.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 8659:1989,https://www.iso.org/standard/16039.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO/NP 8659,https://www.iso.org/standard/74740.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 9393-1:2004,https://www.iso.org/standard/35137.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 9393-2:2005,https://www.iso.org/standard/38446.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 9808:1990,https://www.iso.org/standard/17682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 11424:2017,https://www.iso.org/standard/68038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13775-1:2015,https://www.iso.org/standard/65368.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13775-2:2016,https://www.iso.org/standard/43708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 14692-1:2017,https://www.iso.org/standard/62256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 14692-2:2017,https://www.iso.org/standard/62257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 14692-3:2017,https://www.iso.org/standard/62258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 14692-4:2017,https://www.iso.org/standard/62259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 6,https://www.iso.org/contents/data/committee/04/95/49598/x/catalogue/ -ISO 15840:2004,https://www.iso.org/standard/28661.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 16486-1:2012,https://www.iso.org/standard/56837.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-1:2012/Amd 1:2014,https://www.iso.org/standard/65074.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-1,https://www.iso.org/standard/74158.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-2:2012,https://www.iso.org/standard/56838.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-2:2012/Amd 1:2014,https://www.iso.org/standard/65075.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-2,https://www.iso.org/standard/74159.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-3:2012,https://www.iso.org/standard/56839.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-3:2012/Amd 1:2014,https://www.iso.org/standard/65076.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-3,https://www.iso.org/standard/74160.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-4:2016,https://www.iso.org/standard/65195.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 7,https://www.iso.org/contents/data/committee/05/26/52600/x/catalogue/ -ISO 16486-5:2012,https://www.iso.org/standard/56840.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-5,https://www.iso.org/standard/74161.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 16486-6:2012,https://www.iso.org/standard/56841.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/NP 16486-6,https://www.iso.org/standard/74162.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 1401:2016,https://www.iso.org/standard/68033.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 1436:2017,https://www.iso.org/standard/70382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 1823:2015,https://www.iso.org/standard/55912.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 1825:2017,https://www.iso.org/standard/70350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 2928:2003,https://www.iso.org/standard/35653.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 2929:2014,https://www.iso.org/standard/63805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 3821:2008,https://www.iso.org/standard/40642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO/FDIS 3821,https://www.iso.org/standard/67312.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 3861:2005,https://www.iso.org/standard/37224.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 3862:2017,https://www.iso.org/standard/70383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 3949:2009,https://www.iso.org/standard/50796.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/DIS 3949.2,https://www.iso.org/standard/68050.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 3996:1995,https://www.iso.org/standard/9663.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4038:1996,https://www.iso.org/standard/9737.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4079:2017,https://www.iso.org/standard/70375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4081:2016,https://www.iso.org/standard/70373.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4642-1:2015,https://www.iso.org/standard/68031.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4642-2:2015,https://www.iso.org/standard/68032.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4671:2007,https://www.iso.org/standard/41600.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 4671:2007/Amd 1:2011,https://www.iso.org/standard/59233.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 5359:2014,https://www.iso.org/standard/59953.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 5359:2014/Amd 1:2017,https://www.iso.org/standard/68680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 121/SC 1,https://www.iso.org/contents/data/committee/05/19/51986/x/catalogue/ -ISO 5771:2008,https://www.iso.org/standard/43694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 5772:2015,https://www.iso.org/standard/57302.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6120:1995,https://www.iso.org/standard/12340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6605:2017,https://www.iso.org/standard/67357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 4,https://www.iso.org/contents/data/committee/05/22/52266/x/catalogue/ -ISO 6772:2012,https://www.iso.org/standard/54516.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 6804:2016,https://www.iso.org/standard/68034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6805:1994,https://www.iso.org/standard/13310.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/CD 6805,https://www.iso.org/standard/72843.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6806:2017,https://www.iso.org/standard/68036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6807:2003,https://www.iso.org/standard/34470.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6808:2014,https://www.iso.org/standard/55656.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 7258:1984,https://www.iso.org/standard/13913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 7313:1984,https://www.iso.org/standard/13979.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/NP 7313,https://www.iso.org/standard/68320.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8028:2017,https://www.iso.org/standard/68035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8066-2:2001,https://www.iso.org/standard/32087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8153-1:2009,https://www.iso.org/standard/51623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8207:1996,https://www.iso.org/standard/15299.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 8789:2009,https://www.iso.org/standard/43706.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/DIS 8789,https://www.iso.org/standard/68037.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8829-1:2009,https://www.iso.org/standard/50107.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8829-2:2006,https://www.iso.org/standard/40693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 8913:2006,https://www.iso.org/standard/40696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9528:1994,https://www.iso.org/standard/17261.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/CD 9528,https://www.iso.org/standard/75273.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 9528,https://www.iso.org/standard/68321.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 9938:1994,https://www.iso.org/standard/17833.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/CD 9938,https://www.iso.org/standard/75274.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO/DIS 9938,https://www.iso.org/standard/68322.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 10502:2012,https://www.iso.org/standard/51714.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 11237:2017,https://www.iso.org/standard/70374.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/TR 11340:1994,https://www.iso.org/standard/19219.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 11424:2017,https://www.iso.org/standard/68038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 11425:1996,https://www.iso.org/standard/19365.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 11759:1999,https://www.iso.org/standard/19679.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO/FDIS 11759,https://www.iso.org/standard/68046.html,50.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 12170:1996,https://www.iso.org/standard/21086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 13363:2016,https://www.iso.org/standard/63963.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13774:1998,https://www.iso.org/standard/22512.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13775-1:2015,https://www.iso.org/standard/65368.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 13775-2:2016,https://www.iso.org/standard/43708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 14113:2013,https://www.iso.org/standard/62935.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 44/SC 8,https://www.iso.org/contents/data/committee/04/86/48628/x/catalogue/ -ISO 14557:2002,https://www.iso.org/standard/37067.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 14557:2002/Amd 1:2007,https://www.iso.org/standard/43817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 15540:2016,https://www.iso.org/standard/67285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 15541:2016,https://www.iso.org/standard/67286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 3,https://www.iso.org/contents/data/committee/04/58/45824/x/catalogue/ -ISO 16301:2017,https://www.iso.org/standard/65705.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 16964:2015,https://www.iso.org/standard/58054.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO/DIS 16964,https://www.iso.org/standard/74016.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 58/SC 2,https://www.iso.org/contents/data/committee/04/90/49018/x/catalogue/ -ISO 17324:2014,https://www.iso.org/standard/59582.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 19013-1:2005,https://www.iso.org/standard/32054.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 19013-2:2016,https://www.iso.org/standard/65369.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 21012,https://www.iso.org/standard/64651.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 21012:2006,https://www.iso.org/standard/34376.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 220,https://www.iso.org/contents/data/committee/05/49/54990/x/catalogue/ -ISO 23297:2017,https://www.iso.org/standard/72844.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 27126:2014,https://www.iso.org/standard/62012.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 27127:2014,https://www.iso.org/standard/62013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 28017,https://www.iso.org/standard/72842.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 28017:2011,https://www.iso.org/standard/55657.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 28017:2011/Amd 1:2015,https://www.iso.org/standard/65377.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 1749:1973,https://www.iso.org/standard/6369.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 3601-1:2012,https://www.iso.org/standard/58043.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-1:2012/Cor 1:2012,https://www.iso.org/standard/62415.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-1:2012/NP Amd 1,https://www.iso.org/standard/74051.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-2:2016,https://www.iso.org/standard/69880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-3:2005,https://www.iso.org/standard/40409.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-3:2005/DAmd 1,https://www.iso.org/standard/73527.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-4:2008,https://www.iso.org/standard/42115.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3601-5:2015,https://www.iso.org/standard/62902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 3934:2002,https://www.iso.org/standard/35614.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3939:1977,https://www.iso.org/standard/9584.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 4633:2015,https://www.iso.org/standard/63707.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4635:2011,https://www.iso.org/standard/45994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4927:2005,https://www.iso.org/standard/38512.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4928:2006,https://www.iso.org/standard/40421.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 4930:2006,https://www.iso.org/standard/41831.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 5892:2013,https://www.iso.org/standard/56745.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6117:2005,https://www.iso.org/standard/38511.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6118:2006,https://www.iso.org/standard/40420.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6119:2006,https://www.iso.org/standard/41832.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 6194-1:2007,https://www.iso.org/standard/34678.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-2:2009,https://www.iso.org/standard/45846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-3:2009,https://www.iso.org/standard/43009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-4:2009,https://www.iso.org/standard/43010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-4:2009/NP Amd 1,https://www.iso.org/standard/74297.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 6194-5:2008,https://www.iso.org/standard/42162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 7630:1985,https://www.iso.org/standard/14438.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7631:1985,https://www.iso.org/standard/14439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7632:1985,https://www.iso.org/standard/14440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7633:1985,https://www.iso.org/standard/14441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 7986:1997,https://www.iso.org/standard/14983.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 9553:1997,https://www.iso.org/standard/17299.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 9631:2003,https://www.iso.org/standard/37163.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/PRF 9631,https://www.iso.org/standard/65593.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 16010:2005,https://www.iso.org/standard/40110.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 16589-1:2011,https://www.iso.org/standard/53934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-1:2011/DAmd 1,https://www.iso.org/standard/73526.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-2:2011,https://www.iso.org/standard/53935.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-3:2011,https://www.iso.org/standard/53936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-4:2011,https://www.iso.org/standard/53937.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 16589-5:2011,https://www.iso.org/standard/53938.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 131/SC 7,https://www.iso.org/contents/data/committee/05/23/52312/x/catalogue/ -ISO 21049:2004,https://www.iso.org/standard/35625.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO/DIS 21049,https://www.iso.org/standard/45610.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 115/SC 3,https://www.iso.org/contents/data/committee/05/17/51796/x/catalogue/ -ISO 23711:2003,https://www.iso.org/standard/36940.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 27996:2009,https://www.iso.org/standard/44461.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 20/SC 10,https://www.iso.org/contents/data/committee/04/65/46570/x/catalogue/ -ISO 2321:2017,https://www.iso.org/standard/68003.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4643:1992,https://www.iso.org/standard/10604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 3,https://www.iso.org/contents/data/committee/05/05/50592/x/catalogue/ -ISO 6123-1:2015,https://www.iso.org/standard/67997.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6123-2:2015,https://www.iso.org/standard/67999.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6123-3:1985,https://www.iso.org/standard/12347.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6446:1994,https://www.iso.org/standard/12802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7267-1:2017,https://www.iso.org/standard/72782.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7267-2:2008,https://www.iso.org/standard/43673.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 7267-3:2017,https://www.iso.org/standard/72783.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO/TR 7621:1982,https://www.iso.org/standard/14413.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/TR 8517:1988,https://www.iso.org/standard/15743.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 10282:2014,https://www.iso.org/standard/63706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 11193-1:2008,https://www.iso.org/standard/50766.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 11193-1:2008/Amd 1:2012,https://www.iso.org/standard/55603.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/WD 11193-1,https://www.iso.org/standard/75379.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 11193-2:2006,https://www.iso.org/standard/37162.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 12771:1997,https://www.iso.org/standard/1699.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 12856-1:2014,https://www.iso.org/standard/52034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 269/SC 1,https://www.iso.org/contents/data/committee/60/86/6086504/x/catalogue/ -ISO 13106:2014,https://www.iso.org/standard/52836.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 14285:2014,https://www.iso.org/standard/54551.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 15398:2012,https://www.iso.org/standard/55427.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 16616:2015,https://www.iso.org/standard/57285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 17357-1:2014,https://www.iso.org/standard/59873.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 17357-2:2014,https://www.iso.org/standard/59874.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 8/SC 4,https://www.iso.org/contents/data/committee/04/58/45842/x/catalogue/ -ISO 17717:2017,https://www.iso.org/standard/63428.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 17880,https://www.iso.org/standard/62809.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 18188:2016,https://www.iso.org/standard/61726.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19699-1:2017,https://www.iso.org/standard/66099.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19699-2:2017,https://www.iso.org/standard/66107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19821:2017,https://www.iso.org/standard/66270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 20057:2017,https://www.iso.org/standard/66919.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 20058:2017,https://www.iso.org/standard/66920.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/CD 20220,https://www.iso.org/standard/67320.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 20437:2017,https://www.iso.org/standard/68027.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/FDIS 20819,https://www.iso.org/standard/69312.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 22762-1:2010,https://www.iso.org/standard/50394.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 22762-1,https://www.iso.org/standard/70215.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 22762-2:2010,https://www.iso.org/standard/50395.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 22762-2,https://www.iso.org/standard/70218.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 22762-3:2010,https://www.iso.org/standard/50396.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 22762-3,https://www.iso.org/standard/70219.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/TS 22762-4:2014,https://www.iso.org/standard/62220.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 23560:2015,https://www.iso.org/standard/65221.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 24998:2008,https://www.iso.org/standard/42736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 48,https://www.iso.org/contents/data/committee/04/89/48908/x/catalogue/ -ISO 25518:2009,https://www.iso.org/standard/42964.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 3877-1:1997,https://www.iso.org/standard/25344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 3877-2:1997,https://www.iso.org/standard/25345.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 3877-3:1978,https://www.iso.org/standard/9481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 3877-4:1984,https://www.iso.org/standard/9483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 3877-4:1984/CD Amd 1,https://www.iso.org/standard/74284.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 4223-1:2017,https://www.iso.org/standard/62125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 4223-2:1991,https://www.iso.org/standard/10022.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 4223-2:1991/CD Amd 1,https://www.iso.org/standard/74285.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 4570:2002,https://www.iso.org/standard/30078.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO 9413:2012,https://www.iso.org/standard/46219.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO 9413:2012/Amd 1:2012,https://www.iso.org/standard/61850.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO/DIS 9413,https://www.iso.org/standard/72626.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO 13326:1998,https://www.iso.org/standard/21715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 14960-1:2014,https://www.iso.org/standard/61839.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO 14960-2:2014,https://www.iso.org/standard/61840.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO/TR 16377:2012,https://www.iso.org/standard/56554.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 16392:2017,https://www.iso.org/standard/62126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 17464:2016,https://www.iso.org/standard/59841.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 17832:2009,https://www.iso.org/standard/38499.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO/FDIS 17832,https://www.iso.org/standard/69351.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 18885-1:2017,https://www.iso.org/standard/63661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO/DIS 18885-2,https://www.iso.org/standard/65475.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO/CD 18885-3,https://www.iso.org/standard/66938.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO 20562:2014,https://www.iso.org/standard/61605.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO/DIS 20909,https://www.iso.org/standard/69435.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/DIS 20910,https://www.iso.org/standard/69436.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/TS 21396:2017,https://www.iso.org/standard/70858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/DTS 22638,https://www.iso.org/standard/73634.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/DTS 22640,https://www.iso.org/standard/73636.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO/DTS 22687,https://www.iso.org/standard/73681.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 45,https://www.iso.org/contents/data/committee/04/86/48668/x/catalogue/ -ISO 28580:2009,https://www.iso.org/standard/44770.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/FDIS 28580,https://www.iso.org/standard/67531.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/TR 29846:2008,https://www.iso.org/standard/45706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 4000-1:2015,https://www.iso.org/standard/63769.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO 4209-1:2001,https://www.iso.org/standard/31376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 4,https://www.iso.org/contents/data/committee/04/77/47712/x/catalogue/ -ISO 4249-1:1985,https://www.iso.org/standard/10049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 4249-2:1990,https://www.iso.org/standard/10052.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 5751-1:2010,https://www.iso.org/standard/51734.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 5751-2:2010,https://www.iso.org/standard/51735.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 5751-3:2010,https://www.iso.org/standard/51736.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 5775-1:2014,https://www.iso.org/standard/56559.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 6054-1:1994,https://www.iso.org/standard/2673.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 9112:2008,https://www.iso.org/standard/45652.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 4,https://www.iso.org/contents/data/committee/04/77/47712/x/catalogue/ -ISO 10191:2010,https://www.iso.org/standard/55324.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO 10231:2003,https://www.iso.org/standard/37790.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 10231:2003/Amd 1:2015,https://www.iso.org/standard/61774.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 10454:1993,https://www.iso.org/standard/18516.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 4,https://www.iso.org/contents/data/committee/04/77/47712/x/catalogue/ -ISO 13325:2003,https://www.iso.org/standard/35528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/CD 13325,https://www.iso.org/standard/71034.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 13328:2000,https://www.iso.org/standard/21717.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 15222:2011,https://www.iso.org/standard/55388.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 16992:2010,https://www.iso.org/standard/52162.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO/FDIS 16992,https://www.iso.org/standard/69687.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO 17269:2000,https://www.iso.org/standard/31325.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO 18106:2016,https://www.iso.org/standard/61451.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 18164:2005,https://www.iso.org/standard/33328.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 19940:2017,https://www.iso.org/standard/66638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 3,https://www.iso.org/contents/data/committee/04/76/47686/x/catalogue/ -ISO/CD 21634,https://www.iso.org/standard/71298.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 21750:2006,https://www.iso.org/standard/35983.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO/NP 21750,https://www.iso.org/standard/71230.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 22/SC 33,https://www.iso.org/contents/data/committee/53/83/5383785/x/catalogue/ -ISO 23671:2015,https://www.iso.org/standard/65530.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO/NP 23671,https://www.iso.org/standard/73916.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 31,https://www.iso.org/contents/data/committee/04/76/47670/x/catalogue/ -ISO 29802:2017,https://www.iso.org/standard/66255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 10,https://www.iso.org/contents/data/committee/04/77/47788/x/catalogue/ -ISO 3324-1:2013,https://www.iso.org/standard/54126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 8,https://www.iso.org/contents/data/committee/04/77/47766/x/catalogue/ -ISO 3324-2:2013,https://www.iso.org/standard/54125.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 8,https://www.iso.org/contents/data/committee/04/77/47766/x/catalogue/ -ISO 7295:1988,https://www.iso.org/standard/13955.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO 7295:1988/Amd 1:2014,https://www.iso.org/standard/61606.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO 9475:1994,https://www.iso.org/standard/17204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 9,https://www.iso.org/contents/data/committee/04/77/47768/x/catalogue/ -ISO 4251-1:2017,https://www.iso.org/standard/63452.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO/CD 4251-1,https://www.iso.org/standard/73654.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 4251-2:2017,https://www.iso.org/standard/63453.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO/CD 4251-2,https://www.iso.org/standard/73655.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 4251-4:2010,https://www.iso.org/standard/46502.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 4251-5:1992,https://www.iso.org/standard/10080.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 4251-5:1992/Amd 1:1998,https://www.iso.org/standard/26795.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 7867-1:2005,https://www.iso.org/standard/39039.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO/DIS 7867-1,https://www.iso.org/standard/63459.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 7867-2:2005,https://www.iso.org/standard/39040.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 7867-2:2005/Amd 1:2010,https://www.iso.org/standard/46505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO/DIS 7867-2,https://www.iso.org/standard/63460.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 8664:2005,https://www.iso.org/standard/39041.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 8664:2005/Amd 1:2010,https://www.iso.org/standard/46503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO/DIS 8664,https://www.iso.org/standard/69233.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 11795:1997,https://www.iso.org/standard/2693.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 11795:1997/Amd 1:2010,https://www.iso.org/standard/46504.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO/DIS 11795,https://www.iso.org/standard/73299.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 18804:2017,https://www.iso.org/standard/63454.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 18805:2017,https://www.iso.org/standard/63455.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO/CD 18807,https://www.iso.org/standard/73763.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 31/SC 5,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO/DIS 18807,https://www.iso.org/standard/63457.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/77/47728/x/catalogue/ -ISO 3739-1:2007,https://www.iso.org/standard/39042.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO/NP 3739-1,https://www.iso.org/standard/73652.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO 3739-2:1992,https://www.iso.org/standard/9229.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO 4250-1:2017,https://www.iso.org/standard/69614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 6,https://www.iso.org/contents/data/committee/04/77/47740/x/catalogue/ -ISO 4250-2:2017,https://www.iso.org/standard/69615.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 6,https://www.iso.org/contents/data/committee/04/77/47740/x/catalogue/ -ISO 10499-1:1991/Cor 1:1997,https://www.iso.org/standard/29922.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO 10499-1:1991,https://www.iso.org/standard/18568.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO/CD 10499-1,https://www.iso.org/standard/73653.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO 10499-2:1998,https://www.iso.org/standard/2684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO 10500:1991,https://www.iso.org/standard/18569.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 31/SC 7,https://www.iso.org/contents/data/committee/04/77/47756/x/catalogue/ -ISO 10571:2016,https://www.iso.org/standard/65217.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 31/SC 6,https://www.iso.org/contents/data/committee/04/77/47740/x/catalogue/ -ISO 13442:2004,https://www.iso.org/standard/37524.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 6,https://www.iso.org/contents/data/committee/04/77/47740/x/catalogue/ -ISO 4578:1997,https://www.iso.org/standard/26721.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 4587:2003,https://www.iso.org/standard/34852.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 6237:2017,https://www.iso.org/standard/72817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 6238:2001,https://www.iso.org/standard/29784.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/DIS 6238,https://www.iso.org/standard/72967.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 7387-1:1983,https://www.iso.org/standard/14089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 8510-2:2006,https://www.iso.org/standard/43775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 9142:2003,https://www.iso.org/standard/36282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 9311-1:2005,https://www.iso.org/standard/34448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9311-2:2011,https://www.iso.org/standard/51920.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9311-3:2005,https://www.iso.org/standard/34450.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9653:1998,https://www.iso.org/standard/28297.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 9664:1993,https://www.iso.org/standard/17510.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 9665:1998,https://www.iso.org/standard/26847.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 10123:2013,https://www.iso.org/standard/60413.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 10354:1992,https://www.iso.org/standard/18411.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 10363:1992,https://www.iso.org/standard/18423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 10364:2015,https://www.iso.org/standard/60414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 10365:1992,https://www.iso.org/standard/18425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 10964:1993,https://www.iso.org/standard/18936.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11003-1:2001,https://www.iso.org/standard/31289.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11003-2:2001,https://www.iso.org/standard/30095.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11339:2010,https://www.iso.org/standard/52890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 11343:2003,https://www.iso.org/standard/34855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 13007-1:2014,https://www.iso.org/standard/60880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13007-2:2013,https://www.iso.org/standard/60881.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13445:2003,https://www.iso.org/standard/34853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 14448:2016,https://www.iso.org/standard/54760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 14615:1997,https://www.iso.org/standard/24971.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 14676:1997,https://www.iso.org/standard/25222.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 14678:2005,https://www.iso.org/standard/41957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 14679:1997,https://www.iso.org/standard/25226.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15107:1998,https://www.iso.org/standard/25922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15108:1998,https://www.iso.org/standard/25923.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15109:1998,https://www.iso.org/standard/25924.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15166-1:1998,https://www.iso.org/standard/26101.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15166-2:2000,https://www.iso.org/standard/28758.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15509:2001,https://www.iso.org/standard/27332.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15605:2000,https://www.iso.org/standard/28380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 15908:2002,https://www.iso.org/standard/29503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 16525-1:2014,https://www.iso.org/standard/56915.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 16525-2:2014,https://www.iso.org/standard/56917.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 16525-3:2014,https://www.iso.org/standard/56918.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 16525-4:2014,https://www.iso.org/standard/59280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 16525-5:2014,https://www.iso.org/standard/59282.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 16525-6:2014,https://www.iso.org/standard/59284.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 16525-7:2014,https://www.iso.org/standard/59285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 16525-8:2014,https://www.iso.org/standard/59286.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 16525-9:2014,https://www.iso.org/standard/59287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 17087:2006,https://www.iso.org/standard/32864.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 17178:2013,https://www.iso.org/standard/59256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 17194:2007,https://www.iso.org/standard/38281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 17212:2012,https://www.iso.org/standard/50596.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19095-1:2015,https://www.iso.org/standard/63944.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19095-2:2015,https://www.iso.org/standard/63945.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19095-3:2015,https://www.iso.org/standard/63946.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19095-4:2015,https://www.iso.org/standard/64723.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19209:2017,https://www.iso.org/standard/64000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19210:2017,https://www.iso.org/standard/64001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 19212:2006,https://www.iso.org/standard/38974.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 21368:2005,https://www.iso.org/standard/34493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/CD 21760-1,https://www.iso.org/standard/71562.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/CD 21760-2,https://www.iso.org/standard/71637.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/CD 22631,https://www.iso.org/standard/73625.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/CD 22632,https://www.iso.org/standard/73626.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/CD 22633,https://www.iso.org/standard/73627.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/CD 22635,https://www.iso.org/standard/73628.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/CD 22637,https://www.iso.org/standard/73630.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 25179:2010,https://www.iso.org/standard/42787.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/DIS 25179,https://www.iso.org/standard/70310.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 25217:2009,https://www.iso.org/standard/42797.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO 26842-1:2013,https://www.iso.org/standard/56800.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 26842-2:2013,https://www.iso.org/standard/56801.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 29862:2007,https://www.iso.org/standard/45716.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/FDIS 29862,https://www.iso.org/standard/70311.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 29863:2007,https://www.iso.org/standard/45717.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/FDIS 29863,https://www.iso.org/standard/70312.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 29864:2007,https://www.iso.org/standard/45718.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO/FDIS 29864,https://www.iso.org/standard/70313.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 61/SC 11,https://www.iso.org/contents/data/committee/04/94/49424/x/catalogue/ -ISO 483:2005,https://www.iso.org/standard/33346.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 6,https://www.iso.org/contents/data/committee/04/93/49352/x/catalogue/ -ISO 5893:2002,https://www.iso.org/standard/35827.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 2,https://www.iso.org/contents/data/committee/04/87/48704/x/catalogue/ -ISO 13802:2015,https://www.iso.org/standard/60017.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61/SC 2,https://www.iso.org/contents/data/committee/04/92/49272/x/catalogue/ -ISO/DIS 20430.2,https://www.iso.org/standard/68000.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 270,https://www.iso.org/contents/data/committee/66/73/667321/x/catalogue/ -ISO 4046-1:2016,https://www.iso.org/standard/69829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-3:2016,https://www.iso.org/standard/69832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4094:2017,https://www.iso.org/standard/66855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 187:1990,https://www.iso.org/standard/4037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 302:2015,https://www.iso.org/standard/66533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 638:2008,https://www.iso.org/standard/42267.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/WD 638,https://www.iso.org/standard/72328.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 692:1982,https://www.iso.org/standard/4890.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 699:2015,https://www.iso.org/standard/66534.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 776:2011,https://www.iso.org/standard/52672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 801-1:1994,https://www.iso.org/standard/5143.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 801-2:1994,https://www.iso.org/standard/5145.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 801-3:1994,https://www.iso.org/standard/5146.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 1762:2015,https://www.iso.org/standard/66537.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/CD 1762,https://www.iso.org/standard/73414.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2469:2014,https://www.iso.org/standard/51631.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2470-1:2016,https://www.iso.org/standard/69090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2470-2:2008,https://www.iso.org/standard/38053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 3260:2015,https://www.iso.org/standard/66535.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 3688:1999,https://www.iso.org/standard/9155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-1:2016,https://www.iso.org/standard/69829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-2:2016,https://www.iso.org/standard/69831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-5:2016,https://www.iso.org/standard/69834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4094:2017,https://www.iso.org/standard/66855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4119:1995,https://www.iso.org/standard/1493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5263-1:2004,https://www.iso.org/standard/37893.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5263-2:2004,https://www.iso.org/standard/37894.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5263-3:2004,https://www.iso.org/standard/37895.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5264-1:1979,https://www.iso.org/standard/11258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5264-2:2011,https://www.iso.org/standard/53432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5267-1:1999,https://www.iso.org/standard/30933.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5267-1:1999/Cor 1:2001,https://www.iso.org/standard/35229.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5267-2:2001,https://www.iso.org/standard/26707.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5269-1:2005,https://www.iso.org/standard/39340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5269-2:2004,https://www.iso.org/standard/39341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5269-3:2008,https://www.iso.org/standard/42775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5270:2012,https://www.iso.org/standard/56178.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5350-1:2006,https://www.iso.org/standard/39716.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5350-2:2006,https://www.iso.org/standard/39717.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5350-3:2007,https://www.iso.org/standard/39993.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5350-4:2006,https://www.iso.org/standard/39994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5351:2010,https://www.iso.org/standard/51093.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 6587:1992,https://www.iso.org/standard/12993.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 6588-1:2012,https://www.iso.org/standard/59783.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 6588-2:2012,https://www.iso.org/standard/59784.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 7213:1981,https://www.iso.org/standard/13848.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 8784-1:2014,https://www.iso.org/standard/53064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 9184-1:1990,https://www.iso.org/standard/16802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-2:1990,https://www.iso.org/standard/16803.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-3:1990,https://www.iso.org/standard/16804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-4:1990,https://www.iso.org/standard/16805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-5:1990,https://www.iso.org/standard/16806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-6:1994,https://www.iso.org/standard/16807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-7:1994,https://www.iso.org/standard/16808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9197:2016,https://www.iso.org/standard/69091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9198:2001,https://www.iso.org/standard/31629.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9416:2017,https://www.iso.org/standard/69093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 10376:2011,https://www.iso.org/standard/45966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/TR 10688:2015,https://www.iso.org/standard/63059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 10775:2013,https://www.iso.org/standard/63060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/TR 11371:2013,https://www.iso.org/standard/50524.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11480:2017,https://www.iso.org/standard/69094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 12830:2011,https://www.iso.org/standard/51848.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/CD 12830,https://www.iso.org/standard/73535.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 14436:2010,https://www.iso.org/standard/54750.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 14453:2014,https://www.iso.org/standard/60512.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 14487:1997,https://www.iso.org/standard/24449.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 15318:1999,https://www.iso.org/standard/27227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 15320:2011,https://www.iso.org/standard/43635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 15360-1:2000,https://www.iso.org/standard/27378.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 15360-2:2015,https://www.iso.org/standard/62988.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 15361:2000,https://www.iso.org/standard/27379.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 16065-1:2014,https://www.iso.org/standard/60368.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 16065-2:2014,https://www.iso.org/standard/60375.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 17812:2007,https://www.iso.org/standard/43747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/DIS 21400,https://www.iso.org/standard/70861.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/CD 21993,https://www.iso.org/standard/72340.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 22754:2008,https://www.iso.org/standard/36461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 23713:2005,https://www.iso.org/standard/36943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 23714:2014,https://www.iso.org/standard/60371.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/TR 24498:2006,https://www.iso.org/standard/42268.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/WD TR 24498,https://www.iso.org/standard/66539.html,20.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/TR 25477:2008,https://www.iso.org/standard/42948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 29681:2009,https://www.iso.org/standard/42776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 186:2002,https://www.iso.org/standard/34233.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 187:1990,https://www.iso.org/standard/4037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 217:2013,https://www.iso.org/standard/63056.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 287:2017,https://www.iso.org/standard/69063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 534:2011,https://www.iso.org/standard/53060.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 535:2014,https://www.iso.org/standard/61486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 536:2012,https://www.iso.org/standard/60352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 638:2008,https://www.iso.org/standard/42267.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/WD 638,https://www.iso.org/standard/72328.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 1924-2:2008,https://www.iso.org/standard/41397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 1924-3:2005,https://www.iso.org/standard/32206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 1974:2012,https://www.iso.org/standard/52430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 2144:2015,https://www.iso.org/standard/66536.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/CD 2144,https://www.iso.org/standard/73415.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2469:2014,https://www.iso.org/standard/51631.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2470-1:2016,https://www.iso.org/standard/69090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2470-2:2008,https://www.iso.org/standard/38053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2471:2008,https://www.iso.org/standard/39771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2493-1:2010,https://www.iso.org/standard/51696.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 2493-2:2011,https://www.iso.org/standard/52429.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 2528:2017,https://www.iso.org/standard/72382.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 2758:2014,https://www.iso.org/standard/61487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 2759:2014,https://www.iso.org/standard/61488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3036:1975,https://www.iso.org/standard/8122.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3689:1983,https://www.iso.org/standard/9157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3781:2011,https://www.iso.org/standard/56090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3783:2006,https://www.iso.org/standard/31695.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 4046-1:2016,https://www.iso.org/standard/69829.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-4:2016,https://www.iso.org/standard/69833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4046-5:2016,https://www.iso.org/standard/69834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 4094:2017,https://www.iso.org/standard/66855.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5626:1993,https://www.iso.org/standard/11700.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5627:1995,https://www.iso.org/standard/20129.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5627:1995/Cor 1:2002,https://www.iso.org/standard/36977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5628:2012,https://www.iso.org/standard/51264.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5629:2017,https://www.iso.org/standard/69095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5630-1:1991,https://www.iso.org/standard/11709.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5630-3:1996,https://www.iso.org/standard/23402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5630-4:1986,https://www.iso.org/standard/11712.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5630-5:2008,https://www.iso.org/standard/37577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5630-6:2009,https://www.iso.org/standard/42051.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5630-7:2014,https://www.iso.org/standard/37576.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5631-1:2015,https://www.iso.org/standard/66538.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5631-2:2015,https://www.iso.org/standard/67155.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5631-3:2015,https://www.iso.org/standard/67156.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 5633:1983,https://www.iso.org/standard/11715.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5635:1978,https://www.iso.org/standard/11717.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5636-3:2013,https://www.iso.org/standard/52431.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5636-4:2013,https://www.iso.org/standard/53061.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5636-5:2013,https://www.iso.org/standard/53062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5636-6:2015,https://www.iso.org/standard/55639.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5637:1989,https://www.iso.org/standard/11726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5638:1978,https://www.iso.org/standard/11727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 5647:1990,https://www.iso.org/standard/11731.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 6587:1992,https://www.iso.org/standard/12993.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 6588-1:2012,https://www.iso.org/standard/59783.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 6588-2:2012,https://www.iso.org/standard/59784.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 8226-1:1994,https://www.iso.org/standard/15327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 8226-2:1990,https://www.iso.org/standard/15328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 8254-1:2009,https://www.iso.org/standard/41605.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 8254-2:2016,https://www.iso.org/standard/66531.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 8254-3:2016,https://www.iso.org/standard/66532.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 8784-1:2014,https://www.iso.org/standard/53064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 8787:1986,https://www.iso.org/standard/16211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 8791-1:1986,https://www.iso.org/standard/16215.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 8791-2:2013,https://www.iso.org/standard/51265.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 8791-3:2017,https://www.iso.org/standard/69064.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 8791-4:2007,https://www.iso.org/standard/38049.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 9184-1:1990,https://www.iso.org/standard/16802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-2:1990,https://www.iso.org/standard/16803.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-3:1990,https://www.iso.org/standard/16804.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-4:1990,https://www.iso.org/standard/16805.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-5:1990,https://www.iso.org/standard/16806.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-6:1994,https://www.iso.org/standard/16807.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9184-7:1994,https://www.iso.org/standard/16808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9197:2016,https://www.iso.org/standard/69091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9198:2001,https://www.iso.org/standard/31629.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9416:2017,https://www.iso.org/standard/69093.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 9706:1994,https://www.iso.org/standard/17562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 9895:2008,https://www.iso.org/standard/41400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 9932:1990,https://www.iso.org/standard/17826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO/TR 10688:2015,https://www.iso.org/standard/63059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 10716:1994,https://www.iso.org/standard/18809.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 10775:2013,https://www.iso.org/standard/63060.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-1:1994,https://www.iso.org/standard/1295.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-2:1994,https://www.iso.org/standard/1655.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-3:1994,https://www.iso.org/standard/1637.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-4:2016,https://www.iso.org/standard/65180.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-5:2016,https://www.iso.org/standard/69089.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-6:2005,https://www.iso.org/standard/36453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-7:2011,https://www.iso.org/standard/55076.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-8:2017,https://www.iso.org/standard/72342.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11093-9:2006,https://www.iso.org/standard/37418.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11108:1996,https://www.iso.org/standard/1708.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 11475:2017,https://www.iso.org/standard/63614.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11476:2016,https://www.iso.org/standard/63597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11480:2017,https://www.iso.org/standard/69094.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 11556:2005,https://www.iso.org/standard/41346.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12192:2011,https://www.iso.org/standard/51263.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-1:2011,https://www.iso.org/standard/53422.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO/DIS 12625-1,https://www.iso.org/standard/72524.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-3:2014,https://www.iso.org/standard/62536.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-4:2016,https://www.iso.org/standard/66469.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-5:2016,https://www.iso.org/standard/66471.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-6:2016,https://www.iso.org/standard/66472.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-7:2014,https://www.iso.org/standard/57834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-8:2010,https://www.iso.org/standard/53425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-9:2015,https://www.iso.org/standard/63610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-11:2012,https://www.iso.org/standard/57924.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-12:2010,https://www.iso.org/standard/45620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-15:2015,https://www.iso.org/standard/63393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12625-16:2015,https://www.iso.org/standard/63398.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12830:2011,https://www.iso.org/standard/51848.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/CD 12830,https://www.iso.org/standard/73535.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 13542:2006,https://www.iso.org/standard/36633.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 13821:2002,https://www.iso.org/standard/20672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 14968:1999,https://www.iso.org/standard/26114.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 15318:1999,https://www.iso.org/standard/27227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 15320:2011,https://www.iso.org/standard/43635.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 15359:1999,https://www.iso.org/standard/27374.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 15754:2009,https://www.iso.org/standard/37609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 15755:1999,https://www.iso.org/standard/28873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 16260:2016,https://www.iso.org/standard/56038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 16532-1:2008,https://www.iso.org/standard/37980.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 16532-2:2007,https://www.iso.org/standard/40042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 16532-3:2010,https://www.iso.org/standard/46054.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 16945:2014,https://www.iso.org/standard/57983.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 17812:2007,https://www.iso.org/standard/43747.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/TS 17958:2013,https://www.iso.org/standard/37608.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 18522:2016,https://www.iso.org/standard/62754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/TS 20460:2015,https://www.iso.org/standard/68105.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 20494:2017,https://www.iso.org/standard/68211.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO/CD 21993,https://www.iso.org/standard/72340.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 22414:2004,https://www.iso.org/standard/36216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 22754:2008,https://www.iso.org/standard/36461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 22891:2013,https://www.iso.org/standard/60965.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/TR 24498:2006,https://www.iso.org/standard/42268.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/WD TR 24498,https://www.iso.org/standard/66539.html,20.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/TR 25477:2008,https://www.iso.org/standard/42948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO/CD 21993,https://www.iso.org/standard/72340.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 216:2007,https://www.iso.org/standard/36631.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 838:1974,https://www.iso.org/standard/5207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6,https://www.iso.org/contents/data/committee/04/56/45674/x/catalogue/ -ISO 2784:1974,https://www.iso.org/standard/7769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/IEC JTC 1,https://www.iso.org/contents/data/committee/04/50/45020/x/catalogue/ -ISO 22414:2004,https://www.iso.org/standard/36216.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3034:2011,https://www.iso.org/standard/51266.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3035:2011,https://www.iso.org/standard/51267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3037:2013,https://www.iso.org/standard/60354.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3038:1975,https://www.iso.org/standard/8124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 3039:2010,https://www.iso.org/standard/45688.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 7263:2011,https://www.iso.org/standard/56171.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO/DIS 7263-1,https://www.iso.org/standard/72431.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO/DIS 7263-2,https://www.iso.org/standard/72432.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 13820:2014,https://www.iso.org/standard/62183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 6/SC 2,https://www.iso.org/contents/data/committee/04/56/45694/x/catalogue/ -ISO 12944-1:2017,https://www.iso.org/standard/64833.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 12944-2:2017,https://www.iso.org/standard/64834.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 12944-3:2017,https://www.iso.org/standard/64835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 12944-5,https://www.iso.org/standard/57319.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 12944-5:2007,https://www.iso.org/standard/41862.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 12944-6:2018,https://www.iso.org/standard/51378.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 12944-7:2017,https://www.iso.org/standard/64837.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 12944-8:2017,https://www.iso.org/standard/64838.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 15741:2016,https://www.iso.org/standard/63629.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 16276-1:2007,https://www.iso.org/standard/37829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 16276-2:2007,https://www.iso.org/standard/37830.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 19840:2012,https://www.iso.org/standard/59523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 29601:2011,https://www.iso.org/standard/50579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 1513:2010,https://www.iso.org/standard/50490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 1514:2016,https://www.iso.org/standard/62347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 1516:2002,https://www.iso.org/standard/28656.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1518-1:2011,https://www.iso.org/standard/59590.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/NP 1518-1,https://www.iso.org/standard/73853.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 1518-2:2011,https://www.iso.org/standard/59596.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/NP 1518-2,https://www.iso.org/standard/73855.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 1519:2011,https://www.iso.org/standard/50485.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 1520:2006,https://www.iso.org/standard/40923.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 1522:2006,https://www.iso.org/standard/39404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 1523:2002,https://www.iso.org/standard/26981.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 1524:2013,https://www.iso.org/standard/56806.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2409:2013,https://www.iso.org/standard/51923.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2431:2011,https://www.iso.org/standard/51936.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/NP 2431,https://www.iso.org/standard/73851.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2808:2007,https://www.iso.org/standard/37486.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/NP 2808,https://www.iso.org/standard/71583.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2810:2004,https://www.iso.org/standard/34725.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2811-1:2016,https://www.iso.org/standard/66946.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2811-2:2011,https://www.iso.org/standard/50494.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2811-3:2011,https://www.iso.org/standard/50495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2811-4:2011,https://www.iso.org/standard/50496.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2812-1:2017,https://www.iso.org/standard/71584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2812-2:2007,https://www.iso.org/standard/39405.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 2812-2,https://www.iso.org/standard/71585.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2812-3:2012,https://www.iso.org/standard/56811.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2812-4:2017,https://www.iso.org/standard/71586.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2812-5:2007,https://www.iso.org/standard/37485.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 2812-5,https://www.iso.org/standard/71587.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2813:2014,https://www.iso.org/standard/56807.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/NP 2813,https://www.iso.org/standard/72123.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2815:2003,https://www.iso.org/standard/30979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2884-1:1999,https://www.iso.org/standard/26991.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 2884-2:2003,https://www.iso.org/standard/31513.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3231:1993,https://www.iso.org/standard/8441.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 156,https://www.iso.org/contents/data/committee/05/32/53264/x/catalogue/ -ISO 3233-1:2013,https://www.iso.org/standard/51937.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3233-2:2014,https://www.iso.org/standard/55331.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/NP 3233-2,https://www.iso.org/standard/73852.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3233-3:2015,https://www.iso.org/standard/62348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3248:2016,https://www.iso.org/standard/64818.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3251:2008,https://www.iso.org/standard/44649.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/NP 3251,https://www.iso.org/standard/73848.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3270:1984,https://www.iso.org/standard/8498.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3668:2017,https://www.iso.org/standard/64819.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3679:2015,https://www.iso.org/standard/61924.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 28,https://www.iso.org/contents/data/committee/04/73/47356/x/catalogue/ -ISO 3856-1:1984,https://www.iso.org/standard/9422.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3856-2:1984,https://www.iso.org/standard/9424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3856-3:1984,https://www.iso.org/standard/9426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3856-4:1984,https://www.iso.org/standard/9428.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3856-5:1984,https://www.iso.org/standard/9430.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3856-6:1984,https://www.iso.org/standard/9432.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3856-7:1984,https://www.iso.org/standard/9433.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 4618:2014,https://www.iso.org/standard/56502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 4623-1:2000,https://www.iso.org/standard/28227.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 4623-1,https://www.iso.org/standard/71588.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4623-2:2016,https://www.iso.org/standard/64856.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4624:2016,https://www.iso.org/standard/62351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-1:2016,https://www.iso.org/standard/64877.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-2:2016,https://www.iso.org/standard/66399.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-3:2016,https://www.iso.org/standard/66400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-4:2016,https://www.iso.org/standard/66401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-5:2016,https://www.iso.org/standard/66402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-6:2011,https://www.iso.org/standard/51921.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-7:2016,https://www.iso.org/standard/66403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-8:2012,https://www.iso.org/standard/51942.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 4628-10:2016,https://www.iso.org/standard/66404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 6270-1:2017,https://www.iso.org/standard/64857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 6270-2:2017,https://www.iso.org/standard/64858.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 6270-3:2018,https://www.iso.org/standard/68835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 6272-1:2011,https://www.iso.org/standard/51922.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 6272-2:2011,https://www.iso.org/standard/50487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 6503:1984,https://www.iso.org/standard/12880.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 6504-1:1983,https://www.iso.org/standard/12882.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 6504-1,https://www.iso.org/standard/70902.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 6504-3:2006,https://www.iso.org/standard/39402.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/NP 6504-3,https://www.iso.org/standard/70903.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 6713:1984,https://www.iso.org/standard/13157.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 6860:2006,https://www.iso.org/standard/36934.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 7252:1984,https://www.iso.org/standard/13906.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 7783:2011,https://www.iso.org/standard/46283.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 7783,https://www.iso.org/standard/70904.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 7784-1:2016,https://www.iso.org/standard/62344.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 7784-2:2016,https://www.iso.org/standard/62345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 7784-3:2016,https://www.iso.org/standard/64796.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-1:1992,https://www.iso.org/standard/15200.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 8130-1,https://www.iso.org/standard/68393.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-2:1992,https://www.iso.org/standard/15201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-3:1992,https://www.iso.org/standard/15202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-4:1992,https://www.iso.org/standard/15203.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-4:1992/Cor 1:1993,https://www.iso.org/standard/22164.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-5:1992,https://www.iso.org/standard/15204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-6:1992,https://www.iso.org/standard/15205.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-6:1992/Amd 1:1998,https://www.iso.org/standard/29497.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-7:1992,https://www.iso.org/standard/15206.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 8130-7,https://www.iso.org/standard/68399.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-8:1994,https://www.iso.org/standard/15207.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-9:1992,https://www.iso.org/standard/15209.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-10:1998,https://www.iso.org/standard/22701.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-11:1997,https://www.iso.org/standard/22700.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 8130-11,https://www.iso.org/standard/68403.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-12:1998,https://www.iso.org/standard/22702.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 8130-12,https://www.iso.org/standard/68404.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-13:2001,https://www.iso.org/standard/30332.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 8130-13,https://www.iso.org/standard/68405.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 8130-14:2004,https://www.iso.org/standard/37855.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 8130-14,https://www.iso.org/standard/68406.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 9117-1:2009,https://www.iso.org/standard/52011.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 9117-2:2010,https://www.iso.org/standard/50486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 9117-3:2010,https://www.iso.org/standard/51943.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 9117-4:2012,https://www.iso.org/standard/55359.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 9117-5:2012,https://www.iso.org/standard/55360.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 9117-6:2012,https://www.iso.org/standard/56810.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 9514:2005,https://www.iso.org/standard/37490.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 10890:2010,https://www.iso.org/standard/46281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 11503:1995,https://www.iso.org/standard/19454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 11890-1:2007,https://www.iso.org/standard/41101.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 11890-2:2013,https://www.iso.org/standard/61298.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/NP 11890-2,https://www.iso.org/standard/72823.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 11997-1:2017,https://www.iso.org/standard/64859.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 11997-2:2013,https://www.iso.org/standard/56808.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 11998:2006,https://www.iso.org/standard/36953.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 12013-1:2012,https://www.iso.org/standard/51147.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 12013-2:2012,https://www.iso.org/standard/51148.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 12137:2011,https://www.iso.org/standard/59595.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 12944-9:2018,https://www.iso.org/standard/64832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 14,https://www.iso.org/contents/data/committee/04/80/48070/x/catalogue/ -ISO 13076:2012,https://www.iso.org/standard/55361.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 13129:2012,https://www.iso.org/standard/53050.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 13803:2014,https://www.iso.org/standard/56802.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15091:2012,https://www.iso.org/standard/55330.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15110:2017,https://www.iso.org/standard/66948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15181-1:2007,https://www.iso.org/standard/42867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15181-2:2007,https://www.iso.org/standard/42868.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15181-3:2007,https://www.iso.org/standard/39164.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15181-4:2008,https://www.iso.org/standard/26703.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15181-5:2008,https://www.iso.org/standard/40684.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15181-6:2012,https://www.iso.org/standard/51125.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15184:2012,https://www.iso.org/standard/55329.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15234:1999,https://www.iso.org/standard/26993.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15528:2013,https://www.iso.org/standard/56809.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15710:2002,https://www.iso.org/standard/28038.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 15711:2003,https://www.iso.org/standard/28039.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16053:2010,https://www.iso.org/standard/50492.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 16053,https://www.iso.org/standard/70859.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16474-1:2013,https://www.iso.org/standard/56803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16474-2:2013,https://www.iso.org/standard/56830.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16474-3:2013,https://www.iso.org/standard/56831.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16474-4:2013,https://www.iso.org/standard/56832.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16482-1:2013,https://www.iso.org/standard/56834.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 16482-2:2013,https://www.iso.org/standard/56835.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 16773-1:2016,https://www.iso.org/standard/64794.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16773-2:2016,https://www.iso.org/standard/64795.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16773-3:2016,https://www.iso.org/standard/62350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16773-4:2017,https://www.iso.org/standard/62343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16805:2003,https://www.iso.org/standard/30469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 16862:2003,https://www.iso.org/standard/31110.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16925:2014,https://www.iso.org/standard/57970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 16927:2014,https://www.iso.org/standard/57972.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 17132:2007,https://www.iso.org/standard/38230.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 17463:2014,https://www.iso.org/standard/59838.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 17872:2007,https://www.iso.org/standard/38508.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/NP 17872,https://www.iso.org/standard/71590.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 17895:2005,https://www.iso.org/standard/31620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 19334:2010,https://www.iso.org/standard/54541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/PRF TS 19392-1,https://www.iso.org/standard/72928.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/PRF TS 19392-2,https://www.iso.org/standard/72930.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/PRF TS 19392-3,https://www.iso.org/standard/72931.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19396-1:2017,https://www.iso.org/standard/64802.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19396-2:2017,https://www.iso.org/standard/64803.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/TS 19397:2015,https://www.iso.org/standard/64805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19399:2016,https://www.iso.org/standard/64806.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DTR 19402,https://www.iso.org/standard/64807.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 19403-1:2017,https://www.iso.org/standard/64808.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/FDIS 20266,https://www.iso.org/standard/67441.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 20566:2013,https://www.iso.org/standard/51945.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 20567-1:2017,https://www.iso.org/standard/64860.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 20567-2:2017,https://www.iso.org/standard/64861.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 20567-3:2012,https://www.iso.org/standard/55335.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 21227-1:2003,https://www.iso.org/standard/34439.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 21227-2:2006,https://www.iso.org/standard/34440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 21227-3:2007,https://www.iso.org/standard/34441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 21227-4:2008,https://www.iso.org/standard/44081.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DIS 21545,https://www.iso.org/standard/71052.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/CD 21546,https://www.iso.org/standard/71054.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/DTR 21555,https://www.iso.org/standard/71056.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO/CD 22969,https://www.iso.org/standard/74252.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 28199-1:2009,https://www.iso.org/standard/44530.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 28199-1:2009/Cor 1:2009,https://www.iso.org/standard/55501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 28199-2:2009,https://www.iso.org/standard/44531.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 28199-3:2009,https://www.iso.org/standard/44532.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3270:1984,https://www.iso.org/standard/8498.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 473:1982,https://www.iso.org/standard/4514.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/DIS 473,https://www.iso.org/standard/72912.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 510:1977,https://www.iso.org/standard/4568.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 591-1:2000,https://www.iso.org/standard/19997.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-1:1982,https://www.iso.org/standard/5076.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-2:1981,https://www.iso.org/standard/5078.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-3:2000,https://www.iso.org/standard/29655.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-4:1981,https://www.iso.org/standard/5080.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-5:1980,https://www.iso.org/standard/5081.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-7:2009,https://www.iso.org/standard/38754.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-8:2000,https://www.iso.org/standard/29656.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-9:1981,https://www.iso.org/standard/5084.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/DIS 787-9,https://www.iso.org/standard/74765.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-10:1993,https://www.iso.org/standard/5086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-11:1981,https://www.iso.org/standard/5087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-13:2002,https://www.iso.org/standard/36061.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/DIS 787-13,https://www.iso.org/standard/74767.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-14:2002,https://www.iso.org/standard/36103.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/DIS 787-14,https://www.iso.org/standard/74766.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-15:1986,https://www.iso.org/standard/5093.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/DIS 787-15,https://www.iso.org/standard/74768.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-16:1986,https://www.iso.org/standard/5094.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-17:2002,https://www.iso.org/standard/36104.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/DIS 787-17,https://www.iso.org/standard/74769.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-18:1983,https://www.iso.org/standard/5097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-19:1974,https://www.iso.org/standard/5098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-21:1979,https://www.iso.org/standard/5100.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-22:1980,https://www.iso.org/standard/5101.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-23:1979,https://www.iso.org/standard/5102.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-24:1985,https://www.iso.org/standard/5104.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 787-25:1993,https://www.iso.org/standard/5105.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/NP 787-25,https://www.iso.org/standard/73918.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/DIS 787-28,https://www.iso.org/standard/67667.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 788:1974,https://www.iso.org/standard/5107.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/CD 788,https://www.iso.org/standard/74770.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 1247:1974,https://www.iso.org/standard/5859.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 1247:1974/Amd 1:1982,https://www.iso.org/standard/5860.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/CD 1247,https://www.iso.org/standard/75151.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 1248:2006,https://www.iso.org/standard/38752.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 1248:2006/Cor 1:2007,https://www.iso.org/standard/50330.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 1248:2006/Cor 2:2008,https://www.iso.org/standard/52283.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 1249:1974,https://www.iso.org/standard/5863.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 1249:1974/Cor 1:1992,https://www.iso.org/standard/21392.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 2040:1972,https://www.iso.org/standard/6816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 2068:1972,https://www.iso.org/standard/6851.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 2495:1995,https://www.iso.org/standard/7419.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-1:1997,https://www.iso.org/standard/8477.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-2:1998,https://www.iso.org/standard/8478.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-3:1998,https://www.iso.org/standard/8479.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-4:1998,https://www.iso.org/standard/8480.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-5:1998,https://www.iso.org/standard/20339.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-6:1998,https://www.iso.org/standard/20340.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-7:1998,https://www.iso.org/standard/8481.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-8:1999,https://www.iso.org/standard/8482.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-9:1997,https://www.iso.org/standard/8483.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-10:2000,https://www.iso.org/standard/8484.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-11:2000,https://www.iso.org/standard/8486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-12:2001,https://www.iso.org/standard/23342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-13:1997,https://www.iso.org/standard/20341.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-14:2000,https://www.iso.org/standard/20342.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-15:2000,https://www.iso.org/standard/20343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-16:2000,https://www.iso.org/standard/32844.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-17:2000,https://www.iso.org/standard/32851.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-18:2000,https://www.iso.org/standard/32855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-19:2000,https://www.iso.org/standard/32961.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-20:2000,https://www.iso.org/standard/32962.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-21:2000,https://www.iso.org/standard/32963.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3262-22:2001,https://www.iso.org/standard/32956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3549:1995,https://www.iso.org/standard/8945.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 3711:1990,https://www.iso.org/standard/9188.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 4620:1986,https://www.iso.org/standard/10567.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 4621:1986,https://www.iso.org/standard/10568.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 6745:1990,https://www.iso.org/standard/13227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 7579:2009,https://www.iso.org/standard/45302.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8780-1:1990,https://www.iso.org/standard/16195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8780-2:1990,https://www.iso.org/standard/16196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8780-3:1990,https://www.iso.org/standard/16197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8780-4:1990,https://www.iso.org/standard/16198.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8780-5:1990,https://www.iso.org/standard/16199.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8780-6:1990,https://www.iso.org/standard/16200.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8781-1:1990,https://www.iso.org/standard/16201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8781-2:1990,https://www.iso.org/standard/16202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 8781-3:1990,https://www.iso.org/standard/16203.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 10601:2007,https://www.iso.org/standard/38753.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 14680-1:2000,https://www.iso.org/standard/25227.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 14680-2:2000,https://www.iso.org/standard/26986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 14680-3:2000,https://www.iso.org/standard/25228.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 18314-1:2015,https://www.iso.org/standard/62103.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 18314-2:2015,https://www.iso.org/standard/62104.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 18314-3:2015,https://www.iso.org/standard/62105.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 18451-1:2015,https://www.iso.org/standard/62478.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/CD 18451-1,https://www.iso.org/standard/74761.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 18451-2:2015,https://www.iso.org/standard/62479.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/DIS 18451-2,https://www.iso.org/standard/74762.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 18473-1:2015,https://www.iso.org/standard/62528.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 18473-2:2015,https://www.iso.org/standard/62529.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO/FDIS 18473-3,https://www.iso.org/standard/69454.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 23900-1:2015,https://www.iso.org/standard/61925.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 23900-2:2015,https://www.iso.org/standard/61926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 23900-3:2015,https://www.iso.org/standard/61927.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 23900-4:2015,https://www.iso.org/standard/61928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 23900-5:2015,https://www.iso.org/standard/61929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 23900-6:2015,https://www.iso.org/standard/61930.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 256,https://www.iso.org/contents/data/committee/61/81/618129/x/catalogue/ -ISO 150:2006,https://www.iso.org/standard/36908.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/DIS 150,https://www.iso.org/standard/71913.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 276:2002,https://www.iso.org/standard/28659.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 277:2002,https://www.iso.org/standard/28658.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 2114:2000,https://www.iso.org/standard/29827.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 12,https://www.iso.org/contents/data/committee/04/94/49442/x/catalogue/ -ISO 3251:2008,https://www.iso.org/standard/44649.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/NP 3251,https://www.iso.org/standard/73848.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35/SC 9,https://www.iso.org/contents/data/committee/04/79/47996/x/catalogue/ -ISO 3681:1996,https://www.iso.org/standard/9144.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/DIS 3681,https://www.iso.org/standard/73849.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 4625-1:2004,https://www.iso.org/standard/40498.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 4625-2:2004,https://www.iso.org/standard/34018.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 4629-1:2016,https://www.iso.org/standard/67213.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 4629-2:2016,https://www.iso.org/standard/63237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/DIS 4629-3,https://www.iso.org/standard/73523.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 4630:2015,https://www.iso.org/standard/63297.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 6271:2015,https://www.iso.org/standard/63300.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 6744-1:1999,https://www.iso.org/standard/2084.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 6744-2:1999,https://www.iso.org/standard/30073.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 6744-3:1999,https://www.iso.org/standard/30074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 6744-4:1999,https://www.iso.org/standard/30075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 7142:2007,https://www.iso.org/standard/44642.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 7143:2007,https://www.iso.org/standard/44647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 10283:2007,https://www.iso.org/standard/44862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 11668:1997,https://www.iso.org/standard/19592.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 11908:1996,https://www.iso.org/standard/20460.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 11909:2007,https://www.iso.org/standard/44646.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 13632:2012,https://www.iso.org/standard/54098.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 13885-1:2008,https://www.iso.org/standard/44648.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/NP 13885-1,https://www.iso.org/standard/73850.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 14446:1999,https://www.iso.org/standard/22507.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 15715:2003,https://www.iso.org/standard/28808.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 15880:2000,https://www.iso.org/standard/28999.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 16482-1:2013,https://www.iso.org/standard/56834.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 16482-2:2013,https://www.iso.org/standard/56835.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 16805:2003,https://www.iso.org/standard/30469.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 19334:2010,https://www.iso.org/standard/54541.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 4619:1998,https://www.iso.org/standard/20366.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO/DIS 4619,https://www.iso.org/standard/69629.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 8623:2015,https://www.iso.org/standard/63948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 35,https://www.iso.org/contents/data/committee/04/79/47962/x/catalogue/ -ISO 2834-1:2006,https://www.iso.org/standard/41292.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 2834-2:2015,https://www.iso.org/standard/65431.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 2834-3:2008,https://www.iso.org/standard/46431.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 2836:2004,https://www.iso.org/standard/37551.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 2846-1:2017,https://www.iso.org/standard/70905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 2846-2:2007,https://www.iso.org/standard/42124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12040:1997,https://www.iso.org/standard/2121.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12632:2015,https://www.iso.org/standard/32183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12634:2017,https://www.iso.org/standard/60585.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 12644:1996,https://www.iso.org/standard/1773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 130,https://www.iso.org/contents/data/committee/05/22/52214/x/catalogue/ -ISO 8028:2017,https://www.iso.org/standard/68035.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 6707-1:2017,https://www.iso.org/standard/72244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 12006-2:2015,https://www.iso.org/standard/61753.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO 12006-3:2007,https://www.iso.org/standard/38706.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/TS 12911:2012,https://www.iso.org/standard/52155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO 16354:2013,https://www.iso.org/standard/56434.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO 16757-1:2015,https://www.iso.org/standard/57613.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO 16757-2:2016,https://www.iso.org/standard/62080.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/DIS 19650-1.2,https://www.iso.org/standard/68078.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/DIS 19650-2.2,https://www.iso.org/standard/68080.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/CD 21597-1,https://www.iso.org/standard/74389.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO/CD 21597-2,https://www.iso.org/standard/74390.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO 22263:2008,https://www.iso.org/standard/40835.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO 29481-1:2016,https://www.iso.org/standard/60553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO 29481-2:2012,https://www.iso.org/standard/55691.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59/SC 13,https://www.iso.org/contents/data/committee/04/91/49180/x/catalogue/ -ISO 6707-2:2017,https://www.iso.org/standard/70040.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 6707-3:2017,https://www.iso.org/standard/66633.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 10845-1:2010,https://www.iso.org/standard/46190.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO 10845-2:2011,https://www.iso.org/standard/46191.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO 10845-3:2011,https://www.iso.org/standard/46192.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO/DIS 10845-3,https://www.iso.org/standard/72468.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO 10845-4:2011,https://www.iso.org/standard/46193.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO/DIS 10845-4,https://www.iso.org/standard/72469.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO 10845-5:2011,https://www.iso.org/standard/46194.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO 10845-6:2011,https://www.iso.org/standard/46195.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO 10845-7:2011,https://www.iso.org/standard/46196.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO 10845-8:2011,https://www.iso.org/standard/46197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 18,https://www.iso.org/contents/data/committee/57/26/5726139/x/catalogue/ -ISO 1006:1983,https://www.iso.org/standard/5470.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 1040:1983,https://www.iso.org/standard/5517.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 1791:1983,https://www.iso.org/standard/6423.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 1803:1997,https://www.iso.org/standard/6440.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 2848:1984,https://www.iso.org/standard/7846.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 6513:1982,https://www.iso.org/standard/12894.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 6514:1982,https://www.iso.org/standard/12895.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7737:1986,https://www.iso.org/standard/14575.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO/CD 21723,https://www.iso.org/standard/71507.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -IWA 9:2011,https://www.iso.org/standard/55328.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 6242-3:1992,https://www.iso.org/standard/12520.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 9836:2017,https://www.iso.org/standard/73149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 11855-1:2012,https://www.iso.org/standard/52407.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/NP 11855-1,https://www.iso.org/standard/74682.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 11855-2:2012,https://www.iso.org/standard/52408.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/NP 11855-2,https://www.iso.org/standard/74683.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 11855-3:2012,https://www.iso.org/standard/52409.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/NP 11855-3,https://www.iso.org/standard/74684.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 11855-4:2012,https://www.iso.org/standard/52410.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/NP 11855-4,https://www.iso.org/standard/74686.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 11855-5:2012,https://www.iso.org/standard/52411.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/NP 11855-5,https://www.iso.org/standard/74685.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 11855-6:2012,https://www.iso.org/standard/52412.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/DIS 11855-6,https://www.iso.org/standard/64999.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 11863:2011,https://www.iso.org/standard/50917.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO/TS 12720:2014,https://www.iso.org/standard/51654.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO 13153:2012,https://www.iso.org/standard/53401.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 13612-1:2014,https://www.iso.org/standard/54085.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 13612-2:2014,https://www.iso.org/standard/57943.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 13675:2013,https://www.iso.org/standard/54280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 15392:2008,https://www.iso.org/standard/40432.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO/CD 15392,https://www.iso.org/standard/69947.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO 15686-1:2011,https://www.iso.org/standard/45798.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO 15686-2:2012,https://www.iso.org/standard/51826.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO 15686-3:2002,https://www.iso.org/standard/29430.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO 15686-4:2014,https://www.iso.org/standard/59150.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO 15686-5:2017,https://www.iso.org/standard/61148.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO 15686-7:2017,https://www.iso.org/standard/61149.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO 15686-8:2008,https://www.iso.org/standard/39070.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO/TS 15686-9:2008,https://www.iso.org/standard/44858.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO 15686-10:2010,https://www.iso.org/standard/44859.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO/TR 15686-11:2014,https://www.iso.org/standard/57226.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 14,https://www.iso.org/contents/data/committee/04/91/49192/x/catalogue/ -ISO 15928-1:2015,https://www.iso.org/standard/62990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 15928-2:2015,https://www.iso.org/standard/62991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 15928-3:2015,https://www.iso.org/standard/62992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 15928-4:2017,https://www.iso.org/standard/72465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 15928-5:2013,https://www.iso.org/standard/52050.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 16484-1:2010,https://www.iso.org/standard/37300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16484-2:2004,https://www.iso.org/standard/29682.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/DIS 16484-2,https://www.iso.org/standard/68865.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16484-3:2005,https://www.iso.org/standard/37205.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16484-5:2017,https://www.iso.org/standard/71935.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16484-6:2014,https://www.iso.org/standard/63754.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/WD 16484-7,https://www.iso.org/standard/57929.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16745-1:2017,https://www.iso.org/standard/69969.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO 16745-2:2017,https://www.iso.org/standard/69970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO 16813:2006,https://www.iso.org/standard/41300.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/DIS 16813,https://www.iso.org/standard/62819.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16814:2008,https://www.iso.org/standard/42720.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16817:2017,https://www.iso.org/standard/61021.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 16818:2008,https://www.iso.org/standard/41301.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/TR 16822:2016,https://www.iso.org/standard/62748.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 17800:2017,https://www.iso.org/standard/71547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 18566-1:2017,https://www.iso.org/standard/62923.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 18566-2:2017,https://www.iso.org/standard/66414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 18566-3:2017,https://www.iso.org/standard/62924.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 18566-4:2017,https://www.iso.org/standard/62928.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/CD 18566-6,https://www.iso.org/standard/71963.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 19208:2016,https://www.iso.org/standard/63999.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO/CD 19454,https://www.iso.org/standard/64931.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO/CD 20887,https://www.iso.org/standard/69370.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO 21929-1:2011,https://www.iso.org/standard/46599.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO/TS 21929-2:2015,https://www.iso.org/standard/64987.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO/WD 21929-2,https://www.iso.org/standard/69971.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO 21930:2017,https://www.iso.org/standard/61694.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO 21931-1:2010,https://www.iso.org/standard/45559.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO/DIS 21931-2,https://www.iso.org/standard/61696.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO/TR 21932:2013,https://www.iso.org/standard/62888.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO/CD 22510,https://www.iso.org/standard/73364.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 23045:2008,https://www.iso.org/standard/45694.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 2603:2016,https://www.iso.org/standard/67065.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 4043:2016,https://www.iso.org/standard/67066.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 19026:2015,https://www.iso.org/standard/63759.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 173/SC 7,https://www.iso.org/contents/data/committee/60/85/608504/x/catalogue/ -ISO 20108:2017,https://www.iso.org/standard/67062.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 20109:2016,https://www.iso.org/standard/67063.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO/DIS 22259,https://www.iso.org/standard/72988.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 37/SC 5,https://www.iso.org/contents/data/committee/65/44/654486/x/catalogue/ -ISO 6946:2017,https://www.iso.org/standard/65708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 13786:2017,https://www.iso.org/standard/65711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 13788:2012,https://www.iso.org/standard/51615.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 21542:2011,https://www.iso.org/standard/50498.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 16,https://www.iso.org/contents/data/committee/29/19/291991/x/catalogue/ -ISO/NP 21542,https://www.iso.org/standard/71860.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 59/SC 16,https://www.iso.org/contents/data/committee/29/19/291991/x/catalogue/ -ISO 6512:1982,https://www.iso.org/standard/12893.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7361:1986,https://www.iso.org/standard/14050.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7892:1988,https://www.iso.org/standard/14844.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 13785-1:2002,https://www.iso.org/standard/27183.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 13785-2:2002,https://www.iso.org/standard/22928.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/NP 13785-2,https://www.iso.org/standard/72321.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 16283-3:2016,https://www.iso.org/standard/59748.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 12468-1:2013,https://www.iso.org/standard/59885.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 12468-2:2013,https://www.iso.org/standard/61317.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 12468-3:2014,https://www.iso.org/standard/52439.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 3880-1:1977,https://www.iso.org/standard/9486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 3881:1977,https://www.iso.org/standard/9487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 6511:1982,https://www.iso.org/standard/12892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 9882:1993,https://www.iso.org/standard/17762.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 9883:1993,https://www.iso.org/standard/17763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 16283-2:2015,https://www.iso.org/standard/59747.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/DIS 16283-2,https://www.iso.org/standard/73929.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/TS 22269:2005,https://www.iso.org/standard/34933.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 1804:1972,https://www.iso.org/standard/6443.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 3008:2007,https://www.iso.org/standard/45472.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/CD 3008-1,https://www.iso.org/standard/73900.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 3008-2:2017,https://www.iso.org/standard/69092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 3008-3:2016,https://www.iso.org/standard/66756.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 5925-1:2007,https://www.iso.org/standard/35264.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 5925-1:2007/Amd 1:2015,https://www.iso.org/standard/63725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 5925-2:2006,https://www.iso.org/standard/39802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 6442:2005,https://www.iso.org/standard/42855.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 6443:2005,https://www.iso.org/standard/42856.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 6444:2005,https://www.iso.org/standard/42857.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 6445:2005,https://www.iso.org/standard/42858.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 6612:1980,https://www.iso.org/standard/13024.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 6613:1980,https://www.iso.org/standard/13025.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 8248:1985,https://www.iso.org/standard/15352.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 8269:1985,https://www.iso.org/standard/15384.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 8270:1985,https://www.iso.org/standard/15385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 8271:2005,https://www.iso.org/standard/42859.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 8272:1985,https://www.iso.org/standard/15387.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 8273:1985,https://www.iso.org/standard/15388.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 8274:2005,https://www.iso.org/standard/42860.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 8275:1985,https://www.iso.org/standard/15390.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 9379:2005,https://www.iso.org/standard/42861.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 9380:1990,https://www.iso.org/standard/17072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 9381:2005,https://www.iso.org/standard/42862.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 10077-1:2017,https://www.iso.org/standard/67090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 10077-2:2017,https://www.iso.org/standard/64995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 12567-1:2010,https://www.iso.org/standard/50327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12567-1:2010/Cor 1:2010,https://www.iso.org/standard/57224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12567-2:2005,https://www.iso.org/standard/40053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 15099:2003,https://www.iso.org/standard/26425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15821:2007,https://www.iso.org/standard/41089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 15822:2007,https://www.iso.org/standard/41088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 162,https://www.iso.org/contents/data/committee/05/34/53444/x/catalogue/ -ISO 19467:2017,https://www.iso.org/standard/64989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/CD 24507,https://www.iso.org/standard/66907.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 2445:1972,https://www.iso.org/standard/7357.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 3447:1975,https://www.iso.org/standard/8772.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 6589:1983,https://www.iso.org/standard/12995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 2103:1986,https://www.iso.org/standard/6892.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 2394:2015,https://www.iso.org/standard/58036.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO 2633:1974,https://www.iso.org/standard/7623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 3010:2017,https://www.iso.org/standard/63217.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 3898:2013,https://www.iso.org/standard/55262.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 98/SC 1,https://www.iso.org/contents/data/committee/05/09/50936/x/catalogue/ -ISO 4354:2009,https://www.iso.org/standard/38882.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 4355:2013,https://www.iso.org/standard/56059.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 4356:1977,https://www.iso.org/standard/10233.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO/NP 4356,https://www.iso.org/standard/70805.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO 6243:1997,https://www.iso.org/standard/12522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 8930:1987,https://www.iso.org/standard/16459.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 98/SC 1,https://www.iso.org/contents/data/committee/05/09/50936/x/catalogue/ -ISO 9194:1987,https://www.iso.org/standard/16819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 10137:2007,https://www.iso.org/standard/37070.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO 11697:1995,https://www.iso.org/standard/19623.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 12494:2017,https://www.iso.org/standard/72443.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO/TR 12930:2014,https://www.iso.org/standard/52209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 13033:2013,https://www.iso.org/standard/52441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 13822:2010,https://www.iso.org/standard/46556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO 13823:2008,https://www.iso.org/standard/39021.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO 13824:2009,https://www.iso.org/standard/44140.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO/NP 13824,https://www.iso.org/standard/71005.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO 15928-1:2015,https://www.iso.org/standard/62990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 15928-2:2015,https://www.iso.org/standard/62991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 15928-3:2015,https://www.iso.org/standard/62992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 15928-4:2017,https://www.iso.org/standard/72465.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 15,https://www.iso.org/contents/data/committee/04/92/49206/x/catalogue/ -ISO 21650:2007,https://www.iso.org/standard/35955.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 22111:2007,https://www.iso.org/standard/36123.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO/NP 22111,https://www.iso.org/standard/68335.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO 23469:2005,https://www.iso.org/standard/36873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 10721-1:1997,https://www.iso.org/standard/18814.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 167/SC 1,https://www.iso.org/contents/data/committee/05/36/53622/x/catalogue/ -ISO 10721-2:1999,https://www.iso.org/standard/2348.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 167/SC 2,https://www.iso.org/contents/data/committee/05/36/53624/x/catalogue/ -ISO/DIS 17607,https://www.iso.org/standard/60137.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/36/53616/x/catalogue/ -ISO 6891:1983,https://www.iso.org/standard/13413.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 8375:2017,https://www.iso.org/standard/67532.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 8969:2011,https://www.iso.org/standard/46314.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/NP 8969,https://www.iso.org/standard/74545.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 8970:2010,https://www.iso.org/standard/50689.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/CD 8970,https://www.iso.org/standard/69944.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 9087:1998,https://www.iso.org/standard/16675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 10983:2014,https://www.iso.org/standard/57425.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 10984-1:2009,https://www.iso.org/standard/46343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 10984-2:2009,https://www.iso.org/standard/46344.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 12122-1:2014,https://www.iso.org/standard/61090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 12122-2:2014,https://www.iso.org/standard/61091.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 12122-3:2016,https://www.iso.org/standard/65524.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 12122-4:2017,https://www.iso.org/standard/65525.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/DIS 12122-5.2,https://www.iso.org/standard/65526.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 12122-6:2017,https://www.iso.org/standard/65527.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 12578:2016,https://www.iso.org/standard/61598.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 12579:2007,https://www.iso.org/standard/40842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 12580:2007,https://www.iso.org/standard/40843.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/NP 12580,https://www.iso.org/standard/72426.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/TR 12910:2010,https://www.iso.org/standard/52150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 13910:2014,https://www.iso.org/standard/52977.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 15206:2010,https://www.iso.org/standard/45869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 16507:2013,https://www.iso.org/standard/56899.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 16572:2008,https://www.iso.org/standard/37996.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 16598:2015,https://www.iso.org/standard/57243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 16670:2003,https://www.iso.org/standard/31041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/DIS 16696-1,https://www.iso.org/standard/62883.html,40.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 17754:2014,https://www.iso.org/standard/60457.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 18100:2017,https://www.iso.org/standard/61432.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/TR 18267:2013,https://www.iso.org/standard/61931.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 18324:2016,https://www.iso.org/standard/62165.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 18402:2016,https://www.iso.org/standard/62391.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 19049:2016,https://www.iso.org/standard/63827.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/PRF 19323,https://www.iso.org/standard/64613.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/DTR 19623,https://www.iso.org/standard/65522.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/DIS 19624,https://www.iso.org/standard/65528.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 19993:2007,https://www.iso.org/standard/39202.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/NP 19993,https://www.iso.org/standard/74543.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 20152-1:2010,https://www.iso.org/standard/39252.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/NP 20152-1,https://www.iso.org/standard/65523.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 20152-2:2011,https://www.iso.org/standard/51336.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/TR 20152-3:2013,https://www.iso.org/standard/62658.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/TR 21136:2017,https://www.iso.org/standard/69963.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/DTR 21141,https://www.iso.org/standard/69967.html,30.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 21581:2010,https://www.iso.org/standard/52265.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 22156:2004,https://www.iso.org/standard/36149.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/WD 22156,https://www.iso.org/standard/73831.html,20.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 22389-1:2010,https://www.iso.org/standard/50691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 22389-2:2012,https://www.iso.org/standard/55628.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/NP 22389-2,https://www.iso.org/standard/74542.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 22390:2010,https://www.iso.org/standard/50690.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/CD 22390,https://www.iso.org/standard/72425.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 22452:2011,https://www.iso.org/standard/45940.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO/NP 22452,https://www.iso.org/standard/74544.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 165,https://www.iso.org/contents/data/committee/05/35/53584/x/catalogue/ -ISO 9652-2:2000,https://www.iso.org/standard/32918.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 179/SC 1,https://www.iso.org/contents/data/committee/05/39/53992/x/catalogue/ -ISO 9652-4:2000,https://www.iso.org/standard/33843.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 179/SC 3,https://www.iso.org/contents/data/committee/05/40/54014/x/catalogue/ -ISO 9652-5:2000,https://www.iso.org/standard/32919.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 179/SC 3,https://www.iso.org/contents/data/committee/05/40/54014/x/catalogue/ -ISO 6934-1:1991,https://www.iso.org/standard/13453.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-2:1991,https://www.iso.org/standard/13454.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-3:1991,https://www.iso.org/standard/13455.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-4:1991,https://www.iso.org/standard/13456.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-4:1991/Cor 1:1992,https://www.iso.org/standard/20805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-4:1991/Cor 2:2000,https://www.iso.org/standard/33812.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/NP 6934-4,https://www.iso.org/standard/75086.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6934-5:1991,https://www.iso.org/standard/13457.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6935-1:2007,https://www.iso.org/standard/38618.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6935-2:2015,https://www.iso.org/standard/57860.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/CD 6935-2,https://www.iso.org/standard/72763.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6935-3:1992,https://www.iso.org/standard/13461.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 6935-3:1992/Cor 1:2000,https://www.iso.org/standard/33813.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 7728:1985,https://www.iso.org/standard/14564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7729:1985,https://www.iso.org/standard/14565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7844:1985,https://www.iso.org/standard/14765.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7845:1985,https://www.iso.org/standard/14766.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 10144:1991,https://www.iso.org/standard/18138.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO/DIS 10144,https://www.iso.org/standard/67969.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 10544:1992,https://www.iso.org/standard/18614.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 11082:1992,https://www.iso.org/standard/19069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 13270:2013,https://www.iso.org/standard/53580.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 13315-1:2012,https://www.iso.org/standard/53687.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 13315-2:2014,https://www.iso.org/standard/57645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 13315-4:2017,https://www.iso.org/standard/66540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO/CD 13315-6,https://www.iso.org/standard/67994.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO/DIS 13315-8.2,https://www.iso.org/standard/66541.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 14484:2013,https://www.iso.org/standard/54847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 14654:1999,https://www.iso.org/standard/25114.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 14655:1999,https://www.iso.org/standard/25115.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 14656:1999,https://www.iso.org/standard/25116.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 14657:2005,https://www.iso.org/standard/40756.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 16,https://www.iso.org/contents/data/committee/04/64/46436/x/catalogue/ -ISO 15673:2016,https://www.iso.org/standard/54095.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 5,https://www.iso.org/contents/data/committee/04/99/49922/x/catalogue/ -ISO 16204:2012,https://www.iso.org/standard/55862.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO/NP TR 16475,https://www.iso.org/standard/74723.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/TR 16475:2011,https://www.iso.org/standard/56814.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/TS 16774-1:2017,https://www.iso.org/standard/57687.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/TS 16774-2:2016,https://www.iso.org/standard/61477.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/TS 16774-3:2016,https://www.iso.org/standard/61478.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/TS 16774-4:2016,https://www.iso.org/standard/61479.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/TS 16774-5:2017,https://www.iso.org/standard/61480.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/TS 16774-6:2017,https://www.iso.org/standard/61481.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/FDIS 16836,https://www.iso.org/standard/68779.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO/FDIS 16837,https://www.iso.org/standard/68780.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO/FDIS 16838,https://www.iso.org/standard/68781.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 135/SC 9,https://www.iso.org/contents/data/committee/54/24/542404/x/catalogue/ -ISO 18319:2015,https://www.iso.org/standard/62134.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO/FDIS 18407,https://www.iso.org/standard/62412.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 71/SC 5,https://www.iso.org/contents/data/committee/04/99/49922/x/catalogue/ -ISO/DIS 18408,https://www.iso.org/standard/62413.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 71/SC 5,https://www.iso.org/contents/data/committee/04/99/49922/x/catalogue/ -ISO 19338:2014,https://www.iso.org/standard/60852.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 4,https://www.iso.org/contents/data/committee/04/99/49920/x/catalogue/ -ISO/DIS 20987,https://www.iso.org/standard/69686.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 71/SC 5,https://www.iso.org/contents/data/committee/04/99/49922/x/catalogue/ -ISO/CD 22502,https://www.iso.org/standard/73351.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 71/SC 5,https://www.iso.org/contents/data/committee/04/99/49922/x/catalogue/ -ISO 22966:2009,https://www.iso.org/standard/41262.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO 28841:2013,https://www.iso.org/standard/56095.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 71/SC 5,https://www.iso.org/contents/data/committee/04/99/49922/x/catalogue/ -ISO 28842:2013,https://www.iso.org/standard/56096.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 71/SC 5,https://www.iso.org/contents/data/committee/04/99/49922/x/catalogue/ -ISO 7900:2006,https://www.iso.org/standard/39138.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO 1716:2010,https://www.iso.org/standard/45780.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO/FDIS 1716,https://www.iso.org/standard/70177.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 12570:2000,https://www.iso.org/standard/2444.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12570:2000/Amd 1:2013,https://www.iso.org/standard/57974.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12570:2000/Amd 2,https://www.iso.org/standard/72409.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12571:2013,https://www.iso.org/standard/61388.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 15148:2002,https://www.iso.org/standard/26500.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 15148:2002/Amd 1:2016,https://www.iso.org/standard/67183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 24353:2008,https://www.iso.org/standard/42167.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 679:2009,https://www.iso.org/standard/45568.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 74,https://www.iso.org/contents/data/committee/05/00/50040/x/catalogue/ -ISO 863:2008,https://www.iso.org/standard/45570.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 74,https://www.iso.org/contents/data/committee/05/00/50040/x/catalogue/ -ISO 9597:2008,https://www.iso.org/standard/45571.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 74,https://www.iso.org/contents/data/committee/05/00/50040/x/catalogue/ -ISO 10426-1:2009,https://www.iso.org/standard/46188.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-1:2009/Cor 1:2010,https://www.iso.org/standard/56126.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-1:2009/Cor 2:2012,https://www.iso.org/standard/61621.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-2:2003,https://www.iso.org/standard/37866.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-2:2003/Amd 1:2005,https://www.iso.org/standard/41129.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-2:2003/Cor 1:2006,https://www.iso.org/standard/44339.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO/DIS 10426-2,https://www.iso.org/standard/55811.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-3:2003,https://www.iso.org/standard/35430.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO/DIS 10426-3,https://www.iso.org/standard/74630.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-4:2004,https://www.iso.org/standard/36236.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO/DIS 10426-4,https://www.iso.org/standard/74631.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-5:2004,https://www.iso.org/standard/38267.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO 10426-6:2008,https://www.iso.org/standard/41941.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 67/SC 3,https://www.iso.org/contents/data/committee/04/95/49562/x/catalogue/ -ISO/TR 12389:2009,https://www.iso.org/standard/51402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 74,https://www.iso.org/contents/data/committee/05/00/50040/x/catalogue/ -ISO 13007-3:2010,https://www.iso.org/standard/54600.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13007-4:2013,https://www.iso.org/standard/60883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13007-5:2015,https://www.iso.org/standard/60948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 29581-1:2009,https://www.iso.org/standard/45624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 74,https://www.iso.org/contents/data/committee/05/00/50040/x/catalogue/ -ISO 29581-2:2010,https://www.iso.org/standard/45567.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 74,https://www.iso.org/contents/data/committee/05/00/50040/x/catalogue/ -ISO 29582-1:2009,https://www.iso.org/standard/45572.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 74,https://www.iso.org/contents/data/committee/05/00/50040/x/catalogue/ -ISO 10545-1:2014,https://www.iso.org/standard/60974.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-2:1995,https://www.iso.org/standard/18616.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-2:1995/Cor 1:1997,https://www.iso.org/standard/27486.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO/DIS 10545-2,https://www.iso.org/standard/72246.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-3,https://www.iso.org/standard/68006.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-3:1995,https://www.iso.org/standard/18617.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-3:1995/Cor 1:1997,https://www.iso.org/standard/27487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-4:2014,https://www.iso.org/standard/60976.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO/DIS 10545-4,https://www.iso.org/standard/69619.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-5:1996,https://www.iso.org/standard/18619.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-5:1996/Cor 1:1997,https://www.iso.org/standard/28146.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-6:2010,https://www.iso.org/standard/51089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-7:1996,https://www.iso.org/standard/18621.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-8:2014,https://www.iso.org/standard/60973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-9:2013,https://www.iso.org/standard/57241.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-10:1995,https://www.iso.org/standard/18623.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-11:1994,https://www.iso.org/standard/18624.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-12:1995,https://www.iso.org/standard/18625.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-12:1995/Cor 1:1997,https://www.iso.org/standard/27488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-13:2016,https://www.iso.org/standard/60975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-14:2015,https://www.iso.org/standard/60972.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-15:1995,https://www.iso.org/standard/18626.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 10545-16:2010,https://www.iso.org/standard/51090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13006:2012,https://www.iso.org/standard/51063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO/FDIS 13006,https://www.iso.org/standard/63406.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13007-1:2014,https://www.iso.org/standard/60880.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13007-2:2013,https://www.iso.org/standard/60881.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13007-3:2010,https://www.iso.org/standard/54600.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13007-4:2013,https://www.iso.org/standard/60883.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 13007-5:2015,https://www.iso.org/standard/60948.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 14448:2016,https://www.iso.org/standard/54760.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO/TR 17870-1:2015,https://www.iso.org/standard/60854.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO/TR 17870-2:2015,https://www.iso.org/standard/64112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO/CD 17889-1,https://www.iso.org/standard/74306.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 189,https://www.iso.org/contents/data/committee/05/43/54320/x/catalogue/ -ISO 1920-1:2004,https://www.iso.org/standard/29097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-2:2016,https://www.iso.org/standard/54371.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-3:2004,https://www.iso.org/standard/40554.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO/CD 1920-3,https://www.iso.org/standard/72259.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-4:2005,https://www.iso.org/standard/40764.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO/CD 1920-4,https://www.iso.org/standard/72260.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-5:2004,https://www.iso.org/standard/40734.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO/FDIS 1920-5,https://www.iso.org/standard/71703.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-6:2004,https://www.iso.org/standard/40552.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO/CD 1920-6,https://www.iso.org/standard/72261.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-7:2004,https://www.iso.org/standard/29103.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-8:2009,https://www.iso.org/standard/41967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-9:2009,https://www.iso.org/standard/41968.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-10:2010,https://www.iso.org/standard/51829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-11:2013,https://www.iso.org/standard/57905.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 1920-12:2015,https://www.iso.org/standard/57932.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO/DIS 1920-13,https://www.iso.org/standard/69414.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO/CD 1920-14,https://www.iso.org/standard/73996.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 6274:1982,https://www.iso.org/standard/12557.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 6782:1982,https://www.iso.org/standard/13278.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 6783:1982,https://www.iso.org/standard/13279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 7033:1987,https://www.iso.org/standard/13593.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 10406-1:2015,https://www.iso.org/standard/63657.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 10406-2:2015,https://www.iso.org/standard/63658.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO/CD 10406-3,https://www.iso.org/standard/72162.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 12439:2010,https://www.iso.org/standard/50309.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO 13315-1:2012,https://www.iso.org/standard/53687.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 13315-2:2014,https://www.iso.org/standard/57645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 13315-4:2017,https://www.iso.org/standard/66540.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO/CD 13315-6,https://www.iso.org/standard/67994.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO/DIS 13315-8.2,https://www.iso.org/standard/66541.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 71/SC 8,https://www.iso.org/contents/data/committee/54/83/548367/x/catalogue/ -ISO 14484:2013,https://www.iso.org/standard/54847.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 14824-1:2012,https://www.iso.org/standard/55071.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO 14824-2:2012,https://www.iso.org/standard/55072.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO 14824-3:2012,https://www.iso.org/standard/55073.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO 16311-1:2014,https://www.iso.org/standard/56144.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO 16311-2:2014,https://www.iso.org/standard/56499.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO 16311-3:2014,https://www.iso.org/standard/56500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO 16311-4:2014,https://www.iso.org/standard/56501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO 16711:2015,https://www.iso.org/standard/61113.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO/NP 16711,https://www.iso.org/standard/72400.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 71/SC 7,https://www.iso.org/contents/data/committee/35/98/359853/x/catalogue/ -ISO 17785-1:2016,https://www.iso.org/standard/60531.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO/FDIS 17785-2,https://www.iso.org/standard/69721.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 71/SC 1,https://www.iso.org/contents/data/committee/04/99/49900/x/catalogue/ -ISO 19044:2016,https://www.iso.org/standard/63793.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 19595:2017,https://www.iso.org/standard/65436.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO 19596:2017,https://www.iso.org/standard/65437.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO/DIS 21022,https://www.iso.org/standard/69715.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO/CD 21914,https://www.iso.org/standard/72163.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 71/SC 6,https://www.iso.org/contents/data/committee/25/99/259923/x/catalogue/ -ISO 22965-1:2007,https://www.iso.org/standard/41260.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO 22965-2:2007,https://www.iso.org/standard/41261.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 71/SC 3,https://www.iso.org/contents/data/committee/04/99/49906/x/catalogue/ -ISO 390:1993,https://www.iso.org/standard/4380.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 77,https://www.iso.org/contents/data/committee/05/00/50056/x/catalogue/ -ISO 8336:2017,https://www.iso.org/standard/62950.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 77,https://www.iso.org/contents/data/committee/05/00/50056/x/catalogue/ -ISO 9125:2009,https://www.iso.org/standard/45792.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 77,https://www.iso.org/contents/data/committee/05/00/50056/x/catalogue/ -ISO 10904:2011,https://www.iso.org/standard/46368.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 77,https://www.iso.org/contents/data/committee/05/00/50056/x/catalogue/ -ISO 3867:2017,https://www.iso.org/standard/71185.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 3869:2017,https://www.iso.org/standard/71186.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 3934:2002,https://www.iso.org/standard/35614.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 4635:2011,https://www.iso.org/standard/45994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 5892:2013,https://www.iso.org/standard/56745.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6927:2012,https://www.iso.org/standard/50093.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 7389:2002,https://www.iso.org/standard/33677.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 7390:2002,https://www.iso.org/standard/33678.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 8339:2005,https://www.iso.org/standard/34949.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 8340:2005,https://www.iso.org/standard/34950.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 8394-1:2010,https://www.iso.org/standard/50095.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 8394-2:2017,https://www.iso.org/standard/72638.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 9046:2002,https://www.iso.org/standard/33679.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 9047:2001,https://www.iso.org/standard/34123.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 9047:2001/Cor 1:2009,https://www.iso.org/standard/54028.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 10563:2017,https://www.iso.org/standard/68416.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 10590:2005,https://www.iso.org/standard/35010.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 10591:2005,https://www.iso.org/standard/35011.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 11431:2002,https://www.iso.org/standard/27376.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 11432:2005,https://www.iso.org/standard/35012.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 11527:2010,https://www.iso.org/standard/50585.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO/FDIS 11527,https://www.iso.org/standard/71900.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 11528:2016,https://www.iso.org/standard/50586.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 11600:2002,https://www.iso.org/standard/26328.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 11600:2002/Amd 1:2011,https://www.iso.org/standard/50584.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 11617:2014,https://www.iso.org/standard/50628.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 11618:2015,https://www.iso.org/standard/63744.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 13638:1996,https://www.iso.org/standard/22444.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 13640:1999,https://www.iso.org/standard/22446.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO/FDIS 13640,https://www.iso.org/standard/67989.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 16938-1:2008,https://www.iso.org/standard/32506.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO/NP 16938-1,https://www.iso.org/standard/72636.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 16938-2:2008,https://www.iso.org/standard/35008.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO/NP 16938-2,https://www.iso.org/standard/72637.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 19861:2015,https://www.iso.org/standard/66494.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 19862:2015,https://www.iso.org/standard/66495.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 19863:2016,https://www.iso.org/standard/66496.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO/TR 20436:2017,https://www.iso.org/standard/68026.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 8,https://www.iso.org/contents/data/committee/04/91/49150/x/catalogue/ -ISO 2219:2010,https://www.iso.org/standard/44779.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 2509:1989,https://www.iso.org/standard/7441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 4898:2010,https://www.iso.org/standard/52865.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO/FDIS 4898,https://www.iso.org/standard/70322.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 8142:1990,https://www.iso.org/standard/15225.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 8144-1:1995,https://www.iso.org/standard/15227.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO/DIS 8144-1,https://www.iso.org/standard/66660.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 8144-2:1995,https://www.iso.org/standard/15228.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO/DIS 8144-2,https://www.iso.org/standard/66659.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 8145:1994,https://www.iso.org/standard/15229.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO/DIS 8145,https://www.iso.org/standard/66658.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 9053:1991,https://www.iso.org/standard/16622.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/DIS 9053,https://www.iso.org/standard/69869.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 9076-2:2008,https://www.iso.org/standard/45810.html,95.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.60,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 9366:2001,https://www.iso.org/standard/28119.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 87,https://www.iso.org/contents/data/committee/05/04/50400/x/catalogue/ -ISO 9774:2004,https://www.iso.org/standard/29776.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 61/SC 10,https://www.iso.org/contents/data/committee/04/94/49404/x/catalogue/ -ISO 11561:1999,https://www.iso.org/standard/2488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12344:2010,https://www.iso.org/standard/51391.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12576-1:2001,https://www.iso.org/standard/2565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 12576-2:2008,https://www.iso.org/standard/45746.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 12623:2011,https://www.iso.org/standard/51601.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12624:2011,https://www.iso.org/standard/51602.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12628:2011,https://www.iso.org/standard/51603.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12629:2011,https://www.iso.org/standard/51604.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12968:2010,https://www.iso.org/standard/52288.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 13787:2003,https://www.iso.org/standard/37056.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15148:2002,https://www.iso.org/standard/26500.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 15148:2002/Amd 1:2016,https://www.iso.org/standard/67183.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 16534:2012,https://www.iso.org/standard/57062.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/NP 16534,https://www.iso.org/standard/69718.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 16535:2012,https://www.iso.org/standard/57063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/DIS 16535,https://www.iso.org/standard/69472.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 16536:2012,https://www.iso.org/standard/57064.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/DIS 16536,https://www.iso.org/standard/69514.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 16537:2012,https://www.iso.org/standard/57065.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 16544:2012,https://www.iso.org/standard/57074.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 16545:2012,https://www.iso.org/standard/57075.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 16546:2012,https://www.iso.org/standard/57076.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/NP 16546,https://www.iso.org/standard/69719.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 17738-1:2017,https://www.iso.org/standard/60340.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO/CD 17738-2,https://www.iso.org/standard/72072.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO/FDIS 17749,https://www.iso.org/standard/64013.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 18096:2013,https://www.iso.org/standard/61425.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 18097:2013,https://www.iso.org/standard/61426.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 18098:2013,https://www.iso.org/standard/61427.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 18099:2013,https://www.iso.org/standard/61428.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/DTR 20293,https://www.iso.org/standard/67558.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO/FDIS 20310,https://www.iso.org/standard/67627.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 23993:2008,https://www.iso.org/standard/37042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 29465:2008,https://www.iso.org/standard/45486.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29466:2008,https://www.iso.org/standard/45487.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29467:2008,https://www.iso.org/standard/45488.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29467:2008/Amd 1:2014,https://www.iso.org/standard/64990.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29468:2008,https://www.iso.org/standard/45489.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29469:2008,https://www.iso.org/standard/45490.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29470:2008,https://www.iso.org/standard/45491.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/NP 29470,https://www.iso.org/standard/69717.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29471:2008,https://www.iso.org/standard/45492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29471:2008/Amd 1:2014,https://www.iso.org/standard/64991.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29472:2008,https://www.iso.org/standard/45493.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29472:2008/Amd 1:2014,https://www.iso.org/standard/64992.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29764:2008,https://www.iso.org/standard/45662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29765:2008,https://www.iso.org/standard/45663.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29766:2008,https://www.iso.org/standard/45664.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29767:2008,https://www.iso.org/standard/45665.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29767:2008/Amd 1:2014,https://www.iso.org/standard/64993.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/DIS 29767,https://www.iso.org/standard/69471.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29768:2008,https://www.iso.org/standard/45666.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29769:2008,https://www.iso.org/standard/45667.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29770:2008,https://www.iso.org/standard/45668.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29771:2008,https://www.iso.org/standard/45669.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29771:2008/Amd 1:2014,https://www.iso.org/standard/64994.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29803:2010,https://www.iso.org/standard/45689.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29804:2009,https://www.iso.org/standard/45690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 29805:2009,https://www.iso.org/standard/45691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 6781:1983,https://www.iso.org/standard/13277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/CD 6781-1,https://www.iso.org/standard/58015.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/CD 6781-2,https://www.iso.org/standard/61356.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 6781-3:2015,https://www.iso.org/standard/61357.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 6946:2017,https://www.iso.org/standard/65708.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 9869-1:2014,https://www.iso.org/standard/59697.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/FDIS 9869-2,https://www.iso.org/standard/67673.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 9972:2015,https://www.iso.org/standard/55718.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 10077-1:2017,https://www.iso.org/standard/67090.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 10077-2:2017,https://www.iso.org/standard/64995.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 10211:2017,https://www.iso.org/standard/65710.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 10456:2007,https://www.iso.org/standard/40966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 10456:2007/Cor 1:2009,https://www.iso.org/standard/55597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 12241:2008,https://www.iso.org/standard/41703.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO/NP 12241,https://www.iso.org/standard/74655.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 12567-1:2010,https://www.iso.org/standard/50327.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12567-1:2010/Cor 1:2010,https://www.iso.org/standard/57224.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12567-2:2005,https://www.iso.org/standard/40053.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12569:2017,https://www.iso.org/standard/69817.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12569:2017/DAmd 1,https://www.iso.org/standard/74661.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12572:2016,https://www.iso.org/standard/64988.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 12574-2:2008,https://www.iso.org/standard/40546.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 12575-1:2012,https://www.iso.org/standard/40542.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 12575-2:2007,https://www.iso.org/standard/40543.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 12631:2017,https://www.iso.org/standard/66762.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 12655:2013,https://www.iso.org/standard/51634.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 13370:2017,https://www.iso.org/standard/65716.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 13786:2017,https://www.iso.org/standard/65711.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 13788:2012,https://www.iso.org/standard/51615.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 13789:2017,https://www.iso.org/standard/65713.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 13793:2001,https://www.iso.org/standard/22931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 14438:2002,https://www.iso.org/standard/35995.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 160/SC 2,https://www.iso.org/contents/data/committee/05/34/53422/x/catalogue/ -ISO 14683:2017,https://www.iso.org/standard/65706.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 14857:2014,https://www.iso.org/standard/55082.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 15099:2003,https://www.iso.org/standard/26425.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15758:2014,https://www.iso.org/standard/54473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-1:2003,https://www.iso.org/standard/29559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-2:2009,https://www.iso.org/standard/44282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-3:2009,https://www.iso.org/standard/44281.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-4:2005,https://www.iso.org/standard/41371.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-5:2004,https://www.iso.org/standard/35563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-5:2004/Amd 1:2011,https://www.iso.org/standard/56664.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 15927-6:2007,https://www.iso.org/standard/35564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO/DIS 16478,https://www.iso.org/standard/62772.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 163/SC 3,https://www.iso.org/contents/data/committee/05/35/53530/x/catalogue/ -ISO 16956:2015,https://www.iso.org/standard/58016.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 17772-1:2017,https://www.iso.org/standard/60498.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO/PRF TR 17772-2,https://www.iso.org/standard/68228.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 18292:2011,https://www.iso.org/standard/38630.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 18292:2011/Cor 1:2012,https://www.iso.org/standard/61533.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 18393-1:2012,https://www.iso.org/standard/52271.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO/DIS 18393-1,https://www.iso.org/standard/67576.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 18523-1:2016,https://www.iso.org/standard/62765.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 18523-2,https://www.iso.org/standard/69633.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 19467:2017,https://www.iso.org/standard/64989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 21129:2007,https://www.iso.org/standard/35674.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 1,https://www.iso.org/contents/data/committee/05/34/53482/x/catalogue/ -ISO 23993:2008,https://www.iso.org/standard/37042.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 52000-1:2017,https://www.iso.org/standard/65601.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO/TR 52000-2:2017,https://www.iso.org/standard/68232.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 52003-1:2017,https://www.iso.org/standard/65662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO/TR 52003-2:2017,https://www.iso.org/standard/65661.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163,https://www.iso.org/contents/data/committee/05/34/53476/x/catalogue/ -ISO 52010-1:2017,https://www.iso.org/standard/65703.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO/TR 52010-2:2017,https://www.iso.org/standard/67344.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 52016-1:2017,https://www.iso.org/standard/65696.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO/TR 52016-2:2017,https://www.iso.org/standard/65697.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 52017-1:2017,https://www.iso.org/standard/65698.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 52018-1:2017,https://www.iso.org/standard/65701.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO/TR 52018-2:2017,https://www.iso.org/standard/65702.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO/TR 52019-2:2017,https://www.iso.org/standard/65704.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 52022-1:2017,https://www.iso.org/standard/65785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO/TR 52022-2:2017,https://www.iso.org/standard/66487.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 52022-3:2017,https://www.iso.org/standard/66488.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 140-14:2004/Cor 1:2007,https://www.iso.org/standard/45538.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 354:2003,https://www.iso.org/standard/34545.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 717-1:2013,https://www.iso.org/standard/51968.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 717-2:2013,https://www.iso.org/standard/51969.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3382-1:2009,https://www.iso.org/standard/40979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3382-2:2008,https://www.iso.org/standard/36201.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3382-2:2008/Cor 1:2009,https://www.iso.org/standard/54029.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3382-3:2012,https://www.iso.org/standard/46520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 6242-3:1992,https://www.iso.org/standard/12520.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 7235:2003,https://www.iso.org/standard/30385.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 9052-1:1989,https://www.iso.org/standard/16620.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10052:2004,https://www.iso.org/standard/32341.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10052:2004/Amd 1:2010,https://www.iso.org/standard/52137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10053:1991,https://www.iso.org/standard/18018.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10140-1:2016,https://www.iso.org/standard/67232.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10140-2:2010,https://www.iso.org/standard/42088.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10140-3:2010,https://www.iso.org/standard/42089.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10140-3:2010/Amd 1:2015,https://www.iso.org/standard/59745.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10140-4:2010,https://www.iso.org/standard/42090.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/FDIS 10140-4,https://www.iso.org/standard/64963.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10140-5:2010,https://www.iso.org/standard/42087.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10140-5:2010/Amd 1:2014,https://www.iso.org/standard/55996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10848-1:2017,https://www.iso.org/standard/67226.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10848-2:2017,https://www.iso.org/standard/67227.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10848-3:2017,https://www.iso.org/standard/67228.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10848-4:2017,https://www.iso.org/standard/67229.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 11654:1997,https://www.iso.org/standard/19583.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/DIS 11654,https://www.iso.org/standard/67233.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 11691:1995,https://www.iso.org/standard/19620.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/NP 11691,https://www.iso.org/standard/69859.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 11820:1996,https://www.iso.org/standard/20231.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 12354-1:2017,https://www.iso.org/standard/70242.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 12354-2:2017,https://www.iso.org/standard/70243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 12354-3:2017,https://www.iso.org/standard/70244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 12354-4:2017,https://www.iso.org/standard/70248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 12999-1:2014,https://www.iso.org/standard/36492.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/NP 12999-1,https://www.iso.org/standard/73930.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 15186-1:2000,https://www.iso.org/standard/26097.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 15186-2:2003,https://www.iso.org/standard/30105.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 15186-3:2002,https://www.iso.org/standard/31395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 15665:2003,https://www.iso.org/standard/28629.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 15665:2003/Cor 1:2004,https://www.iso.org/standard/40116.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 16032:2004,https://www.iso.org/standard/29867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 16251-1:2014,https://www.iso.org/standard/56017.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 16283-1:2014,https://www.iso.org/standard/55997.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 16283-1:2014/Amd 1:2017,https://www.iso.org/standard/69865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 16283-2:2015,https://www.iso.org/standard/59747.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/DIS 16283-2,https://www.iso.org/standard/73929.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 16283-3:2016,https://www.iso.org/standard/59748.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 17497-1:2004,https://www.iso.org/standard/31397.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 17497-1:2004/Amd 1:2014,https://www.iso.org/standard/60686.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 17497-2:2012,https://www.iso.org/standard/55293.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 18233:2006,https://www.iso.org/standard/40408.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/DIS 19488,https://www.iso.org/standard/65136.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO/DIS 20189,https://www.iso.org/standard/67230.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 630-6:2014,https://www.iso.org/standard/60902.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 17/SC 3,https://www.iso.org/contents/data/committee/04/63/46354/x/catalogue/ -ISO 3010:2017,https://www.iso.org/standard/63217.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 4866:2010,https://www.iso.org/standard/38967.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 10137:2007,https://www.iso.org/standard/37070.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO/TS 10811-1:2000,https://www.iso.org/standard/33210.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/TS 10811-2:2000,https://www.iso.org/standard/33211.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 13033:2013,https://www.iso.org/standard/52441.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 16587:2004,https://www.iso.org/standard/32318.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 22762-3:2010,https://www.iso.org/standard/50396.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 22762-3,https://www.iso.org/standard/70219.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/TS 22762-4:2014,https://www.iso.org/standard/62220.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 10052:2004,https://www.iso.org/standard/32341.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10052:2004/Amd 1:2010,https://www.iso.org/standard/52137.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 10295-1:2007,https://www.iso.org/standard/45503.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10295-2:2009,https://www.iso.org/standard/50254.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10295-2:2009/Cor 1:2009,https://www.iso.org/standard/54027.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/TR 10295-3:2012,https://www.iso.org/standard/50719.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 12241:2008,https://www.iso.org/standard/41703.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO/NP 12241,https://www.iso.org/standard/74655.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 14617-15:2002,https://www.iso.org/standard/22668.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10/SC 10,https://www.iso.org/contents/data/committee/04/61/46126/x/catalogue/ -ISO 15758:2014,https://www.iso.org/standard/54473.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 16032:2004,https://www.iso.org/standard/29867.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 13675:2013,https://www.iso.org/standard/54280.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 205,https://www.iso.org/contents/data/committee/05/47/54740/x/catalogue/ -ISO 6944-1:2008,https://www.iso.org/standard/50385.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 6944-1:2008/Amd 1:2015,https://www.iso.org/standard/63038.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 6944-2:2009,https://www.iso.org/standard/43424.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10121-1:2014,https://www.iso.org/standard/51372.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 10121-2:2013,https://www.iso.org/standard/51373.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 10294-1:1996,https://www.iso.org/standard/18336.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-1:1996/Amd 1:2014,https://www.iso.org/standard/66350.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-2:1999,https://www.iso.org/standard/18337.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-3:1999,https://www.iso.org/standard/18338.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-4:2001,https://www.iso.org/standard/29925.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-4:2001/Amd 1:2014,https://www.iso.org/standard/66351.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 10294-5:2005,https://www.iso.org/standard/37675.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO/CD 15714,https://www.iso.org/standard/67814.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 15858:2016,https://www.iso.org/standard/55553.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 15957:2015,https://www.iso.org/standard/55561.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 16170:2016,https://www.iso.org/standard/55785.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 16890-1:2016,https://www.iso.org/standard/57864.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 16890-2:2016,https://www.iso.org/standard/57865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 16890-3:2016,https://www.iso.org/standard/57866.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 16890-4:2016,https://www.iso.org/standard/57867.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 16891:2016,https://www.iso.org/standard/57868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO/DIS 21083-1,https://www.iso.org/standard/69876.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO/PRF TS 21083-2,https://www.iso.org/standard/69877.html,50.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 29462:2013,https://www.iso.org/standard/45483.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 29463-1:2017,https://www.iso.org/standard/67816.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 29463-2:2011,https://www.iso.org/standard/51836.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 29463-3:2011,https://www.iso.org/standard/51837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 29463-4:2011,https://www.iso.org/standard/51838.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 29463-5:2011,https://www.iso.org/standard/51839.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 29464:2017,https://www.iso.org/standard/62766.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 142,https://www.iso.org/contents/data/committee/05/26/52624/x/catalogue/ -ISO 2531:2009,https://www.iso.org/standard/40396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 2531:2009/Cor 1:2010,https://www.iso.org/standard/57470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 17484-1:2014,https://www.iso.org/standard/57597.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 17484-2:2009,https://www.iso.org/standard/46115.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO/TR 19480:2005,https://www.iso.org/standard/41785.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 559:1991,https://www.iso.org/standard/4648.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 1452-1:2009,https://www.iso.org/standard/50361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-2:2009,https://www.iso.org/standard/50362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-3:2009,https://www.iso.org/standard/50363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-4:2009,https://www.iso.org/standard/50364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-5:2009,https://www.iso.org/standard/50365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 2531:2009,https://www.iso.org/standard/40396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 2531:2009/Cor 1:2010,https://www.iso.org/standard/57470.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 3114:1977,https://www.iso.org/standard/8271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 3822-1:1999,https://www.iso.org/standard/22121.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3822-1:1999/Amd 1:2008,https://www.iso.org/standard/42987.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3822-2:1995,https://www.iso.org/standard/22122.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3822-3:2018,https://www.iso.org/standard/69868.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 3822-4:1997,https://www.iso.org/standard/22124.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 2,https://www.iso.org/contents/data/committee/04/85/48558/x/catalogue/ -ISO 4064-1:2014,https://www.iso.org/standard/55371.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 7,https://www.iso.org/contents/data/committee/04/76/47620/x/catalogue/ -ISO 4064-2:2014,https://www.iso.org/standard/55383.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 7,https://www.iso.org/contents/data/committee/04/76/47620/x/catalogue/ -ISO 4064-3:2014,https://www.iso.org/standard/55384.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 7,https://www.iso.org/contents/data/committee/04/76/47620/x/catalogue/ -ISO 4064-4:2014,https://www.iso.org/standard/55385.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 7,https://www.iso.org/contents/data/committee/04/76/47620/x/catalogue/ -ISO 4064-5:2014,https://www.iso.org/standard/55386.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 30/SC 7,https://www.iso.org/contents/data/committee/04/76/47620/x/catalogue/ -ISO/TR 4191:2014,https://www.iso.org/standard/44039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007,https://www.iso.org/standard/40062.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007/Amd 1:2015,https://www.iso.org/standard/60828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007/Cor 1:2008,https://www.iso.org/standard/52225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-1,https://www.iso.org/standard/72183.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-2:2007,https://www.iso.org/standard/40063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-2:2007/Amd 1:2014,https://www.iso.org/standard/64583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-2,https://www.iso.org/standard/72184.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-3:2007,https://www.iso.org/standard/40064.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-3,https://www.iso.org/standard/72185.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-5:2007,https://www.iso.org/standard/40065.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-5,https://www.iso.org/standard/72186.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4633:2015,https://www.iso.org/standard/63707.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8795:2001,https://www.iso.org/standard/31311.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 10508:2006,https://www.iso.org/standard/35045.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 10508:2006/DAmd 1,https://www.iso.org/standard/73735.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 10639:2017,https://www.iso.org/standard/65187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 11177:2016,https://www.iso.org/standard/62853.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO/DIS 11177,https://www.iso.org/standard/74516.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 13056:2011,https://www.iso.org/standard/52473.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13844:2015,https://www.iso.org/standard/61255.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 13845:2015,https://www.iso.org/standard/61256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 15874-1:2013,https://www.iso.org/standard/54134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-2:2013,https://www.iso.org/standard/54155.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-2:2013/DAmd 1,https://www.iso.org/standard/64578.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-3:2013,https://www.iso.org/standard/54157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-3:2013/DAmd 1,https://www.iso.org/standard/64577.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-5:2013,https://www.iso.org/standard/54158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15874-5:2013/DAmd 1,https://www.iso.org/standard/67341.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 15874-7:2003,https://www.iso.org/standard/29403.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-1:2003,https://www.iso.org/standard/29396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-1:2003/Amd 1:2007,https://www.iso.org/standard/43287.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-2:2003,https://www.iso.org/standard/29404.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-2:2003/Amd 1:2007,https://www.iso.org/standard/42865.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-3:2003,https://www.iso.org/standard/29405.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-5:2003,https://www.iso.org/standard/29406.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15875-5:2003/Cor 1:2007,https://www.iso.org/standard/45585.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 15875-7:2003,https://www.iso.org/standard/29407.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15876-1:2017,https://www.iso.org/standard/63010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15876-2:2017,https://www.iso.org/standard/63011.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15876-3:2017,https://www.iso.org/standard/63012.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15876-5:2017,https://www.iso.org/standard/63013.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 15876-7:2003,https://www.iso.org/standard/29411.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-1:2009,https://www.iso.org/standard/41066.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-1:2009/Amd 1:2010,https://www.iso.org/standard/52996.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-2:2009,https://www.iso.org/standard/41067.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-2:2009/Amd 1:2010,https://www.iso.org/standard/52998.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-3:2009,https://www.iso.org/standard/41068.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-3:2009/Amd 1:2010,https://www.iso.org/standard/53000.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-5:2009,https://www.iso.org/standard/41069.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 15877-5:2009/Amd 1:2010,https://www.iso.org/standard/53001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 15877-7:2009,https://www.iso.org/standard/41070.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 16422:2014,https://www.iso.org/standard/55393.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 16631:2016,https://www.iso.org/standard/57331.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 21003-1:2008,https://www.iso.org/standard/43514.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21003-2:2008,https://www.iso.org/standard/43515.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21003-2:2008/Amd 1:2011,https://www.iso.org/standard/55270.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21003-3:2008,https://www.iso.org/standard/40040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21003-5:2008,https://www.iso.org/standard/40041.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 21003-7:2008,https://www.iso.org/standard/46528.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 21003-7:2008/Amd 1:2010,https://www.iso.org/standard/55271.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22158:2011,https://www.iso.org/standard/44291.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 30/SC 7,https://www.iso.org/contents/data/committee/04/76/47620/x/catalogue/ -ISO 22391-1:2009,https://www.iso.org/standard/46395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22391-2:2009,https://www.iso.org/standard/46396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22391-3:2009,https://www.iso.org/standard/46397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22391-5:2009,https://www.iso.org/standard/46398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD TS 22391-7,https://www.iso.org/standard/68528.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 22391-7:2011,https://www.iso.org/standard/55406.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 23711:2003,https://www.iso.org/standard/36940.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/TS 24520:2017,https://www.iso.org/standard/64680.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 25780:2011,https://www.iso.org/standard/43221.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/TR 27165:2012,https://www.iso.org/standard/44040.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -IWA 24:2016,https://www.iso.org/standard/70604.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/DIS 30500,https://www.iso.org/standard/72523.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/PC 305,https://www.iso.org/contents/data/committee/61/70/6170397/x/catalogue/ -ISO 265-1:1988,https://www.iso.org/standard/4172.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 559:1991,https://www.iso.org/standard/4648.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 3633:2002,https://www.iso.org/standard/25662.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 4633:2015,https://www.iso.org/standard/63707.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 6594:2006,https://www.iso.org/standard/35248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO/NP TR 7024,https://www.iso.org/standard/75345.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/TS 7024:2005,https://www.iso.org/standard/32985.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 7671:2003,https://www.iso.org/standard/33704.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 7675:2003,https://www.iso.org/standard/31877.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 7682:2003,https://www.iso.org/standard/33705.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-1:1991,https://www.iso.org/standard/15399.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-2:1992,https://www.iso.org/standard/15400.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-3:1992,https://www.iso.org/standard/15401.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8283-4:1992,https://www.iso.org/standard/15402.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8770:2003,https://www.iso.org/standard/33706.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8772:2006,https://www.iso.org/standard/39901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8773:2006,https://www.iso.org/standard/39902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 9896:1996,https://www.iso.org/standard/17777.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 10467:2004,https://www.iso.org/standard/33530.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10467:2004/Amd 1:2012,https://www.iso.org/standard/52273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/FDIS 10467,https://www.iso.org/standard/70198.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 11296-1,https://www.iso.org/standard/70115.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-1:2009,https://www.iso.org/standard/41702.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-2:2018,https://www.iso.org/standard/67420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-3:2009,https://www.iso.org/standard/41727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-3:2009/Cor 1:2011,https://www.iso.org/standard/59665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11296-3,https://www.iso.org/standard/70116.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-4:2018,https://www.iso.org/standard/70117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-7:2011,https://www.iso.org/standard/41729.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11296-7,https://www.iso.org/standard/70118.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-1,https://www.iso.org/standard/70119.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-1:2013,https://www.iso.org/standard/59384.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-2:2018,https://www.iso.org/standard/67418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-3:2013,https://www.iso.org/standard/59385.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11297-3,https://www.iso.org/standard/70120.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-4:2018,https://www.iso.org/standard/67419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 13229:2010,https://www.iso.org/standard/53553.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13254:2010,https://www.iso.org/standard/53554.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13255:2010,https://www.iso.org/standard/53555.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13257:2010,https://www.iso.org/standard/53556.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 13257,https://www.iso.org/standard/72622.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13259:2010,https://www.iso.org/standard/53557.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/FDIS 13259,https://www.iso.org/standard/69999.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13260:2010,https://www.iso.org/standard/53558.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13260:2010/Amd 1:2017,https://www.iso.org/standard/72182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13262:2010,https://www.iso.org/standard/53559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13263:2010,https://www.iso.org/standard/53560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13264:2010,https://www.iso.org/standard/53561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13265:2010,https://www.iso.org/standard/53562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13266:2010,https://www.iso.org/standard/53563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13267:2010,https://www.iso.org/standard/53564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13268:2010,https://www.iso.org/standard/53565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13272:2011,https://www.iso.org/standard/53583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 16611:2017,https://www.iso.org/standard/65107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 18672-1:2009,https://www.iso.org/standard/38801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 19220:2004,https://www.iso.org/standard/33758.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 19469-1.2,https://www.iso.org/standard/65005.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 19469-3.2,https://www.iso.org/standard/66987.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-1:2007,https://www.iso.org/standard/40026.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/CD 21138-1,https://www.iso.org/standard/72513.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-2:2007,https://www.iso.org/standard/40027.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 21138-2,https://www.iso.org/standard/69997.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-3:2007,https://www.iso.org/standard/40028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 21138-3,https://www.iso.org/standard/69998.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/FDIS 21225-1,https://www.iso.org/standard/70113.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/FDIS 21225-2,https://www.iso.org/standard/70114.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 23711:2003,https://www.iso.org/standard/36940.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 25780:2011,https://www.iso.org/standard/43221.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 3008-2:2017,https://www.iso.org/standard/69092.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 92/SC 2,https://www.iso.org/contents/data/committee/05/05/50526/x/catalogue/ -ISO 4101:1983,https://www.iso.org/standard/9842.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 4190-1:2010,https://www.iso.org/standard/43194.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 4190-1:2010/Cor 1:2011,https://www.iso.org/standard/60446.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 4190-2:2001,https://www.iso.org/standard/34071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 4190-3:1982,https://www.iso.org/standard/9969.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 4190-5:2006,https://www.iso.org/standard/40083.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 4190-6:1984,https://www.iso.org/standard/9972.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 4344:2004,https://www.iso.org/standard/31563.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO 7465:2007,https://www.iso.org/standard/43008.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/DIS 8100-1,https://www.iso.org/standard/70824.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/DIS 8100-2,https://www.iso.org/standard/71217.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/DTS 8100-3,https://www.iso.org/standard/71218.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/FDIS 8100-20,https://www.iso.org/standard/73072.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/PRF TS 8100-21,https://www.iso.org/standard/73073.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 8100-24:2016,https://www.iso.org/standard/72738.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/DIS 8100-30,https://www.iso.org/standard/73082.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/CD 8102-1,https://www.iso.org/standard/73093.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/CD 8102-2,https://www.iso.org/standard/73094.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/CD 8102-2,https://www.iso.org/standard/74807.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/DIS 8102-6,https://www.iso.org/standard/73098.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TS 8103-6:2017,https://www.iso.org/standard/73110.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 8383:1985,https://www.iso.org/standard/15548.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 9386-1:2000,https://www.iso.org/standard/33822.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 9386-2:2000,https://www.iso.org/standard/33823.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 9589:1994,https://www.iso.org/standard/17355.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 11071-1:2004,https://www.iso.org/standard/40282.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 11071-2:2006,https://www.iso.org/standard/43499.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 14798:2009,https://www.iso.org/standard/46048.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 14799-1:2015,https://www.iso.org/standard/62545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 14799-2:2015,https://www.iso.org/standard/53959.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 16764:2003,https://www.iso.org/standard/30441.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 16765:2003,https://www.iso.org/standard/30442.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 16765:2003/Cor 1:2003,https://www.iso.org/standard/38891.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 18738-1:2012,https://www.iso.org/standard/54395.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 18738-2:2012,https://www.iso.org/standard/43202.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TS 18870:2014,https://www.iso.org/standard/63641.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 22199:2009,https://www.iso.org/standard/51128.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 22200:2009,https://www.iso.org/standard/45995.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 22201-1:2017,https://www.iso.org/standard/66901.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 22201-2:2013,https://www.iso.org/standard/54092.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 22201-3:2016,https://www.iso.org/standard/66849.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 22559-1:2014,https://www.iso.org/standard/61455.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/DIS 22559-1,https://www.iso.org/standard/72391.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TS 22559-2:2010,https://www.iso.org/standard/39749.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TS 22559-3:2011,https://www.iso.org/standard/43193.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TS 22559-4:2011,https://www.iso.org/standard/46490.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TS 25740-1:2011,https://www.iso.org/standard/43197.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 25741:2008,https://www.iso.org/standard/43199.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/WD TR 25741,https://www.iso.org/standard/64024.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO/TR 25743:2010,https://www.iso.org/standard/43201.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 25745-1:2012,https://www.iso.org/standard/43203.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 25745-2:2015,https://www.iso.org/standard/60951.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 25745-3:2015,https://www.iso.org/standard/60952.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 178,https://www.iso.org/contents/data/committee/05/39/53970/x/catalogue/ -ISO 10916:2014,https://www.iso.org/standard/46394.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 8995-1:2002/Cor 1:2005,https://www.iso.org/standard/43196.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO 8995-1:2002,https://www.iso.org/standard/28857.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO 8995-3:2006,https://www.iso.org/standard/44630.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO/CIE 8995-3,https://www.iso.org/standard/70593.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO/CIE DIS 20086,https://www.iso.org/standard/67002.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO 30061:2007,https://www.iso.org/standard/45801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 274,https://www.iso.org/contents/data/committee/44/18/4418564/x/catalogue/ -ISO/CD 24507,https://www.iso.org/standard/66907.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 159/SC 4,https://www.iso.org/contents/data/committee/05/33/53372/x/catalogue/ -ISO 3443-1:1979,https://www.iso.org/standard/8763.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 3443-2:1979,https://www.iso.org/standard/8764.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 3443-3:1987,https://www.iso.org/standard/8765.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 3443-4:1986,https://www.iso.org/standard/8766.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 3443-5:1982,https://www.iso.org/standard/8767.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 3443-6:1986,https://www.iso.org/standard/8768.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 3443-7:1988,https://www.iso.org/standard/8769.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 3443-8:1989,https://www.iso.org/standard/8770.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 4463-1:1989,https://www.iso.org/standard/10356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 4463-2:1995,https://www.iso.org/standard/10357.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 4463-3:1995,https://www.iso.org/standard/10358.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7077:1981,https://www.iso.org/standard/13649.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7078:1985,https://www.iso.org/standard/13650.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO 7727:1984,https://www.iso.org/standard/14563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7976-1:1989,https://www.iso.org/standard/14965.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 7976-2:1989,https://www.iso.org/standard/14966.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 59,https://www.iso.org/contents/data/committee/04/90/49070/x/catalogue/ -ISO 12491:1997,https://www.iso.org/standard/2644.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 2,https://www.iso.org/contents/data/committee/05/09/50944/x/catalogue/ -ISO 11375:1998,https://www.iso.org/standard/1074.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 11886:2002,https://www.iso.org/standard/20320.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 11886:2002/Cor 1:2006,https://www.iso.org/standard/43725.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO/TR 12603:2010,https://www.iso.org/standard/50886.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 13105-1:2014,https://www.iso.org/standard/57236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 13105-2:2014,https://www.iso.org/standard/62285.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 13105-2:2014/Amd 1:2017,https://www.iso.org/standard/72561.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 13442:2004,https://www.iso.org/standard/37524.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 31/SC 6,https://www.iso.org/contents/data/committee/04/77/47740/x/catalogue/ -ISO 17740-1:2015,https://www.iso.org/standard/60826.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 18650-1:2004,https://www.iso.org/standard/33545.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO/AWI 18650-1,https://www.iso.org/standard/75172.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 18650-2:2014,https://www.iso.org/standard/66214.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 18651-1:2011,https://www.iso.org/standard/50641.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 18652:2005,https://www.iso.org/standard/33548.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 19432:2012,https://www.iso.org/standard/52418.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO/DIS 19432-1,https://www.iso.org/standard/68956.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 19433:2008,https://www.iso.org/standard/39091.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 19452:2008,https://www.iso.org/standard/39093.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 19452:2008/Cor 1:2008,https://www.iso.org/standard/51681.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO/DIS 19711-1.2,https://www.iso.org/standard/66105.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 19720-1:2017,https://www.iso.org/standard/66115.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 21573-1:2014,https://www.iso.org/standard/66215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 21573-2:2008,https://www.iso.org/standard/37176.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO/AWI 21573-2,https://www.iso.org/standard/75344.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 21592:2006,https://www.iso.org/standard/35948.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 195/SC 1,https://www.iso.org/contents/data/committee/51/33/513384/x/catalogue/ -ISO 21873-1:2015,https://www.iso.org/standard/61184.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 21873-2:2009,https://www.iso.org/standard/43995.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO/DIS 21873-2,https://www.iso.org/standard/68925.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 6707-1:2017,https://www.iso.org/standard/72244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 59/SC 2,https://www.iso.org/contents/data/committee/04/90/49076/x/catalogue/ -ISO/DIS 21931-2,https://www.iso.org/standard/61696.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 59/SC 17,https://www.iso.org/contents/data/committee/32/26/322621/x/catalogue/ -ISO/TR 12930:2014,https://www.iso.org/standard/52209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 13793:2001,https://www.iso.org/standard/22931.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 163/SC 2,https://www.iso.org/contents/data/committee/05/35/53512/x/catalogue/ -ISO 14688-1:2017,https://www.iso.org/standard/66345.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 14688-2:2017,https://www.iso.org/standard/66346.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 14689:2017,https://www.iso.org/standard/66347.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17628:2015,https://www.iso.org/standard/60199.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-1:2014,https://www.iso.org/standard/55243.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-2:2014,https://www.iso.org/standard/55244.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-3:2015,https://www.iso.org/standard/55245.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-4:2016,https://www.iso.org/standard/55246.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-5:2017,https://www.iso.org/standard/55247.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-6:2017,https://www.iso.org/standard/55248.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-7:2017,https://www.iso.org/standard/70789.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-8,https://www.iso.org/standard/70790.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-8:2004,https://www.iso.org/standard/38521.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-8:2004/Cor 1:2006,https://www.iso.org/standard/43546.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 17892-9,https://www.iso.org/standard/70954.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-9:2004,https://www.iso.org/standard/38522.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-9:2004/Cor 1:2006,https://www.iso.org/standard/43547.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/DIS 17892-10,https://www.iso.org/standard/72015.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-10:2004,https://www.iso.org/standard/38523.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-10:2004/Cor 1:2006,https://www.iso.org/standard/43548.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/DIS 17892-11,https://www.iso.org/standard/72016.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-11:2004,https://www.iso.org/standard/38524.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-11:2004/Cor 1:2006,https://www.iso.org/standard/43549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/FDIS 17892-12,https://www.iso.org/standard/72017.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-12:2004,https://www.iso.org/standard/38525.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 17892-12:2004/Cor 1:2006,https://www.iso.org/standard/43550.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 18674-1:2015,https://www.iso.org/standard/63168.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 18674-2:2016,https://www.iso.org/standard/67123.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 18674-3:2017,https://www.iso.org/standard/69207.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22282-1:2012,https://www.iso.org/standard/57722.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22282-2:2012,https://www.iso.org/standard/57723.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22282-3:2012,https://www.iso.org/standard/57724.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22282-4:2012,https://www.iso.org/standard/57725.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22282-5:2012,https://www.iso.org/standard/57726.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22282-6:2012,https://www.iso.org/standard/57727.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22475-1:2006,https://www.iso.org/standard/36244.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/NP 22475-1,https://www.iso.org/standard/71002.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 22475-2:2006,https://www.iso.org/standard/37154.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/TS 22475-3:2007,https://www.iso.org/standard/38604.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-1:2012,https://www.iso.org/standard/57728.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-1:2012/Cor 1:2013,https://www.iso.org/standard/63259.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-2:2005,https://www.iso.org/standard/36246.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-2:2005/Amd 1:2011,https://www.iso.org/standard/56804.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-3:2005,https://www.iso.org/standard/36247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-3:2005/Amd 1:2011,https://www.iso.org/standard/56805.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-4:2012,https://www.iso.org/standard/57729.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-5:2012,https://www.iso.org/standard/57730.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/DIS 22476-6,https://www.iso.org/standard/72219.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-7:2012,https://www.iso.org/standard/57731.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/DIS 22476-8,https://www.iso.org/standard/72220.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/DIS 22476-9,https://www.iso.org/standard/63892.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/NP 22476-9,https://www.iso.org/standard/73643.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-10:2017,https://www.iso.org/standard/69313.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-11:2017,https://www.iso.org/standard/66434.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-12:2009,https://www.iso.org/standard/39086.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22476-15:2016,https://www.iso.org/standard/63412.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/DIS 22477-1,https://www.iso.org/standard/70807.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22477-4,https://www.iso.org/standard/68967.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO/FDIS 22477-5,https://www.iso.org/standard/66839.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 22477-10:2016,https://www.iso.org/standard/64645.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 182,https://www.iso.org/contents/data/committee/05/40/54054/x/catalogue/ -ISO 23469:2005,https://www.iso.org/standard/36873.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 98/SC 3,https://www.iso.org/contents/data/committee/05/09/50958/x/catalogue/ -ISO 559:1991,https://www.iso.org/standard/4648.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 5/SC 1,https://www.iso.org/contents/data/committee/04/55/45594/x/catalogue/ -ISO 1452-1:2009,https://www.iso.org/standard/50361.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-2:2009,https://www.iso.org/standard/50362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-3:2009,https://www.iso.org/standard/50363.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-4:2009,https://www.iso.org/standard/50364.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 1452-5:2009,https://www.iso.org/standard/50365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 3114:1977,https://www.iso.org/standard/8271.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO/TR 4191:2014,https://www.iso.org/standard/44039.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007,https://www.iso.org/standard/40062.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007/Amd 1:2015,https://www.iso.org/standard/60828.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-1:2007/Cor 1:2008,https://www.iso.org/standard/52225.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-1,https://www.iso.org/standard/72183.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-2:2007,https://www.iso.org/standard/40063.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-2:2007/Amd 1:2014,https://www.iso.org/standard/64583.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-2,https://www.iso.org/standard/72184.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-3:2007,https://www.iso.org/standard/40064.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-3,https://www.iso.org/standard/72185.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 4427-5:2007,https://www.iso.org/standard/40065.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD 4427-5,https://www.iso.org/standard/72186.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 8795:2001,https://www.iso.org/standard/31311.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 138/SC 5,https://www.iso.org/contents/data/committee/05/25/52566/x/catalogue/ -ISO 9349:2017,https://www.iso.org/standard/64770.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 10639:2017,https://www.iso.org/standard/65187.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 11298-1,https://www.iso.org/standard/70121.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-1:2010,https://www.iso.org/standard/2399.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-2:2018,https://www.iso.org/standard/67647.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11298-3:2010,https://www.iso.org/standard/41730.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11298-3,https://www.iso.org/standard/70122.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 20325,https://www.iso.org/standard/67691.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 21004:2006,https://www.iso.org/standard/34362.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 21307:2017,https://www.iso.org/standard/63773.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 4,https://www.iso.org/contents/data/committee/05/25/52556/x/catalogue/ -ISO 22391-1:2009,https://www.iso.org/standard/46395.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22391-2:2009,https://www.iso.org/standard/46396.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22391-3:2009,https://www.iso.org/standard/46397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 22391-5:2009,https://www.iso.org/standard/46398.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/CD TS 22391-7,https://www.iso.org/standard/68528.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO/TS 22391-7:2011,https://www.iso.org/standard/55406.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 2,https://www.iso.org/contents/data/committee/05/25/52530/x/catalogue/ -ISO 24512:2007,https://www.iso.org/standard/37248.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 4435:2003,https://www.iso.org/standard/36994.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 7186:2011,https://www.iso.org/standard/50913.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 5/SC 2,https://www.iso.org/contents/data/committee/04/56/45612/x/catalogue/ -ISO 8772:2006,https://www.iso.org/standard/39901.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 8773:2006,https://www.iso.org/standard/39902.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 10467:2004,https://www.iso.org/standard/33530.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 10467:2004/Amd 1:2012,https://www.iso.org/standard/52273.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/FDIS 10467,https://www.iso.org/standard/70198.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 11296-1,https://www.iso.org/standard/70115.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-1:2009,https://www.iso.org/standard/41702.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-2:2018,https://www.iso.org/standard/67420.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-3:2009,https://www.iso.org/standard/41727.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-3:2009/Cor 1:2011,https://www.iso.org/standard/59665.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11296-3,https://www.iso.org/standard/70116.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-4:2018,https://www.iso.org/standard/70117.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11296-7:2011,https://www.iso.org/standard/41729.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11296-7,https://www.iso.org/standard/70118.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-1,https://www.iso.org/standard/70119.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-1:2013,https://www.iso.org/standard/59384.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-2:2018,https://www.iso.org/standard/67418.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-3:2013,https://www.iso.org/standard/59385.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO/DIS 11297-3,https://www.iso.org/standard/70120.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 11297-4:2018,https://www.iso.org/standard/67419.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 8,https://www.iso.org/contents/data/committee/49/15/4915116/x/catalogue/ -ISO 13260:2010,https://www.iso.org/standard/53558.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13260:2010/Amd 1:2017,https://www.iso.org/standard/72182.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13262:2010,https://www.iso.org/standard/53559.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13263:2010,https://www.iso.org/standard/53560.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13264:2010,https://www.iso.org/standard/53561.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13265:2010,https://www.iso.org/standard/53562.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13266:2010,https://www.iso.org/standard/53563.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13267:2010,https://www.iso.org/standard/53564.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13268:2010,https://www.iso.org/standard/53565.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 13272:2011,https://www.iso.org/standard/53583.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 16611:2017,https://www.iso.org/standard/65107.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO/TS 17902:2016,https://www.iso.org/standard/69337.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 18672-1:2009,https://www.iso.org/standard/38801.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 21138-1:2007,https://www.iso.org/standard/40026.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/CD 21138-1,https://www.iso.org/standard/72513.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-2:2007,https://www.iso.org/standard/40027.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 21138-2,https://www.iso.org/standard/69997.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 21138-3:2007,https://www.iso.org/standard/40028.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO/DIS 21138-3,https://www.iso.org/standard/69998.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 138/SC 1,https://www.iso.org/contents/data/committee/05/25/52518/x/catalogue/ -ISO 24511:2007,https://www.iso.org/standard/37247.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 224,https://www.iso.org/contents/data/committee/29/97/299764/x/catalogue/ -ISO 25780:2011,https://www.iso.org/standard/43221.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 138/SC 6,https://www.iso.org/contents/data/committee/05/25/52590/x/catalogue/ -ISO 6446:1994,https://www.iso.org/standard/12802.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 14963:2003,https://www.iso.org/standard/38492.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 18649:2004,https://www.iso.org/standard/33544.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO/FDIS 19203,https://www.iso.org/standard/63988.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 17/SC 17,https://www.iso.org/contents/data/committee/04/64/46450/x/catalogue/ -ISO/DIS 19427,https://www.iso.org/standard/69760.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 105,https://www.iso.org/contents/data/committee/05/11/51196/x/catalogue/ -ISO/CD 20220,https://www.iso.org/standard/67320.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 22762-2:2010,https://www.iso.org/standard/50395.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO/DIS 22762-2,https://www.iso.org/standard/70218.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 10815:2016,https://www.iso.org/standard/70989.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 14837-1:2005,https://www.iso.org/standard/31447.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 8608:2016,https://www.iso.org/standard/71202.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 108/SC 2,https://www.iso.org/contents/data/committee/05/14/51472/x/catalogue/ -ISO 15642:2003,https://www.iso.org/standard/28515.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15643:2002,https://www.iso.org/standard/28516.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15643:2002/Amd 1:2012,https://www.iso.org/standard/57503.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15644:2002,https://www.iso.org/standard/28517.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15645:2002,https://www.iso.org/standard/28518.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15645:2002/Amd 1:2013,https://www.iso.org/standard/57502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO/DIS 15645,https://www.iso.org/standard/72522.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15688:2012,https://www.iso.org/standard/55297.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15689:2003,https://www.iso.org/standard/28520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15878:2008,https://www.iso.org/standard/37641.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 15878:2008/Cor 1:2008,https://www.iso.org/standard/51929.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 16039:2004,https://www.iso.org/standard/29072.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 16039:2004/Amd 1:2013,https://www.iso.org/standard/57504.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 22242:2005,https://www.iso.org/standard/40826.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 22242:2005/Amd 1:2013,https://www.iso.org/standard/57505.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -ISO 13472-1:2002,https://www.iso.org/standard/35387.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13472-2:2010,https://www.iso.org/standard/32304.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13473-1:1997,https://www.iso.org/standard/25637.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 13473-1,https://www.iso.org/standard/45111.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13473-2:2002,https://www.iso.org/standard/25638.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13473-3:2002,https://www.iso.org/standard/29426.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/TS 13473-4:2008,https://www.iso.org/standard/40279.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 13473-5:2009,https://www.iso.org/standard/40280.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 15642:2003,https://www.iso.org/standard/28515.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 195,https://www.iso.org/contents/data/committee/05/45/54540/x/catalogue/ -IWA 14-1:2013,https://www.iso.org/standard/64736.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -IWA 14-2:2013,https://www.iso.org/standard/64737.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO 16508:1999,https://www.iso.org/standard/31003.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,CIE,https://www.iso.org/contents/data/committee/05/52/55238/x/catalogue/ -ISO 2017-2:2007,https://www.iso.org/standard/36647.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 108,https://www.iso.org/contents/data/committee/05/14/51402/x/catalogue/ -ISO 17201-1:2005,https://www.iso.org/standard/30576.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-1:2005/Cor 1:2009,https://www.iso.org/standard/54067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 17201-1,https://www.iso.org/standard/66940.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-2:2006,https://www.iso.org/standard/30577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-3:2010,https://www.iso.org/standard/42151.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 17201-3,https://www.iso.org/standard/69861.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-4:2006,https://www.iso.org/standard/30579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-5:2010,https://www.iso.org/standard/42150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/IEC FDIS Guide 14,https://www.iso.org/standard/64888.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 14:2003,https://www.iso.org/standard/33306.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC Guide 74:2004,https://www.iso.org/standard/36942.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO/IEC WD Guide 74,https://www.iso.org/standard/57995.html,20.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.20,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO 6347:2017,https://www.iso.org/standard/66731.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10377:2013,https://www.iso.org/standard/45967.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/FDIS 20488,https://www.iso.org/standard/68193.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 290,https://www.iso.org/contents/data/committee/51/66/5166853/x/catalogue/ -ISO 25649-2:2017,https://www.iso.org/standard/61401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 3055:1985,https://www.iso.org/standard/8164.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -IWA 11:2012,https://www.iso.org/standard/61975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TMBG,https://www.iso.org/contents/data/committee/05/49/54996/x/catalogue/ -ISO/FDIS 19867-1,https://www.iso.org/standard/66519.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 285,https://www.iso.org/contents/data/committee/48/57/4857971/x/catalogue/ -ISO/DTR 19867-3,https://www.iso.org/standard/73935.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 285,https://www.iso.org/contents/data/committee/48/57/4857971/x/catalogue/ -ISO/CD 19869,https://www.iso.org/standard/66521.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 285,https://www.iso.org/contents/data/committee/48/57/4857971/x/catalogue/ -ISO/PRF TR 21276,https://www.iso.org/standard/70366.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 285,https://www.iso.org/contents/data/committee/48/57/4857971/x/catalogue/ -ISO/CD 21364-1,https://www.iso.org/standard/70769.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 291,https://www.iso.org/contents/data/committee/52/43/5243738/x/catalogue/ -ISO 6804:2016,https://www.iso.org/standard/68034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 2747:1998,https://www.iso.org/standard/1607.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4481:1977,https://www.iso.org/standard/10376.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO/DIS 4531.2,https://www.iso.org/standard/70990.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4531-1:1998,https://www.iso.org/standard/10442.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 4531-2:1998,https://www.iso.org/standard/10443.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 107,https://www.iso.org/contents/data/committee/05/13/51358/x/catalogue/ -ISO 6486-1:1999,https://www.iso.org/standard/27280.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/CD 6486-1,https://www.iso.org/standard/67561.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 6486-2:1999,https://www.iso.org/standard/27281.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/NP 6486-2,https://www.iso.org/standard/68475.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 7086-1:2000,https://www.iso.org/standard/27146.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/CD 7086-1,https://www.iso.org/standard/67562.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 7086-2:2000,https://www.iso.org/standard/27147.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO/NP 7086-2,https://www.iso.org/standard/68476.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 8391-1:1986,https://www.iso.org/standard/15556.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 8391-2:1986,https://www.iso.org/standard/15557.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 166,https://www.iso.org/contents/data/committee/05/36/53606/x/catalogue/ -ISO 8442-1:1997,https://www.iso.org/standard/17759.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-2:1997,https://www.iso.org/standard/23095.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-3:1997,https://www.iso.org/standard/2464.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-4:1997,https://www.iso.org/standard/24277.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-5:2004,https://www.iso.org/standard/30037.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-6:2000,https://www.iso.org/standard/30038.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-7:2000,https://www.iso.org/standard/30039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-8:2000,https://www.iso.org/standard/30419.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 8442-9,https://www.iso.org/standard/66329.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 186,https://www.iso.org/contents/data/committee/05/42/54250/x/catalogue/ -ISO 105-C12:2004,https://www.iso.org/standard/37645.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38/SC 1,https://www.iso.org/contents/data/committee/04/81/48172/x/catalogue/ -ISO 6804:2016,https://www.iso.org/standard/68034.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 45/SC 1,https://www.iso.org/contents/data/committee/04/86/48692/x/catalogue/ -ISO 8229:1991,https://www.iso.org/standard/15331.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 8230-1:2008,https://www.iso.org/standard/38071.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 8230-2:2008,https://www.iso.org/standard/38671.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 8230-3:2008,https://www.iso.org/standard/38672.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 8232:1988,https://www.iso.org/standard/15334.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 9398-1:2003,https://www.iso.org/standard/31157.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 9398-2:2003,https://www.iso.org/standard/31158.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 9398-3:2003,https://www.iso.org/standard/31159.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 9398-4:2003,https://www.iso.org/standard/31160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 10472-1:1997,https://www.iso.org/standard/18535.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 10472-2:1997,https://www.iso.org/standard/18536.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 10472-3:1997,https://www.iso.org/standard/18537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 10472-4:1997,https://www.iso.org/standard/18538.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 10472-5:1997,https://www.iso.org/standard/18539.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO 10472-6:1997,https://www.iso.org/standard/22775.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 72/SC 5,https://www.iso.org/contents/data/committee/05/00/50012/x/catalogue/ -ISO/IEC TR 18781:2015,https://www.iso.org/standard/63343.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/IEC JTC 1/SC 17,https://www.iso.org/contents/data/committee/04/51/45144/x/catalogue/ -ISO 9459-1:1993,https://www.iso.org/standard/17186.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 180/SC 4,https://www.iso.org/contents/data/committee/05/40/54032/x/catalogue/ -ISO 9459-2:1995,https://www.iso.org/standard/17187.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 180/SC 4,https://www.iso.org/contents/data/committee/05/40/54032/x/catalogue/ -ISO 9459-4:2013,https://www.iso.org/standard/41695.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 180/SC 4,https://www.iso.org/contents/data/committee/05/40/54032/x/catalogue/ -ISO 9459-5:2007,https://www.iso.org/standard/39820.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180/SC 4,https://www.iso.org/contents/data/committee/05/40/54032/x/catalogue/ -ISO 9808:1990,https://www.iso.org/standard/17682.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO/TR 10217:1989,https://www.iso.org/standard/18251.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 180,https://www.iso.org/contents/data/committee/05/40/54018/x/catalogue/ -ISO 23953-1:2015,https://www.iso.org/standard/62001.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 7,https://www.iso.org/contents/data/committee/05/03/50386/x/catalogue/ -ISO 23953-2:2015,https://www.iso.org/standard/62002.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 86/SC 7,https://www.iso.org/contents/data/committee/05/03/50386/x/catalogue/ -ISO 4211:1979,https://www.iso.org/standard/10006.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 4211-2:2013,https://www.iso.org/standard/55266.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 4211-3:2013,https://www.iso.org/standard/55267.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 4211-4:1988,https://www.iso.org/standard/10009.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 5970:1979,https://www.iso.org/standard/12165.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7170:2005,https://www.iso.org/standard/38718.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO/DIS 7170,https://www.iso.org/standard/66897.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7171:1988,https://www.iso.org/standard/13770.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO/DIS 7171,https://www.iso.org/standard/66309.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7172:1988,https://www.iso.org/standard/13771.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7173:1989,https://www.iso.org/standard/13772.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO/WD 7173,https://www.iso.org/standard/62195.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.98,,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7174-1:1988,https://www.iso.org/standard/13773.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7174-2:1992,https://www.iso.org/standard/13774.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7175-1:1997,https://www.iso.org/standard/13775.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO/DIS 7175-1,https://www.iso.org/standard/69430.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7175-2:1997,https://www.iso.org/standard/21151.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO/DIS 7175-2,https://www.iso.org/standard/69431.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 7617-1:2001,https://www.iso.org/standard/23794.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7617-2:2003,https://www.iso.org/standard/37012.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 7617-3:1988,https://www.iso.org/standard/14409.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 45/SC 4,https://www.iso.org/contents/data/committee/04/87/48730/x/catalogue/ -ISO 8191-1:1987,https://www.iso.org/standard/15282.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 8191-2:1988,https://www.iso.org/standard/15283.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 9098-1:1994,https://www.iso.org/standard/16692.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 9098-2:1994,https://www.iso.org/standard/16693.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 9221-1:2015,https://www.iso.org/standard/66795.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 9221-2:2015,https://www.iso.org/standard/66798.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 10131-1:1997,https://www.iso.org/standard/18118.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 10131-2:1997,https://www.iso.org/standard/18119.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 16131:2012,https://www.iso.org/standard/41452.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 120/SC 2,https://www.iso.org/contents/data/committee/05/19/51980/x/catalogue/ -ISO/CD 19682,https://www.iso.org/standard/66007.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO/FDIS 19833,https://www.iso.org/standard/66310.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 21015:2007,https://www.iso.org/standard/35608.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 21016:2007,https://www.iso.org/standard/35609.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 22878:2004,https://www.iso.org/standard/36537.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 22879:2016,https://www.iso.org/standard/68236.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 22880:2016,https://www.iso.org/standard/68237.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 110,https://www.iso.org/contents/data/committee/05/15/51588/x/catalogue/ -ISO 24496:2017,https://www.iso.org/standard/66835.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 136,https://www.iso.org/contents/data/committee/05/24/52448/x/catalogue/ -ISO 1763:1986,https://www.iso.org/standard/6394.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/NP 1763,https://www.iso.org/standard/74530.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 1765:1986,https://www.iso.org/standard/6397.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 1766:1999,https://www.iso.org/standard/31552.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 1957:2000,https://www.iso.org/standard/30383.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 2094:1999,https://www.iso.org/standard/30505.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 2424:2007,https://www.iso.org/standard/34166.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 2549:1972,https://www.iso.org/standard/7495.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 2549:1972/Cor 1:1990,https://www.iso.org/standard/7496.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 2550:1972,https://www.iso.org/standard/7497.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 2551:1981,https://www.iso.org/standard/7498.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 3018:1974,https://www.iso.org/standard/8098.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 3415:1986,https://www.iso.org/standard/8730.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 3416:1986,https://www.iso.org/standard/8732.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 4918:2016,https://www.iso.org/standard/64610.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 4918:2016/NP Amd 1,https://www.iso.org/standard/73553.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 4919:2012,https://www.iso.org/standard/46256.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 5086:1977,https://www.iso.org/standard/11108.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 6347:2017,https://www.iso.org/standard/66731.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 6356:2012,https://www.iso.org/standard/46258.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 6925:1982,https://www.iso.org/standard/13442.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 8543:1998,https://www.iso.org/standard/28342.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/NP 8543,https://www.iso.org/standard/74529.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 9239-1:2010,https://www.iso.org/standard/45781.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 9239-2:2002,https://www.iso.org/standard/27181.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 92/SC 1,https://www.iso.org/contents/data/committee/05/05/50504/x/catalogue/ -ISO 9405:2015,https://www.iso.org/standard/58044.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10361:2015,https://www.iso.org/standard/61692.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/CD 10361,https://www.iso.org/standard/71191.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10575:2012,https://www.iso.org/standard/46010.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10577:2012,https://www.iso.org/standard/46011.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10580:2010,https://www.iso.org/standard/46012.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10581:2011,https://www.iso.org/standard/46013.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/DIS 10581,https://www.iso.org/standard/73552.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10582:2017,https://www.iso.org/standard/64608.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10595:2010,https://www.iso.org/standard/46015.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10833:2017,https://www.iso.org/standard/61664.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10834:1992,https://www.iso.org/standard/18869.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10874:2009,https://www.iso.org/standard/46255.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10874:2009,https://www.iso.org/standard/46255.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 10965:2011,https://www.iso.org/standard/46257.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11377:1997,https://www.iso.org/standard/19321.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11378-1:2000,https://www.iso.org/standard/32365.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11378-2:2001,https://www.iso.org/standard/25476.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11378-2:2001/Amd 1:2017,https://www.iso.org/standard/61663.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11379:2009,https://www.iso.org/standard/44317.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11638:2012,https://www.iso.org/standard/50643.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/DIS 11856,https://www.iso.org/standard/67632.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.98,,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11857:1999,https://www.iso.org/standard/20258.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11858:1999,https://www.iso.org/standard/20259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11859:1999,https://www.iso.org/standard/20260.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11860:1999,https://www.iso.org/standard/20261.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 11861:1999,https://www.iso.org/standard/20262.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 12951:2015,https://www.iso.org/standard/61665.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/NP 12951,https://www.iso.org/standard/73549.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 13746:2000,https://www.iso.org/standard/22810.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 13750:2000,https://www.iso.org/standard/22816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 14486:2012,https://www.iso.org/standard/54853.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 16581:2014,https://www.iso.org/standard/57204.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 16905:2015,https://www.iso.org/standard/57908.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 16906:2015,https://www.iso.org/standard/57909.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 17504:1999,https://www.iso.org/standard/26508.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/PAS 18167:2014,https://www.iso.org/standard/61661.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 18168:2015,https://www.iso.org/standard/61662.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 19322,https://www.iso.org/standard/64609.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 20251:2016,https://www.iso.org/standard/67422.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 20253:2016,https://www.iso.org/standard/67423.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 20326:2016,https://www.iso.org/standard/67693.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 23996:2007,https://www.iso.org/standard/41978.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 23997:2007,https://www.iso.org/standard/41979.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 23999:2008,https://www.iso.org/standard/41981.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/DIS 23999,https://www.iso.org/standard/68826.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24011:2009,https://www.iso.org/standard/41982.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24334:2014,https://www.iso.org/standard/65426.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24335:2006,https://www.iso.org/standard/37130.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24336:2005,https://www.iso.org/standard/37131.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24337:2006,https://www.iso.org/standard/37132.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/NP 24337,https://www.iso.org/standard/74517.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24338:2014,https://www.iso.org/standard/61320.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24339:2006,https://www.iso.org/standard/37134.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24340:2006,https://www.iso.org/standard/37135.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24341:2006,https://www.iso.org/standard/37136.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24342:2007,https://www.iso.org/standard/45774.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24342:2007/Amd 1:2012,https://www.iso.org/standard/61667.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/DIS 24342,https://www.iso.org/standard/68827.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24343-1:2007,https://www.iso.org/standard/41359.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24343-2:2011,https://www.iso.org/standard/51057.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/DIS 24343-2,https://www.iso.org/standard/75037.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24343-3:2011,https://www.iso.org/standard/51058.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO/DIS 24343-3,https://www.iso.org/standard/75038.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24344:2008,https://www.iso.org/standard/43343.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24345:2006,https://www.iso.org/standard/41367.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 24346:2006,https://www.iso.org/standard/41366.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 25620:2008,https://www.iso.org/standard/43039.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 26985:2008,https://www.iso.org/standard/43956.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 26986:2010,https://www.iso.org/standard/43957.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 26987:2008,https://www.iso.org/standard/43958.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 219,https://www.iso.org/contents/data/committee/05/49/54988/x/catalogue/ -ISO 12952-1:2010,https://www.iso.org/standard/46259.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 12952-2:2010,https://www.iso.org/standard/55986.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 38,https://www.iso.org/contents/data/committee/04/81/48148/x/catalogue/ -ISO 10873:2010,https://www.iso.org/standard/46254.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO/CD 10873,https://www.iso.org/standard/72380.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 11609:2017,https://www.iso.org/standard/70956.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 16408:2015,https://www.iso.org/standard/65257.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 16409:2016,https://www.iso.org/standard/65258.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 17730:2014,https://www.iso.org/standard/60325.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO/CD 17730,https://www.iso.org/standard/72166.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 19448:2018,https://www.iso.org/standard/64927.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO/TS 19736:2017,https://www.iso.org/standard/66195.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 2,https://www.iso.org/contents/data/committee/05/12/51254/x/catalogue/ -ISO 20126:2012,https://www.iso.org/standard/55744.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 20126:2012/Amd 1:2018,https://www.iso.org/standard/65256.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO/CD 20126,https://www.iso.org/standard/74662.html,30,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.00,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 20127:2005,https://www.iso.org/standard/35289.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO/AWI 20127,https://www.iso.org/standard/72351.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 22254:2005,https://www.iso.org/standard/36171.html,90.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 28158:2010,https://www.iso.org/standard/44521.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO/DIS 28158,https://www.iso.org/standard/69904.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 28399:2011,https://www.iso.org/standard/44686.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO/AWI 28399,https://www.iso.org/standard/70368.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 28888:2013,https://www.iso.org/standard/57015.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 106/SC 7,https://www.iso.org/contents/data/committee/05/13/51338/x/catalogue/ -ISO 9177-1:2016,https://www.iso.org/standard/69128.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9177-2:1989,https://www.iso.org/standard/16782.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9177-3:1994,https://www.iso.org/standard/20426.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 9994:2005,https://www.iso.org/standard/42889.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 9994:2005/Amd 1:2008,https://www.iso.org/standard/45096.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61,https://www.iso.org/contents/data/committee/04/92/49256/x/catalogue/ -ISO/DIS 9994,https://www.iso.org/standard/64742.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 11540:2014,https://www.iso.org/standard/56728.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 12756:2016,https://www.iso.org/standard/69121.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 12756,https://www.iso.org/standard/73280.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 12757-1:2017,https://www.iso.org/standard/73283.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 14145-1:2017,https://www.iso.org/standard/73282.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 20318-1,https://www.iso.org/standard/67662.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/DIS 20318-2,https://www.iso.org/standard/67689.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO 22702:2003,https://www.iso.org/standard/35099.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 22702:2003/Amd 1:2008,https://www.iso.org/standard/45097.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 61,https://www.iso.org/contents/data/committee/04/92/49256/x/catalogue/ -ISO/DIS 22702,https://www.iso.org/standard/64743.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 61/SC 4,https://www.iso.org/contents/data/committee/04/93/49306/x/catalogue/ -ISO 27668-1:2017,https://www.iso.org/standard/73281.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/IEC Guide 50:2014,https://www.iso.org/standard/63937.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/COPOLCO,https://www.iso.org/contents/data/committee/05/50/55000/x/catalogue/ -ISO 8098:2014,https://www.iso.org/standard/54815.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 149/SC 1,https://www.iso.org/contents/data/committee/05/30/53034/x/catalogue/ -ISO 11540:2014,https://www.iso.org/standard/56728.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 10,https://www.iso.org/contents/data/committee/04/59/45986/x/catalogue/ -ISO/CD 21110,https://www.iso.org/standard/69922.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 46/SC 10,https://www.iso.org/contents/data/committee/04/88/48842/x/catalogue/ -ISO 17121:2000,https://www.iso.org/standard/29480.html,95.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#95.20,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 17121:2000/Cor 1:2001,https://www.iso.org/standard/35414.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 36,https://www.iso.org/contents/data/committee/04/80/48090/x/catalogue/ -ISO 5912:2011,https://www.iso.org/standard/42074.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO/NP 5912,https://www.iso.org/standard/72895.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 7152:1997,https://www.iso.org/standard/13747.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 7152:1997/Amd 1:2006,https://www.iso.org/standard/38589.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO/NP 7152,https://www.iso.org/standard/72737.html,10.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#10.99,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 8936:2017,https://www.iso.org/standard/63114.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 23537-1:2016,https://www.iso.org/standard/67105.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 23537-1:2016/Amd 1:2018,https://www.iso.org/standard/73657.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 23537-2:2016,https://www.iso.org/standard/67112.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 17842-1:2015,https://www.iso.org/standard/60814.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 254,https://www.iso.org/contents/data/committee/61/70/617082/x/catalogue/ -ISO 17842-2:2015,https://www.iso.org/standard/60765.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 254,https://www.iso.org/contents/data/committee/61/70/617082/x/catalogue/ -ISO 17842-3:2015,https://www.iso.org/standard/65649.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 254,https://www.iso.org/contents/data/committee/61/70/617082/x/catalogue/ -ISO/TS 17929:2014,https://www.iso.org/standard/61027.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 254,https://www.iso.org/contents/data/committee/61/70/617082/x/catalogue/ -ISO 8124-1,https://www.iso.org/standard/74477.html,60,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.00,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-1:2014,https://www.iso.org/standard/66626.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-1:2014/CD Amd 5,https://www.iso.org/standard/72534.html,30.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.20,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-1:2014/CD Amd 6,https://www.iso.org/standard/72535.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-1:2014/FDAmd 1,https://www.iso.org/standard/66865.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-1:2014/FDAmd 2,https://www.iso.org/standard/66812.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-1:2014/FDAmd 3,https://www.iso.org/standard/68095.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-1:2014/FDAmd 4,https://www.iso.org/standard/68096.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.98,,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-2:2014,https://www.iso.org/standard/59695.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-3:2010,https://www.iso.org/standard/43471.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-3:2010/Amd 1:2014,https://www.iso.org/standard/64816.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-3:2010/DAmd 2,https://www.iso.org/standard/74083.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO/AWI 8124-3,https://www.iso.org/standard/72600.html,20,https://www.iso.org/home/developing-standards/resources/stage-codes.html#20.00,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-4:2014,https://www.iso.org/standard/66627.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-4:2014/Amd 1:2017,https://www.iso.org/standard/72537.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-4:2014/DAmd 2,https://www.iso.org/standard/74255.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-5:2015,https://www.iso.org/standard/53544.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-6:2014,https://www.iso.org/standard/56844.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO/DIS 8124-6,https://www.iso.org/standard/70008.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO 8124-7:2015,https://www.iso.org/standard/62336.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO/TR 8124-8:2016,https://www.iso.org/standard/68561.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO/PRF TR 8124-9,https://www.iso.org/standard/72509.html,50,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.00,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO/DIS 8124-10,https://www.iso.org/standard/72601.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO/DIS 8124-11,https://www.iso.org/standard/73502.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 181,https://www.iso.org/contents/data/committee/05/40/54044/x/catalogue/ -ISO/TR 20183:2015,https://www.iso.org/standard/67212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20187:2016,https://www.iso.org/standard/67220.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO/DIS 20739,https://www.iso.org/standard/68951.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-1:2017,https://www.iso.org/standard/72209.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-2:2017,https://www.iso.org/standard/72210.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-3:2017,https://www.iso.org/standard/72211.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-4:2017,https://www.iso.org/standard/72212.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-5:2017,https://www.iso.org/standard/72213.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-6:2017,https://www.iso.org/standard/72214.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 21924-7:2017,https://www.iso.org/standard/72215.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ -ISO 17201-1:2005,https://www.iso.org/standard/30576.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-1:2005/Cor 1:2009,https://www.iso.org/standard/54067.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 17201-1,https://www.iso.org/standard/66940.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-2:2006,https://www.iso.org/standard/30577.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-3:2010,https://www.iso.org/standard/42151.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO/DIS 17201-3,https://www.iso.org/standard/69861.html,40.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.99,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-4:2006,https://www.iso.org/standard/30579.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 17201-5:2010,https://www.iso.org/standard/42150.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 43/SC 1,https://www.iso.org/contents/data/committee/04/84/48474/x/catalogue/ -ISO 19202-1:2017,https://www.iso.org/standard/63970.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 19202-2:2017,https://www.iso.org/standard/63971.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20380:2017,https://www.iso.org/standard/67857.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 5355:2005,https://www.iso.org/standard/38623.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 5355:2005/Cor 1:2007,https://www.iso.org/standard/46348.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO/DIS 5355,https://www.iso.org/standard/74870.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 5902:2013,https://www.iso.org/standard/60844.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6003:2017,https://www.iso.org/standard/72499.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6004:1991,https://www.iso.org/standard/12202.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6005:1991,https://www.iso.org/standard/12204.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6265:2013,https://www.iso.org/standard/60845.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6266:2013,https://www.iso.org/standard/60846.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6267:1980,https://www.iso.org/standard/12550.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6289:2003,https://www.iso.org/standard/36160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 6289:2003/Cor 1:2005,https://www.iso.org/standard/42160.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7138:2017,https://www.iso.org/standard/72502.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7139:2017,https://www.iso.org/standard/72500.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7140:1985,https://www.iso.org/standard/13731.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7331:2011,https://www.iso.org/standard/55819.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7794:2011,https://www.iso.org/standard/55816.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7795:2011,https://www.iso.org/standard/55817.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7796:1985,https://www.iso.org/standard/14690.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7797:1985,https://www.iso.org/standard/14691.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 7798:2017,https://www.iso.org/standard/72501.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 8061:2015,https://www.iso.org/standard/68518.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 8364:2017,https://www.iso.org/standard/71934.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 8614:1997,https://www.iso.org/standard/15944.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 8783:2015,https://www.iso.org/standard/65972.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 9119:1990,https://www.iso.org/standard/16714.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 9462:2014,https://www.iso.org/standard/56106.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 9465:2012,https://www.iso.org/standard/55829.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 9523:2015,https://www.iso.org/standard/63099.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO/DIS 9523,https://www.iso.org/standard/74869.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 9838:2015,https://www.iso.org/standard/67738.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO/DIS 9838,https://www.iso.org/standard/74868.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 10045:2017,https://www.iso.org/standard/71933.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 10228:2011,https://www.iso.org/standard/55818.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 10256-1:2016,https://www.iso.org/standard/52303.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10256-2:2016,https://www.iso.org/standard/61495.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10256-3:2016,https://www.iso.org/standard/61496.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10256-4:2016,https://www.iso.org/standard/61497.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10256-5:2017,https://www.iso.org/standard/65010.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 5,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO/CD 10256-6,https://www.iso.org/standard/65012.html,,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.98,,https://www.iso.org/contents/data/committee/05/02/50244/x/catalogue/ -ISO 10958-1:1998,https://www.iso.org/standard/18932.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 10958-2:2015,https://www.iso.org/standard/66926.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 11087:2015,https://www.iso.org/standard/65973.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 11088:2015,https://www.iso.org/standard/68520.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO/FDIS 11088,https://www.iso.org/standard/71932.html,50.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#50.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 11110:2015,https://www.iso.org/standard/63493.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 11497:1998,https://www.iso.org/standard/19448.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 11634:1996,https://www.iso.org/standard/19565.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 11634:1996/Cor 1:2007,https://www.iso.org/standard/45563.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 13992:2014,https://www.iso.org/standard/63445.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 13993:2001,https://www.iso.org/standard/23585.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO/DIS 13993,https://www.iso.org/standard/71249.html,40.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 14359:1997,https://www.iso.org/standard/24129.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 14573:2002,https://www.iso.org/standard/24823.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 14790:2005,https://www.iso.org/standard/38628.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 14790:2005/Cor 1:2007,https://www.iso.org/standard/45564.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 15344:2005,https://www.iso.org/standard/37520.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO/CD 18527-1,https://www.iso.org/standard/62788.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 20320,https://www.iso.org/standard/67665.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 22264:2006,https://www.iso.org/standard/40837.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83/SC 4,https://www.iso.org/contents/data/committee/05/02/50222/x/catalogue/ -ISO 378:1980,https://www.iso.org/standard/4359.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 379:1980,https://www.iso.org/standard/4360.html,90.2,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.20,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO/CD 18527-2,https://www.iso.org/standard/62789.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO 20957-1:2013,https://www.iso.org/standard/56102.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-2:2005,https://www.iso.org/standard/39904.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-4:2016,https://www.iso.org/standard/66870.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-5:2016,https://www.iso.org/standard/66438.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-6:2005,https://www.iso.org/standard/39907.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-7:2005,https://www.iso.org/standard/39908.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-8:2017,https://www.iso.org/standard/70975.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-9:2016,https://www.iso.org/standard/65442.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-9:2016/DAmd 1,https://www.iso.org/standard/75135.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 20957-10:2017,https://www.iso.org/standard/56549.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 6425:1996,https://www.iso.org/standard/12774.html,90.92,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.92,ISO/TC 114/SC 3,https://www.iso.org/contents/data/committee/05/17/51742/x/catalogue/ -ISO/DIS 6425,https://www.iso.org/standard/66517.html,40,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.00,ISO/TC 114/SC 3,https://www.iso.org/contents/data/committee/05/17/51742/x/catalogue/ -ISO 11416:1995,https://www.iso.org/standard/19356.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 14460:1999,https://www.iso.org/standard/23530.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO 14460:1999/Amd 1:2002,https://www.iso.org/standard/32322.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 94/SC 13,https://www.iso.org/contents/data/committee/05/06/50626/x/catalogue/ -ISO/CD 18527-2,https://www.iso.org/standard/62789.html,30.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.60,ISO/TC 94/SC 6,https://www.iso.org/contents/data/committee/05/06/50612/x/catalogue/ -ISO/CD 21853,https://www.iso.org/standard/71983.html,30.99,https://www.iso.org/home/developing-standards/resources/stage-codes.html#30.99,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 25649-1:2017,https://www.iso.org/standard/61400.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 25649-2:2017,https://www.iso.org/standard/61401.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 25649-3:2017,https://www.iso.org/standard/61402.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 25649-4:2017,https://www.iso.org/standard/61403.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 25649-5:2017,https://www.iso.org/standard/61404.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 25649-6:2017,https://www.iso.org/standard/61405.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 25649-7:2017,https://www.iso.org/standard/61406.html,60.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#60.60,ISO/TC 83,https://www.iso.org/contents/data/committee/05/01/50190/x/catalogue/ -ISO 8853:1989,https://www.iso.org/standard/16330.html,90.93,https://www.iso.org/home/developing-standards/resources/stage-codes.html#90.93,ISO/TC 22/SC 36,https://www.iso.org/contents/data/committee/53/83/5383958/x/catalogue/ -ISO/DIS 20740,https://www.iso.org/standard/68952.html,40.6,https://www.iso.org/home/developing-standards/resources/stage-codes.html#40.60,ISO/TC 83/SC 6,https://www.iso.org/contents/data/committee/05/02/50250/x/catalogue/ \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index bd76bc2..83cc2a5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -106,9 +106,7 @@ services: # - "jointops" networks: - jointops: - - null + jointops: null volumes: # fastapi-data: fastapi-log: null diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 48e341a..0000000 --- a/package-lock.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "lockfileVersion": 1 -}